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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
package com.vaadin.tests.components.table;
import java.util.List;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.Keys;
import org.openqa.selenium.remote.DesiredCapabilities;
import com.vaadin.testbench.TestBenchElement;
import com.vaadin.testbench.elements.CheckBoxElement;
import com.vaadin.testbench.elements.LabelElement;
import com.vaadin.testbench.elements.TableElement;
import com.vaadin.testbench.parallel.Browser;
import com.vaadin.tests.tb3.MultiBrowserTest;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
public class ItemClickEventsTestWithShiftOrCtrl extends MultiBrowserTest {
@Override
protected Class<?> getUIClass() {
return ItemClickEvents.class;
}
@Override
public List<DesiredCapabilities> getBrowsersToTest() {
// Apparently only Chrome supports ctrl-click..?
return getBrowserCapabilities(Browser.CHROME);
}
private void clickElement(TestBenchElement e) {
assertNotNull(e);
e.click();
}
private void shiftClickElement(TestBenchElement e) {
assertNotNull(e);
e.click(5, 5, Keys.SHIFT);
}
private void ctrlClickElement(TestBenchElement e) {
assertNotNull(e);
e.click(5, 5, Keys.CONTROL);
}
private void assertSelected(TestBenchElement e) {
assertNotNull(e);
assertTrue(hasCssClass(e, "v-selected"));
}
private void assertNotSelected(TestBenchElement e) {
assertNotNull(e);
assertTrue(!hasCssClass(e, "v-selected"));
}
private void assertLog(String compare) {
LabelElement logRow = $(LabelElement.class).id("Log_row_0");
assertNotNull(logRow);
assertTrue(logRow.getText().contains(compare));
}
@Before
public void init() {
openTestURL("restartApplication");
}
@Test
public void testMultiSelectNotSelectable() throws Exception {
// Activate table multi-selection mode
clickElement($(CheckBoxElement.class).caption("multi").get(1));
// Remove the 'selectable' mode from Table
$(CheckBoxElement.class).caption("selectable").get(1).click();
// Get table element
TableElement table = $(TableElement.class).id("table");
// Click some items and check that clicks go through
clickElement(table.getCell(4, 0));
assertLog("left click on table/Item 4");
clickElement(table.getCell(2, 0));
assertLog("left click on table/Item 2");
ctrlClickElement(table.getCell(5, 0));
assertLog("left click on table/Item 5 (ctrl)");
shiftClickElement(table.getCell(3, 0));
assertLog("left click on table/Item 3 (shift)");
}
@Test
public void testSingleNonImmediateNonSelectable() throws Exception {
// Disable table immediate mode
clickElement($(CheckBoxElement.class).caption("immediate").get(1));
// Disable the 'selectable' mode from Table
$(CheckBoxElement.class).caption("selectable").get(1).click();
// Get table element
TableElement table = $(TableElement.class).id("table");
// Click items and verify that click event went through
clickElement(table.getCell(0, 0));
assertLog("left click on table/Item 0");
clickElement(table.getCell(1, 0));
assertLog("left click on table/Item 1");
ctrlClickElement(table.getCell(2, 0));
assertLog("left click on table/Item 2 (ctrl)");
shiftClickElement(table.getCell(3, 0));
assertLog("left click on table/Item 3 (shift)");
}
@Test
public void testMultiSelectNotNull() throws Exception {
// Activate table multi-selection mode
clickElement($(CheckBoxElement.class).caption("multi").get(1));
// Get table element
TableElement table = $(TableElement.class).id("table");
// Click item 10, verify log output
clickElement(table.getCell(9, 0));
assertLog("left click on table/Item 9");
sleep(100);
// Click it again, should not deselect
ctrlClickElement(table.getCell(9, 0));
assertLog("left click on table/Item 9 (ctrl)");
// Click item 4 to select it
ctrlClickElement(table.getCell(3, 0));
assertLog("left click on table/Item 3 (ctrl)");
// Unselect item 10
ctrlClickElement(table.getCell(9, 0));
assertLog("left click on table/Item 9 (ctrl)");
// Try to click item 4, should not deselect
ctrlClickElement(table.getCell(3, 0));
assertLog("left click on table/Item 3 (ctrl)");
// Check that row 4 remains selected
assertSelected(table.getRow(3));
}
@Test
public void testMultiSelectNull() throws Exception {
// Activate table multi-selection mode
clickElement($(CheckBoxElement.class).caption("multi").get(1));
// Activate table null selection mode
clickElement($(CheckBoxElement.class).caption("nullsel").get(1));
// Get table element
TableElement table = $(TableElement.class).id("table");
// Select first item
clickElement(table.getCell(0, 0));
assertLog("left click on table/Item 0");
// Shift-click to select range between first and fifth element
shiftClickElement(table.getCell(4, 0));
assertLog("left click on table/Item 4 (shift)");
// Pick element 7
ctrlClickElement(table.getCell(6, 0));
assertLog("left click on table/Item 6 (ctrl)");
// Un-pick element 3
ctrlClickElement(table.getCell(2, 0));
assertLog("left click on table/Item 2 (ctrl)");
// Check selection
assertSelected(table.getRow(0));
assertSelected(table.getRow(1));
assertNotSelected(table.getRow(2));
assertSelected(table.getRow(3));
assertSelected(table.getRow(4));
assertSelected(table.getRow(6));
}
}
|