diff options
author | Juuso Valli <juuso@vaadin.com> | 2014-05-26 17:22:18 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-05-27 07:29:30 +0000 |
commit | 930fd30a937ef69ba45e501bdee78773bad5523f (patch) | |
tree | c7e3e054d49715f27bf2c9c50b2d71d830cff2b4 /uitest | |
parent | 09c9de6e2a94553a324234157c7c9254011bef01 (diff) | |
download | vaadin-framework-930fd30a937ef69ba45e501bdee78773bad5523f.tar.gz vaadin-framework-930fd30a937ef69ba45e501bdee78773bad5523f.zip |
Fix Push update race condition (#13562)
Change-Id: I50094bc2d236f6dbb02a8b82d6cc9b5f7e4733a5
Diffstat (limited to 'uitest')
-rw-r--r-- | uitest/src/com/vaadin/tests/components/table/ContainerSizeChangeTest.java | 45 |
1 files changed, 27 insertions, 18 deletions
diff --git a/uitest/src/com/vaadin/tests/components/table/ContainerSizeChangeTest.java b/uitest/src/com/vaadin/tests/components/table/ContainerSizeChangeTest.java index a866e4a0c5..041b23749c 100644 --- a/uitest/src/com/vaadin/tests/components/table/ContainerSizeChangeTest.java +++ b/uitest/src/com/vaadin/tests/components/table/ContainerSizeChangeTest.java @@ -1,19 +1,21 @@ package com.vaadin.tests.components.table; -import com.vaadin.testbench.By; -import com.vaadin.testbench.elements.ButtonElement; -import com.vaadin.testbench.elements.TableElement; -import com.vaadin.tests.tb3.MultiBrowserTest; +import static org.hamcrest.CoreMatchers.is; +import static org.hamcrest.MatcherAssert.assertThat; + +import java.io.IOException; + import junit.framework.Assert; + import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.openqa.selenium.NoSuchElementException; -import java.io.IOException; - -import static org.hamcrest.CoreMatchers.is; -import static org.hamcrest.MatcherAssert.assertThat; +import com.vaadin.testbench.By; +import com.vaadin.testbench.elements.ButtonElement; +import com.vaadin.testbench.elements.TableElement; +import com.vaadin.tests.tb3.MultiBrowserTest; public class ContainerSizeChangeTest extends MultiBrowserTest { @@ -21,30 +23,37 @@ public class ContainerSizeChangeTest extends MultiBrowserTest { public ExpectedException thrown = ExpectedException.none(); @Test - public void tableShouldLoadCorrectItems() throws IOException, InterruptedException { + public void tableShouldLoadCorrectItems() throws IOException, + InterruptedException { openTestURL(); - ButtonElement decreaseSize = $(ButtonElement.class).caption("Decrease size").first(); - decreaseSize.click(); //decreasing container size from 50 to 40 - decreaseSize.click(); //decreasing container size from 40 to 30 + ButtonElement decreaseSize = $(ButtonElement.class).caption( + "Decrease size").first(); + decreaseSize.click(); // decreasing container size from 50 to 40 + decreaseSize.click(); // decreasing container size from 40 to 30 TableElement table = $(TableElement.class).first(); - //TableElement scroll not working properly, so we need to do this. http://dev.vaadin.com/ticket/13826 - testBenchElement(table.findElement(By.className("v-scrollable"))).scroll(1000); + // TableElement scroll not working properly, so we need to do this. + // http://dev.vaadin.com/ticket/13826 + testBenchElement(table.findElement(By.className("v-scrollable"))) + .scroll(1000); - //waitforvaadin not worky currently for table scroll, so we need to use thread sleep :( - Thread.sleep(1000); + // waitforvaadin not worky currently for table scroll, so we need to use + // thread sleep :( + Thread.sleep(1500); assertThatRowExists(table, 29); assertRowDoesNotExist(table, 30); } private void assertThatRowExists(TableElement table, int rowIndex) { - assertThat(table.getCell(rowIndex, 0).getText(), is(String.format("a %s", rowIndex))); + assertThat(table.getCell(rowIndex, 0).getText(), + is(String.format("a %s", rowIndex))); } private void assertRowDoesNotExist(TableElement table, int rowIndex) { - //This is a really crappy way to workaround JUnit's limitation to provide a proper assert.throws method... + // This is a really crappy way to workaround JUnit's limitation to + // provide a proper assert.throws method... thrown.expect(NoSuchElementException.class); table.getCell(rowIndex, 0); |