diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/components/datefield/DateFieldWhenChangingValueAndEnablingParentTest.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/datefield/DateFieldWhenChangingValueAndEnablingParentTest.java | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/datefield/DateFieldWhenChangingValueAndEnablingParentTest.java b/uitest/src/com/vaadin/tests/components/datefield/DateFieldWhenChangingValueAndEnablingParentTest.java new file mode 100644 index 0000000000..23f6d6f5a6 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/datefield/DateFieldWhenChangingValueAndEnablingParentTest.java @@ -0,0 +1,98 @@ +/* + * Copyright 2000-2014 Vaadin Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy of + * the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + */ +package com.vaadin.tests.components.datefield; + +import org.junit.Assert; +import org.junit.Test; +import org.openqa.selenium.By; + +import com.vaadin.testbench.elements.CheckBoxElement; +import com.vaadin.testbench.elements.DateFieldElement; +import com.vaadin.testbench.elements.PopupDateFieldElement; +import com.vaadin.tests.tb3.SingleBrowserTest; + +public class DateFieldWhenChangingValueAndEnablingParentTest extends + SingleBrowserTest { + + @Test + public void ensureCorrectStateAfterEnabling() { + openTestURL(); + $(CheckBoxElement.class).first().click(); + + assertState($(DateFieldElement.class).id("DATEFIELD_ENABLED"), true, + true); + assertState($(DateFieldElement.class).id("DATEFIELD_DISABLED"), false, + false); + + assertState( + $(PopupDateFieldElement.class).id("DATEFIELD_ENABLED_ENABLED"), + true, true); + assertState( + $(PopupDateFieldElement.class).id("DATEFIELD_ENABLED_DISABLED"), + true, false); + + // disabling widget should always disable input + assertState( + $(PopupDateFieldElement.class).id("DATEFIELD_DISABLED_ENABLED"), + false, false); + assertState( + $(PopupDateFieldElement.class) + .id("DATEFIELD_DISABLED_DISABLED"), false, false); + + } + + /** + * @since + * @param id + * @param widgetEnabled + * @param textInputEnabled + */ + private void assertState(DateFieldElement id, boolean widgetEnabled, + boolean textInputEnabled) { + assertDateFieldEnabled(id, widgetEnabled); + assertTextInputEnabled(id, textInputEnabled); + + } + + private void assertDateFieldEnabled(DateFieldElement id, + boolean assertEnabled) { + boolean hasClass = hasCssClass(id, "v-disabled"); + boolean fieldEnabled = !hasClass; + if (assertEnabled) { + Assert.assertTrue("Field " + id.getAttribute("id") + + " should be enabled", fieldEnabled); + } else { + Assert.assertFalse("Field " + id.getAttribute("id") + + " should be disabled", fieldEnabled); + } + + } + + private void assertTextInputEnabled(DateFieldElement id, boolean enabled) { + String disabledAttr = id.findElement(By.xpath("./input")).getAttribute( + "disabled"); + boolean textinputEnabled = (disabledAttr == null); + + if (enabled) { + Assert.assertTrue("Field " + id.getAttribute("id") + + " text field should be enabled", textinputEnabled); + } else { + Assert.assertFalse("Field " + id.getAttribute("id") + + " text field should be disabled", textinputEnabled); + } + + } +} |