summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-02-04 13:11:36 +0200
committerVaadin Code Review <review@vaadin.com>2016-02-13 17:02:48 +0000
commit0225d0949b566dd6913aef44840cd9ae6c399c28 (patch)
treedd3d80d0097b0eee95eb2bd5d91c722ae28552cd /uitest
parentd004aa1f8bbcc30ab58663b29c4945116256bb53 (diff)
downloadvaadin-framework-0225d0949b566dd6913aef44840cd9ae6c399c28.tar.gz
vaadin-framework-0225d0949b566dd6913aef44840cd9ae6c399c28.zip
Fix AbstractRemoteDataSource cache clean up on remove (#19482)
Change-Id: Ib9fc54ef018afe7f571204aba41182333b77c47f
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridDataSourceReset.java66
-rw-r--r--uitest/src/com/vaadin/tests/components/grid/GridDataSourceResetTest.java50
2 files changed, 116 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridDataSourceReset.java b/uitest/src/com/vaadin/tests/components/grid/GridDataSourceReset.java
new file mode 100644
index 0000000000..b49cf32b62
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/grid/GridDataSourceReset.java
@@ -0,0 +1,66 @@
+/*
+ * 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.grid;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Random;
+
+import com.vaadin.data.util.BeanItemContainer;
+import com.vaadin.server.VaadinRequest;
+import com.vaadin.tests.components.AbstractTestUI;
+import com.vaadin.tests.fieldgroup.ComplexPerson;
+import com.vaadin.ui.Button;
+import com.vaadin.ui.Button.ClickEvent;
+import com.vaadin.ui.Button.ClickListener;
+import com.vaadin.ui.Grid;
+
+public class GridDataSourceReset extends AbstractTestUI {
+
+ BeanItemContainer<ComplexPerson> container;
+ List<ComplexPerson> persons;
+ Grid grid;
+
+ @Override
+ protected void setup(VaadinRequest request) {
+ persons = createPersons(10, new Random(1));
+ container = new BeanItemContainer<ComplexPerson>(ComplexPerson.class,
+ persons);
+
+ grid = new Grid(container);
+ grid.select(container.firstItemId());
+ addComponent(new Button("Remove first", new ClickListener() {
+
+ @Override
+ public void buttonClick(ClickEvent event) {
+ container.removeAllItems();
+ persons.remove(0);
+
+ container.addAll(persons);
+ grid.select(container.firstItemId());
+ }
+ }));
+ addComponent(grid);
+ }
+
+ public static List<ComplexPerson> createPersons(int count, Random r) {
+ List<ComplexPerson> c = new ArrayList<ComplexPerson>();
+ for (int i = 0; i < count; ++i) {
+ c.add(ComplexPerson.create(r));
+ }
+ return c;
+ }
+}
diff --git a/uitest/src/com/vaadin/tests/components/grid/GridDataSourceResetTest.java b/uitest/src/com/vaadin/tests/components/grid/GridDataSourceResetTest.java
new file mode 100644
index 0000000000..f7ea63e371
--- /dev/null
+++ b/uitest/src/com/vaadin/tests/components/grid/GridDataSourceResetTest.java
@@ -0,0 +1,50 @@
+/*
+ * 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.grid;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.ButtonElement;
+import com.vaadin.testbench.elements.GridElement;
+import com.vaadin.tests.tb3.SingleBrowserTest;
+
+public class GridDataSourceResetTest extends SingleBrowserTest {
+
+ @Test
+ public void testRemoveWithSelectUpdatesRowsCorrectly() {
+ openTestURL();
+
+ GridElement grid = $(GridElement.class).first();
+
+ assertTrue("First row was not selected", grid.getRow(0).isSelected());
+ for (int i = 1; i < 10; ++i) {
+ assertFalse("Only first row should be selected", grid.getRow(i)
+ .isSelected());
+ }
+
+ $(ButtonElement.class).first().click();
+
+ assertTrue("First row was not selected after remove", grid.getRow(0)
+ .isSelected());
+ for (int i = 1; i < 9; ++i) {
+ assertFalse("Only first row should be selected after remove", grid
+ .getRow(i).isSelected());
+ }
+ }
+}