]> source.dussan.org Git - vaadin-framework.git/blob
b55e3ec02661b8ddf4bebca60282332ea086ea4a
[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;
17
18 import java.util.List;
19
20 import org.openqa.selenium.WebElement;
21
22 import com.vaadin.testbench.By;
23 import com.vaadin.testbench.TestBenchElement;
24 import com.vaadin.v7.testbench.customelements.GridElement;
25
26 /**
27  * GridBasicClientFeatures.
28  *
29  * @since
30  * @author Vaadin Ltd
31  */
32 public abstract class GridBasicClientFeaturesTest
33         extends GridBasicFeaturesTest {
34
35     private boolean composite = false;
36
37     @Override
38     protected Class<?> getUIClass() {
39         return GridBasicClientFeatures.class;
40     }
41
42     @Override
43     protected String getDeploymentPath() {
44         String path = super.getDeploymentPath();
45         if (composite) {
46             path += (path.contains("?") ? "&" : "?") + "composite";
47         }
48         return path;
49     }
50
51     protected void setUseComposite(boolean useComposite) {
52         composite = useComposite;
53     }
54
55     @Override
56     protected void selectMenu(String menuCaption) {
57         // GWT menu does not need to be clicked.
58         selectMenu(menuCaption, false);
59     }
60
61     @Override
62     protected WebElement getMenuElement(String menuCaption) {
63         return getDriver()
64                 .findElement(By.xpath("//td[text() = '" + menuCaption + "']"));
65     }
66
67     @Override
68     protected GridElement getGridElement() {
69         if (composite) {
70             // Composite requires the basic client features widget for subparts
71             return ((TestBenchElement) findElement(
72                     By.vaadin("//TestWidgetComponent")))
73                             .wrap(GridElement.class);
74         } else {
75             return super.getGridElement();
76         }
77     }
78
79     @Override
80     protected void assertColumnHeaderOrder(int... indices) {
81         List<TestBenchElement> headers = getGridHeaderRowCells();
82         for (int i = 0; i < indices.length; i++) {
83             assertColumnHeader("HEADER (0," + indices[i] + ")", headers.get(i));
84         }
85     }
86
87     protected void toggleColumnReorder() {
88         selectMenuPath("Component", "State", "Column Reordering");
89     }
90
91     protected boolean isRowSelected(int index) {
92         boolean selected = getGridElement().getRow(index).isSelected();
93         return selected;
94     }
95
96     protected void setSelectionModelMulti() {
97         setSelectionModel("multi");
98     }
99
100     protected void setSelectionModelSingle(boolean deselectAllowed) {
101         String mode = "single";
102         if (!deselectAllowed) {
103             mode += " (no deselect)";
104         }
105         setSelectionModel(mode);
106     }
107
108     protected void setSelectionModelNone() {
109         setSelectionModel("none");
110     }
111
112     protected void setSelectionModel(String model) {
113         selectMenuPath("Component", "State", "Selection mode", model);
114     }
115 }