]> source.dussan.org Git - vaadin-framework.git/blob
9b5c3695d52d0f81ab8eb3b84be87e5a34891a25
[vaadin-framework.git] /
1 /*
2  * Copyright 2000-2016 Vaadin Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5  * use this file except in compliance with the License. You may obtain a copy of
6  * the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  * License for the specific language governing permissions and limitations under
14  * the License.
15  */
16 package com.vaadin.tests.components.grid.basicfeatures.client;
17
18 import static org.junit.Assert.assertEquals;
19
20 import org.junit.Test;
21
22 import com.vaadin.tests.components.grid.basicfeatures.GridBasicClientFeaturesTest;
23
24 public class GridRowHandleRefreshTest extends GridBasicClientFeaturesTest {
25
26     @Test
27     public void testRefreshingThroughRowHandle() {
28         openTestURL();
29
30         assertEquals("Unexpected initial state", "(0, 0)",
31                 getGridElement().getCell(0, 0).getText());
32         selectMenuPath("Component", "State", "Edit and refresh Row 0");
33         assertEquals("Cell contents did not update correctly", "Foo",
34                 getGridElement().getCell(0, 0).getText());
35     }
36
37     @Test
38     public void testDelayedRefreshingThroughRowHandle()
39             throws InterruptedException {
40         openTestURL();
41
42         assertEquals("Unexpected initial state", "(0, 0)",
43                 getGridElement().getCell(0, 0).getText());
44         selectMenuPath("Component", "State", "Delayed edit of Row 0");
45         // Still the same data
46         assertEquals("Cell contents did not update correctly", "(0, 0)",
47                 getGridElement().getCell(0, 0).getText());
48         sleep(5000);
49         // Data should be updated
50         assertEquals("Cell contents did not update correctly", "Bar",
51                 getGridElement().getCell(0, 0).getText());
52     }
53
54     @Test
55     public void testRefreshingWhenNotInViewThroughRowHandle() {
56         openTestURL();
57
58         assertEquals("Unexpected initial state", "(0, 0)",
59                 getGridElement().getCell(0, 0).getText());
60         getGridElement().scrollToRow(100);
61         selectMenuPath("Component", "State", "Edit and refresh Row 0");
62         assertEquals("Cell contents did not update correctly", "Foo",
63                 getGridElement().getCell(0, 0).getText());
64     }
65 }