]> source.dussan.org Git - vaadin-framework.git/blob
5984a213830496c884e17a14bc9a8a65404aeeab
[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.server;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertTrue;
20
21 import java.util.List;
22
23 import org.junit.Test;
24 import org.openqa.selenium.Keys;
25 import org.openqa.selenium.interactions.Actions;
26 import org.openqa.selenium.remote.DesiredCapabilities;
27
28 import com.vaadin.testbench.elements.GridElement.GridCellElement;
29 import com.vaadin.tests.components.grid.basicfeatures.GridBasicFeaturesTest;
30
31 public class GridMultiSortingTest extends GridBasicFeaturesTest {
32
33     @Override
34     public List<DesiredCapabilities> getBrowsersToTest() {
35         return super.getBrowsersSupportingShiftClick();
36     }
37
38     @Test
39     public void testUserMultiColumnSorting() {
40         openTestURL();
41
42         selectMenuPath("Component", "Columns", "Column 11", "Column 11 Width",
43                 "Auto");
44
45         GridCellElement cell = getGridElement().getHeaderCell(0, 11);
46         new Actions(driver).moveToElement(cell, 20, 10).click().perform();
47         new Actions(driver).keyDown(Keys.SHIFT).perform();
48         new Actions(driver)
49                 .moveToElement(getGridElement().getHeaderCell(0, 0), 20, 10)
50                 .click().perform();
51         new Actions(driver).keyUp(Keys.SHIFT).perform();
52
53         String prev = getGridElement().getCell(0, 11).getAttribute("innerHTML");
54         for (int i = 1; i <= 6; ++i) {
55             assertEquals("Column 11 should contain same values.", prev,
56                     getGridElement().getCell(i, 11).getAttribute("innerHTML"));
57         }
58
59         prev = getGridElement().getCell(0, 0).getText();
60         for (int i = 1; i <= 6; ++i) {
61             assertTrue("Grid is not sorted by column 0.", prev
62                     .compareTo(getGridElement().getCell(i, 0).getText()) < 0);
63         }
64     }
65 }