]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed disabled and read-only modes of InlineDateField (#10262)
authorTeemu Pöntelin <teemu@vaadin.com>
Mon, 5 May 2014 20:58:00 +0000 (23:58 +0300)
committerSauli Tähkäpää <sauli@vaadin.com>
Thu, 22 May 2014 08:29:59 +0000 (11:29 +0300)
Change-Id: If95d50954a4122b1039174ffcacd7874f7f1f71e

client/src/com/vaadin/client/ui/VCalendarPanel.java
uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateField.java [new file with mode: 0644]
uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateFieldTest.java [new file with mode: 0644]

index 5bdb3388e97e3a156006d6cb8791461481febf34..d8c96917d8d8746961322cc2f3f8a9509a2c43f2 100644 (file)
@@ -139,6 +139,10 @@ public class VCalendarPanel extends FocusableFlexTable implements
          */
         @Override
         public void onClick(ClickEvent event) {
+            if (!isEnabled() || isReadonly()) {
+                return;
+            }
+
             Date newDate = ((Day) event.getSource()).getDate();
             if (!isDateInsideRange(newDate, Resolution.DAY)) {
                 return;
@@ -175,10 +179,6 @@ public class VCalendarPanel extends FocusableFlexTable implements
 
     private Date value;
 
-    private boolean enabled = true;
-
-    private boolean readonly = false;
-
     private DateTimeService dateTimeService;
 
     private boolean showISOWeekNumbers;
@@ -350,11 +350,11 @@ public class VCalendarPanel extends FocusableFlexTable implements
     }
 
     private boolean isReadonly() {
-        return readonly;
+        return parent.isReadonly();
     }
 
     private boolean isEnabled() {
-        return enabled;
+        return parent.isEnabled();
     }
 
     @Override
diff --git a/uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateField.java b/uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateField.java
new file mode 100644 (file)
index 0000000..affc5d3
--- /dev/null
@@ -0,0 +1,58 @@
+/*
+ * 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 java.util.Calendar;
+import java.util.Date;
+
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.ui.DateField;
+import com.vaadin.ui.InlineDateField;
+
+public class DisabledInlineDateField extends AbstractTestUI {
+
+    private static final Date testDate;
+    static {
+        Calendar cal = Calendar.getInstance();
+        cal.set(2014, 5, 5);
+        testDate = cal.getTime();
+    }
+
+    @Override
+    protected void setup(VaadinRequest request) {
+        DateField df = new InlineDateField("Disabled");
+        df.setValue(testDate);
+        df.setEnabled(false);
+        addComponent(df);
+
+        df = new InlineDateField("Read-only");
+        df.setValue(testDate);
+        df.setReadOnly(true);
+        addComponent(df);
+    }
+
+    @Override
+    protected String getTestDescription() {
+        return "Testing disabled and read-only modes of InlineDateField.";
+    }
+
+    @Override
+    protected Integer getTicketNumber() {
+        return 10262;
+    }
+
+}
diff --git a/uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateFieldTest.java b/uitest/src/com/vaadin/tests/components/datefield/DisabledInlineDateFieldTest.java
new file mode 100644 (file)
index 0000000..2c50030
--- /dev/null
@@ -0,0 +1,79 @@
+/*
+ * 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 static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+import org.junit.Test;
+import org.openqa.selenium.By;
+import org.openqa.selenium.WebElement;
+
+import com.vaadin.tests.tb3.MultiBrowserTest;
+
+public class DisabledInlineDateFieldTest extends MultiBrowserTest {
+
+    @Test
+    public void testDisabled() {
+        openTestURL();
+        testNextMonthControls(".v-disabled");
+        testDaySelection(".v-disabled");
+    }
+
+    @Test
+    public void testReadOnly() {
+        openTestURL();
+        testNextMonthControls(".v-readonly");
+        testDaySelection(".v-readonly");
+    }
+
+    private void testNextMonthControls(String cssClass) {
+        // Get the currently selected month.
+        String expectedMonth = getSelectedMonth(cssClass);
+
+        // Attempt to click the next month button.
+        driver.findElement(By.cssSelector(cssClass + " .v-button-nextmonth"))
+                .click();
+
+        // Assert that we did not navigate to next month.
+        String actualMonth = getSelectedMonth(cssClass);
+        assertEquals(expectedMonth, actualMonth);
+    }
+
+    private void testDaySelection(String cssClass) {
+        // We know that the first day element is not selected, because of the
+        // fixed date in the test.
+        WebElement nonSelectedDay = driver.findElement(By.cssSelector(cssClass
+                + " .v-inline-datefield-calendarpanel-day"));
+
+        // Assert it is not selected before click.
+        assertFalse(nonSelectedDay.getAttribute("class").contains("selected"));
+
+        // Click on the non-selected day.
+        nonSelectedDay.click();
+
+        // Assert that clicking did not select the day.
+        assertFalse(nonSelectedDay.getAttribute("class").contains("selected"));
+    }
+
+    private String getSelectedMonth(String selectorPrefix) {
+        return driver.findElement(
+                By.cssSelector(selectorPrefix
+                        + " .v-inline-datefield-calendarpanel-month"))
+                .getText();
+    }
+
+}