-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
keyboard-navigable-blocks.test.js
232 lines (186 loc) · 7.18 KB
/
keyboard-navigable-blocks.test.js
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
/**
* WordPress dependencies
*/
import {
createNewPost,
insertBlock,
pressKeyWithModifier,
clickBlockAppender,
getEditedPostContent,
showBlockToolbar,
} from '@wordpress/e2e-test-utils';
async function getActiveLabel() {
return await page.evaluate( () => {
return (
document.activeElement.getAttribute( 'aria-label' ) ||
document.activeElement.innerHTML
);
} );
}
const navigateToContentEditorTop = async () => {
// Use 'Ctrl+`' to return to the top of the editor.
await pressKeyWithModifier( 'ctrl', '`' );
await pressKeyWithModifier( 'ctrl', '`' );
};
const tabThroughParagraphBlock = async ( paragraphText ) => {
await tabThroughBlockToolbar();
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Paragraph block' );
await expect(
await page.evaluate( () => document.activeElement.innerHTML )
).toBe( paragraphText );
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Open document settings' );
};
const tabThroughBlockToolbar = async () => {
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Paragraph' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Move up' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Move down' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Align' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Bold' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Italic' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Link' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'More' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Options' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Paragraph' );
};
describe( 'Order of block keyboard navigation', () => {
beforeEach( async () => {
await createNewPost();
} );
it( 'permits tabbing through paragraph blocks in the expected order', async () => {
const paragraphBlocks = [ 'Paragraph 0', 'Paragraph 1', 'Paragraph 2' ];
// Create 3 paragraphs blocks with some content.
for ( const paragraphBlock of paragraphBlocks ) {
await insertBlock( 'Paragraph' );
await page.keyboard.type( paragraphBlock );
}
// Select the middle block.
await page.keyboard.press( 'ArrowUp' );
await showBlockToolbar();
await navigateToContentEditorTop();
await tabThroughParagraphBlock( 'Paragraph 1' );
// Repeat the same steps to ensure that there is no change introduced in how the focus is handled.
// This prevents the previous regression explained in: https://github.com/WordPress/gutenberg/issues/11773.
await navigateToContentEditorTop();
await tabThroughParagraphBlock( 'Paragraph 1' );
} );
it( 'allows tabbing in navigation mode if no block is selected', async () => {
const paragraphBlocks = [ '0', '1' ];
// Create 2 paragraphs blocks with some content.
for ( const paragraphBlock of paragraphBlocks ) {
await insertBlock( 'Paragraph' );
await page.keyboard.type( paragraphBlock );
}
// Clear the selected block.
const paragraph = await page.$( '[data-type="core/paragraph"]' );
const box = await paragraph.boundingBox();
await page.mouse.click( box.x - 1, box.y );
await page.keyboard.press( 'Tab' );
await expect(
await page.evaluate( () => {
return document.activeElement.getAttribute( 'aria-label' );
} )
).toBe( 'Add title' );
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe(
'Paragraph Block. Row 1. 0'
);
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe(
'Paragraph Block. Row 2. 1'
);
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Open document settings' );
} );
it( 'allows tabbing in navigation mode if no block is selected (reverse)', async () => {
const paragraphBlocks = [ '0', '1' ];
// Create 2 paragraphs blocks with some content.
for ( const paragraphBlock of paragraphBlocks ) {
await insertBlock( 'Paragraph' );
await page.keyboard.type( paragraphBlock );
}
// Clear the selected block.
const paragraph = await page.$( '[data-type="core/paragraph"]' );
const box = await paragraph.boundingBox();
await page.mouse.click( box.x - 1, box.y );
// Put focus behind the block list.
await page.evaluate( () => {
document
.querySelector( '.interface-interface-skeleton__sidebar' )
.focus();
} );
await pressKeyWithModifier( 'shift', 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Add block' );
await pressKeyWithModifier( 'shift', 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Add default block' );
await pressKeyWithModifier( 'shift', 'Tab' );
await expect( await getActiveLabel() ).toBe(
'Paragraph Block. Row 2. 1'
);
await pressKeyWithModifier( 'shift', 'Tab' );
await expect( await getActiveLabel() ).toBe(
'Paragraph Block. Row 1. 0'
);
await pressKeyWithModifier( 'shift', 'Tab' );
await expect(
await page.evaluate( () => {
return document.activeElement.getAttribute( 'aria-label' );
} )
).toBe( 'Add title' );
} );
it( 'should navigate correctly with multi selection', async () => {
await clickBlockAppender();
await page.keyboard.type( '1' );
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '2' );
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '3' );
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '4' );
await page.keyboard.press( 'ArrowUp' );
await pressKeyWithModifier( 'shift', 'ArrowUp' );
expect( await getEditedPostContent() ).toMatchSnapshot();
expect( await getActiveLabel() ).toBe( 'Multiple selected blocks' );
await page.keyboard.press( 'Tab' );
await expect( await getActiveLabel() ).toBe( 'Post' );
await pressKeyWithModifier( 'shift', 'Tab' );
await expect( await getActiveLabel() ).toBe(
'Multiple selected blocks'
);
await pressKeyWithModifier( 'shift', 'Tab' );
await page.keyboard.press( 'ArrowRight' );
await expect( await getActiveLabel() ).toBe( 'Move up' );
} );
it( 'allows the first element within a block to receive focus', async () => {
// Insert a image block.
await insertBlock( 'Image' );
// Make sure the upload button has focus.
const uploadButton = await page.waitForXPath(
'//button[contains( text(), "Upload" ) ]'
);
await expect( uploadButton ).toHaveFocus();
// Try to focus the image block wrapper.
await page.keyboard.press( 'ArrowUp' );
await expect( await getActiveLabel() ).toBe( 'Block: Image' );
} );
it( 'allows the block wrapper to gain focus for a group block instead of the first element', async () => {
// Insert a group block.
await insertBlock( 'Group' );
await page.click(
'[aria-label="Skip selection and choose default block variation."]'
);
// If active label matches, that means focus did not change from group block wrapper.
await expect( await getActiveLabel() ).toBe( 'Block: Group' );
} );
} );