1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
/*
* 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 org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebElement;
import com.vaadin.testbench.elements.ButtonElement;
import com.vaadin.testbench.elements.GridElement;
import com.vaadin.testbench.elements.GridElement.GridCellElement;
import com.vaadin.tests.annotations.TestCategory;
import com.vaadin.tests.tb3.SingleBrowserTest;
@TestCategory("grid")
public class GridHeaderStyleNamesTest extends SingleBrowserTest {
private GridElement grid;
@Before
public void findGridCells() {
openTestURL();
grid = $(GridElement.class).first();
}
private GridCellElement getMergedHeaderCell() {
return grid.getHeaderCell(0, 3);
}
private GridCellElement getAgeFooterCell() {
return grid.getFooterCell(0, 2);
}
@Test
public void cellStyleNamesCanBeAddedAndRemoved() {
ButtonElement toggleStyles = $(ButtonElement.class).caption(
"Toggle styles").first();
assertStylesSet(true);
toggleStyles.click();
assertStylesSet(false);
toggleStyles.click();
assertStylesSet(true);
}
@Test
public void rowStyleNamesCanBeAddedAndRemoved() {
ButtonElement toggleStyles = $(ButtonElement.class).caption(
"Toggle styles").first();
assertRowStylesSet(true);
toggleStyles.click();
assertRowStylesSet(false);
toggleStyles.click();
assertRowStylesSet(true);
}
private void assertStylesSet(boolean set) {
if (set) {
assertHasStyleName(
"Footer cell should have the assigned 'age-footer' class name",
getAgeFooterCell(), "age-footer");
assertHasStyleName(
"Header cell should have the assigned 'age' class name",
getAgeHeaderCell(), "age");
assertHasStyleName(
"The merged header cell should have the assigned 'city-country' class name",
getMergedHeaderCell(), "city-country");
} else {
assertHasNotStyleName(
"Footer cell should not have the removed 'age-footer' class name",
getAgeFooterCell(), "age-footer");
assertHasNotStyleName(
"Header cell should not have the removed 'age' class name",
getAgeHeaderCell(), "age");
assertHasNotStyleName(
"Ther merged header cell should not have the removed 'city-country' class name",
getMergedHeaderCell(), "city-country");
}
assertHasStyleName(
"The default v-grid-cell style name should not be removed from the header cell",
getAgeHeaderCell(), "v-grid-cell");
assertHasStyleName(
"The default v-grid-cell style name should not be removed from the footer cell",
getAgeFooterCell(), "v-grid-cell");
assertHasStyleName(
"The default v-grid-cell style name should not be removed from the merged header cell",
getMergedHeaderCell(), "v-grid-cell");
}
private void assertRowStylesSet(boolean set) {
if (set) {
assertHasStyleName(
"Footer row should have the assigned 'custom-row' class name",
getFooterRow(), "custom-row");
assertHasStyleName(
"Header row should have the assigned 'custom-row' class name",
getHeaderRow(), "custom-row");
} else {
assertHasNotStyleName(
"Footer row should not have the removed 'custom-row' class name",
getFooterRow(), "custom-row");
assertHasNotStyleName(
"Header row should not have the removed 'custom-row' class name",
getHeaderRow(), "custom-row");
}
assertHasStyleName(
"The default v-grid-row style name should not be removed from the header row",
getHeaderRow(), "v-grid-row");
assertHasStyleName(
"The default v-grid-row style name should not be removed from the footer row",
getFooterRow(), "v-grid-row");
}
private WebElement getAgeHeaderCell() {
return grid.getHeaderCell(1, 2);
}
private WebElement getFooterRow() {
return grid.getFooterRow(0);
}
private WebElement getHeaderRow() {
return grid.getHeaderRow(0);
}
private void assertHasStyleName(String message, WebElement element,
String stylename) {
if (!hasCssClass(element, stylename)) {
Assert.fail(message);
}
}
private void assertHasNotStyleName(String message, WebElement element,
String stylename) {
if (hasCssClass(element, stylename)) {
Assert.fail(message);
}
}
}
|