summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-29 22:11:23 +0300
committerVaadin Code Review <review@vaadin.com>2016-08-30 13:02:31 +0000
commit28ed04e827669cc4dd329331dac9699bd93f70bc (patch)
tree4be1c6aaa0d6c975a0ce2858c2e24482811b8c51 /uitest
parent8b4f0ed8a894b04902a5d4258119dcdc8e76d1e0 (diff)
downloadvaadin-framework-28ed04e827669cc4dd329331dac9699bd93f70bc.tar.gz
vaadin-framework-28ed04e827669cc4dd329331dac9699bd93f70bc.zip
Fix animation end listeners so they are always removed (#17903)
Fixes ComboBox suggestion popup so that it will not automatically close when clicking the popup button, if the user happened to double click on the button earlier. Change-Id: I60936f82133ca89c2aef0dccff68092a11deff1c
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java b/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java
new file mode 100644
index 0000000000..f8886e3af7
--- /dev/null
+++ b/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxValoDoubleClick.java
@@ -0,0 +1,48 @@
+/*
+ * 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.combobox;
+
+import com.vaadin.annotations.Theme;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.ui.ComboBox;
+
+@Theme("valo")
+public class ComboBoxValoDoubleClick extends AbstractTestUI {
+
+ // Quite impossible to autotest reliably as there must be a click to open
+ // the popup and another click during the opening animation to reproduce the
+ // bug. Manually a double click is just about the right timing.
+ @Override
+ protected void setup(VaadinRequest request) {
+ ComboBox cb = new ComboBox("Double-click Me");
+ for (int i = 0; i < 100; i++) {
+ cb.addItem("Item-" + i);
+ }
+ addComponent(cb);
+ }
+
+ @Override
+ public String getTestDescription() {
+ return "ComboBox should remain usable even after double-clicking (affects only Valo theme with $v-overlay-animate-in).";
+ }
+
+ @Override
+ protected Integer getTicketNumber() {
+ return 17903;
+ }
+
+}