diff options
author | Dmitrii Rogozin <dmitrii@vaadin.com> | 2014-05-21 12:53:25 +0300 |
---|---|---|
committer | Dmitrii Rogozin <dmitrii@vaadin.com> | 2014-05-22 09:58:08 +0000 |
commit | 6133aa7f7fb63dfbf46fd14ef0b9bf57cd671b9b (patch) | |
tree | 8236bb1c94b35de62b1bf12f005acaf98a69da50 /uitest | |
parent | 95e563a69b540bae2616466ae25646eba50d4afe (diff) | |
download | vaadin-framework-6133aa7f7fb63dfbf46fd14ef0b9bf57cd671b9b.tar.gz vaadin-framework-6133aa7f7fb63dfbf46fd14ef0b9bf57cd671b9b.zip |
Fix issue when typing fast in combobox edit box plus then press TAB (#12325)
Change-Id: I35375d2b39fbd666d848f6ffa62aa0ce1c0d4fad
Diffstat (limited to 'uitest')
3 files changed, 103 insertions, 18 deletions
diff --git a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxSlow.java b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxSlow.java index 0336ff423b..13066854bf 100644 --- a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxSlow.java +++ b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxSlow.java @@ -1,12 +1,9 @@ package com.vaadin.tests.components.combobox; -import java.util.Map; - import com.vaadin.data.Property.ValueChangeEvent; import com.vaadin.data.Property.ValueChangeListener; import com.vaadin.tests.components.TestBase; import com.vaadin.tests.util.Log; -import com.vaadin.ui.ComboBox; public class ComboBoxSlow extends TestBase { @@ -22,19 +19,6 @@ public class ComboBoxSlow extends TestBase { return "The ComboBox artificially introduces a server delay to more easily spot problems"; } - public class SlowComboBox extends ComboBox { - @Override - public void changeVariables(Object source, Map<String, Object> variables) { - try { - Thread.sleep(1000); - } catch (InterruptedException e) { - // TODO Auto-generated catch block - e.printStackTrace(); - } - super.changeVariables(source, variables); - } - } - @Override protected void setup() { addComponent(log); @@ -44,11 +28,9 @@ public class ComboBoxSlow extends TestBase { cb.addItem("Item " + i); } cb.addListener(new ValueChangeListener() { - @Override public void valueChange(ValueChangeEvent event) { log.log("Value changed to " + cb.getValue()); - } }); addComponent(cb); diff --git a/uitest/src/com/vaadin/tests/components/combobox/ComboBoxTabWhenFilter.java b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxTabWhenFilter.java new file mode 100644 index 0000000000..c37b29794c --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/combobox/ComboBoxTabWhenFilter.java @@ -0,0 +1,68 @@ +/* + * 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.data.Container; +import com.vaadin.data.util.IndexedContainer; +import com.vaadin.server.VaadinRequest; +import com.vaadin.shared.ui.combobox.FilteringMode; +import com.vaadin.tests.components.AbstractTestUI; +import com.vaadin.ui.TextField; +import com.vaadin.ui.VerticalLayout; + +/** + * A test case for typing in combo box input field fast plus then press TAB. + * When type fast and then press tab didn't add new item. Uses SlowComboBox, + * which has a delay in setVariables method + */ +public class ComboBoxTabWhenFilter extends AbstractTestUI { + public static final String DESCRIPTION = "Adding new item by typing fast plus then press TAB, very quickly, should add new item and change focus."; + + @Override + protected void setup(VaadinRequest request) { + final VerticalLayout layout = new VerticalLayout(); + layout.setMargin(true); + setContent(layout); + SlowComboBox comboBox = new SlowComboBox(); + comboBox.setNullSelectionAllowed(false); + comboBox.setImmediate(true); + Container container = createContainer(); + comboBox.setContainerDataSource(container); + comboBox.setNewItemsAllowed(true); + comboBox.setFilteringMode(FilteringMode.CONTAINS); + layout.addComponent(comboBox); + layout.addComponent(new TextField()); + } + + private IndexedContainer createContainer() { + IndexedContainer container = new IndexedContainer(); + for (int i = 0; i < 100000; ++i) { + container.addItem("Item " + i); + } + return container; + } + + @Override + protected String getTestDescription() { + return DESCRIPTION; + } + + @Override + protected Integer getTicketNumber() { + return 12325; + } + +} diff --git a/uitest/src/com/vaadin/tests/components/combobox/SlowComboBox.java b/uitest/src/com/vaadin/tests/components/combobox/SlowComboBox.java new file mode 100644 index 0000000000..c07d2d2d7c --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/combobox/SlowComboBox.java @@ -0,0 +1,35 @@ +/* + * 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 java.util.Map; + +import com.vaadin.ui.ComboBox; + +/** + * A combo box component with delay. Can be useful to use while testing UI. + */ +public class SlowComboBox extends ComboBox { + @Override + public void changeVariables(Object source, Map<String, Object> variables) { + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + super.changeVariables(source, variables); + } +} |