aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/components/window/WindowHeaderButtonKeyboardActionsTest.java
blob: 9e7d647e9c438bcb844348ab9ce0a2ba4e969e8e (plain)
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
package com.vaadin.tests.components.window;

import static org.junit.Assert.assertTrue;

import java.io.IOException;

import org.junit.Test;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;

import com.vaadin.testbench.By;
import com.vaadin.testbench.elements.WindowElement;
import com.vaadin.tests.tb3.SingleBrowserTest;

public class WindowHeaderButtonKeyboardActionsTest extends SingleBrowserTest {

    private static final String HEADER_CLASS = "v-window-header";
    private static final String RESTORE_BOX_CLASS = "v-window-restorebox";
    private static final String MAXIMIZE_BOX_CLASS = "v-window-maximizebox";
    private static final String CLOSE_BOX_CLASS = "v-window-closebox";

    @Override
    public void setup() throws Exception {
        super.setup();
        openTestURL();

        // open window before each test case
        waitForElementPresent(By.id("firstButton"));
        WebElement button = findElement(By.id("firstButton"));
        button.click();

        waitForElementPresent(By.id("testWindow"));
    }

    /**
     * Scenario: focus the close button of the opened window -> press ENTER key
     * -> window should be closed
     */
    @Test
    public void testCloseWindowWithEnter() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.ENTER);
        assertTrue("Window is not closed",
                findElements(By.className("v-window")).size() == 0);
    }

    /**
     * Scenario: focus the close button of the opened window -> press SPACE key
     * -> window should be closed
     */
    @Test
    public void testCloseWindowWithSpace() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));
        pressKeyAndWait(Keys.SPACE);

        assertTrue("Window is not closed",
                findElements(By.className("v-window")).size() == 0);
    }

    /**
     * Scenario: focus close button of opened window -> press keys DELETE,
     * ARROW_LEFT, and END -> window should remain open after all actions
     */
    @Test
    public void testIncorrectKeyInputDoesntFireClose() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.DELETE);
        assertTrue(
                "Window is closed by DELETE when close button is the focused element",
                findElements(By.className("v-window")).size() > 0);

        pressKeyAndWait(Keys.ARROW_LEFT);
        assertTrue(
                "Window is closed by ARROW_LEFT when close button is the focused element",
                findElements(By.className("v-window")).size() > 0);

        pressKeyAndWait(Keys.END);
        assertTrue(
                "Window is closed by END when close button is the focused element",
                findElements(By.className("v-window")).size() > 0);
    }

    /**
     * Scenario: close button of opened window is not focused -> press keys
     * ENTER and SPACE -> window should remain open after all actions
     */
    @Test
    public void testNonfocusedKeyDoesntCloseWindow() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        assertTrue("Window's close button is the focused element",
                !closeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.ENTER);
        assertTrue(
                "Window is closed by ENTER when close button is not the focused element",
                findElements(By.className("v-window")).size() > 0);

        pressKeyAndWait(Keys.SPACE);
        assertTrue(
                "Window is closed by SPACE when close button is not the focused element",
                findElements(By.className("v-window")).size() > 0);
    }

    /**
     * Scenario: focus close button of opened window -> press keys TAB, and
     * TAB+SHIFT in succession, shifting focus from and back to the button ->
     * press ENTER key -> window should be closed
     */
    @Test
    public void testShiftFocusAndCloseWindow() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);
        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.TAB);
        assertTrue("Window's close button is the focused element",
                !closeButton.equals(driver.switchTo().activeElement()));

        pressKeyCombinations(Keys.SHIFT, Keys.TAB);
        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.ENTER);
        assertTrue("Window is not closed when focus is shifted back-and-forth",
                findElements(By.className("v-window")).size() == 0);
    }

    /**
     * Scenario: focus close button of opened window -> click close button with
     * the mouse cursor -> window should be closed
     */
    @Test
    public void testMouseClickClosesWindowOnFocus() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(CLOSE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);
        assertTrue("Window's close button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));

        // click button with mouse and wait
        closeButton.click();
        waitForElementNotPresent(By.className("v-window"));
    }

    // Tests for maximize-restore button

    /**
     * Scenario: focus the maximize button of the opened window -> press ENTER
     * key -> window should be maximized
     */
    @Test
    public void testMaximizeWindowWithEnter() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's maximize button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));
        pressKeyAndWait(Keys.ENTER);

        assertTrue("Window is not maximized", windowElement.isMaximized());
    }

    /**
     * Scenario: focus the maximize button of the opened window -> press SPACE
     * key -> window should be maximized
     */
    @Test
    public void testMaximizeWindowWithSpace() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's maximize button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));
        pressKeyAndWait(Keys.SPACE);

        assertTrue("Window is not maximized", windowElement.isMaximized());
    }

    /**
     * Scenario: focus maximize button of opened window -> press keys DELETE,
     * ARROW_UP, and ADD -> window should remain open after all actions
     */
    @Test
    public void testIncorrectKeyInputDoesntFireMaximize() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement maximizeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(maximizeButton);

        assertTrue("Window's maximize button is not the focused element",
                maximizeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.DELETE);
        assertTrue(
                "Window is maximized by DELETE when maximize button is the focused element",
                !windowElement.isMaximized());

        pressKeyAndWait(Keys.ARROW_UP);
        assertTrue(
                "Window is cmaximized by ARROW_UP when maximize button is the focused element",
                !windowElement.isMaximized());

        pressKeyAndWait(Keys.ADD);
        assertTrue(
                "Window is maximized by ADD when maximize button is the focused element",
                !windowElement.isMaximized());
    }

    /**
     * Scenario: close button of opened window is not focused -> press keys
     * ENTER and SPACE -> window should remain non-maximized after all actions
     */
    @Test
    public void testNonfocusedKeyDoesntMaximizeWindow() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement maximizeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        assertTrue("Window's close button is the focused element",
                !maximizeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.ENTER);
        assertTrue(
                "Window is maximized by ENTER when maximize button is not the focused element",
                !windowElement.isMaximized());

        pressKeyAndWait(Keys.SPACE);
        assertTrue(
                "Window is maximized by SPACE when maximize button is not the focused element",
                !windowElement.isMaximized());
    }

    /**
     * Scenario: focus maximize button of opened window -> press keys TAB, and
     * TAB+SHIFT in succession, shifting focus from and back to the button ->
     * press ENTER key -> window should be maximized
     */
    @Test
    public void testShiftFocusAndMaximizeWindow() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement maximizeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(maximizeButton);
        assertTrue("Window's maximize button is not the focused element",
                maximizeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.TAB);
        assertTrue("Window's maximize button is the focused element",
                !maximizeButton.equals(driver.switchTo().activeElement()));
        pressKeyCombinations(Keys.SHIFT, Keys.TAB);
        assertTrue("Window's maximize button is not the focused element",
                maximizeButton.equals(driver.switchTo().activeElement()));

        pressKeyAndWait(Keys.ENTER);
        assertTrue(
                "Window is not maximized when focus is shifted back-and-forth",
                windowElement.isMaximized());
    }

    /**
     * Scenario: focus maximize button of opened window -> click maximize button
     * with mouse cursor -> window should be maximized
     */
    @Test
    public void testMouseClickMaximizesWindowOnFocus() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement maximizeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(maximizeButton);
        assertTrue("Window's maximize button is not the focused element",
                maximizeButton.equals(driver.switchTo().activeElement()));

        // click button with mouse and wait
        maximizeButton.click();
        sleep(100);

        assertTrue("Window is not maximized when focused element is clicked",
                windowElement.isMaximized());
    }

    /**
     * Scenario: focus the maximize button of the opened window -> press ENTER
     * key -> window should be maximized -> press ENTER key again -> window
     * should be restored
     */
    @Test
    public void testMaximizeAndRestoreWindowWithEnter() throws IOException {

        assertTrue("Window is not open",
                findElements(By.id("testWindow")).size() == 1);

        WindowElement windowElement = $(WindowElement.class).first();
        WebElement closeButton = windowElement
                .findElement(By.className(MAXIMIZE_BOX_CLASS));
        setFocusToElementAndWait(closeButton);

        assertTrue("Window's maximize button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));
        pressKeyAndWait(Keys.ENTER);

        assertTrue("Window is not maximized", windowElement.isMaximized());

        assertTrue("Window's maximize button is not the focused element",
                closeButton.equals(driver.switchTo().activeElement()));
        pressKeyAndWait(Keys.ENTER);

        assertTrue("Window remains maximized", !windowElement.isMaximized());
    }

    protected void setFocusToElementAndWait(WebElement element) {
        String elementId = element.getAttribute("id");

        ((JavascriptExecutor) getDriver()).executeScript(
                "document.getElementById('" + elementId + "').focus();",
                element);
        sleep(100);
    }

    protected void pressKeyAndWait(Keys... key) {
        new Actions(driver).sendKeys(key).build().perform();
        sleep(1000);
    }

    // That is a workaround after Chrome 75, sendKeys(Keys.shift, Keys.Tab)
    // doesn't work
    protected void pressKeyCombinations(Keys keyModifier, Keys key) {

        new Actions(getDriver()).keyDown(keyModifier).perform();
        new Actions(getDriver()).sendKeys(Keys.chord(key)).perform();
        new Actions(getDriver()).keyUp(keyModifier).perform();
    }
}