-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
rich-text.test.js
378 lines (316 loc) · 11.8 KB
/
rich-text.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
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
/**
* WordPress dependencies
*/
import {
createNewPost,
getEditedPostContent,
insertBlock,
clickBlockAppender,
pressKeyWithModifier,
} from '@wordpress/e2e-test-utils';
describe( 'RichText', () => {
beforeEach( async () => {
await createNewPost();
} );
it( 'should handle change in tag name gracefully', async () => {
// Regression test: The heading block changes the tag name of its
// RichText element. Historically this has been prone to breakage,
// because the Editable component prevents rerenders, so React cannot
// update the element by itself.
//
// See: https://github.com/WordPress/gutenberg/issues/3091
await insertBlock( 'Heading' );
await page.waitForSelector( '[aria-label="Change heading level"]' );
await page.click( '[aria-label="Change heading level"]' );
await page.click( '[aria-label="Heading 3"]' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should apply formatting with primary shortcut', async () => {
await clickBlockAppender();
await page.keyboard.type( 'test' );
await pressKeyWithModifier( 'primary', 'a' );
await pressKeyWithModifier( 'primary', 'b' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should apply formatting when selection is collapsed', async () => {
await clickBlockAppender();
await page.keyboard.type( 'Some ' );
// All following characters should now be bold.
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( 'bold' );
// All following characters should no longer be bold.
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '.' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should apply multiple formats when selection is collapsed', async () => {
await clickBlockAppender();
await pressKeyWithModifier( 'primary', 'b' );
await pressKeyWithModifier( 'primary', 'i' );
await page.keyboard.type( '1' );
await pressKeyWithModifier( 'primary', 'i' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '.' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not highlight more than one format', async () => {
await clickBlockAppender();
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '1' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( ' 2' );
await pressKeyWithModifier( 'shift', 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'b' );
const count = await page.evaluate(
() =>
document.querySelectorAll( '*[data-rich-text-format-boundary]' )
.length
);
expect( count ).toBe( 1 );
} );
it( 'should return focus when pressing formatting button', async () => {
await clickBlockAppender();
await page.keyboard.type( 'Some ' );
await page.mouse.move( 0, 0 );
await page.mouse.move( 10, 10 );
await page.click( '[aria-label="Bold"]' );
await page.keyboard.type( 'bold' );
await page.mouse.move( 0, 0 );
await page.mouse.move( 10, 10 );
await page.click( '[aria-label="Bold"]' );
await page.keyboard.type( '.' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should transform backtick to code', async () => {
await clickBlockAppender();
await page.keyboard.type( 'A `backtick`' );
expect( await getEditedPostContent() ).toMatchSnapshot();
await pressKeyWithModifier( 'primary', 'z' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should undo backtick transform with backspace', async () => {
await clickBlockAppender();
await page.keyboard.type( '`a`' );
await page.keyboard.press( 'Backspace' );
// Expect "`a`" to be restored.
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not undo backtick transform with backspace after typing', async () => {
await clickBlockAppender();
await page.keyboard.type( '`a`' );
await page.keyboard.type( 'b' );
await page.keyboard.press( 'Backspace' );
await page.keyboard.press( 'Backspace' );
// Expect "a" to be deleted.
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not undo backtick transform with backspace after selection change', async () => {
await clickBlockAppender();
await page.keyboard.type( '`a`' );
await page.evaluate( () => new Promise( window.requestIdleCallback ) );
// Move inside format boundary.
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowRight' );
await page.keyboard.press( 'Backspace' );
// Expect "a" to be deleted.
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not format text after code backtick', async () => {
await clickBlockAppender();
await page.keyboard.type( 'A `backtick` and more.' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should only mutate text data on input', async () => {
await clickBlockAppender();
await page.keyboard.type( '1' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '3' );
await page.evaluate( () => {
let called;
const { body } = document;
const config = {
attributes: true,
childList: true,
characterData: true,
subtree: true,
};
const mutationObserver = new MutationObserver( ( records ) => {
if ( called || records.length > 1 ) {
throw new Error( 'Typing should only mutate once.' );
}
records.forEach( ( record ) => {
if ( record.type !== 'characterData' ) {
throw new Error(
`Typing mutated more than character data: ${ record.type }`
);
}
} );
called = true;
} );
mutationObserver.observe( body, config );
window.unsubscribes = [ () => mutationObserver.disconnect() ];
document.addEventListener(
'selectionchange',
() => {
function throwMultipleSelectionChange() {
throw new Error(
'Typing should only emit one selection change event.'
);
}
document.addEventListener(
'selectionchange',
throwMultipleSelectionChange,
{
once: true,
}
);
window.unsubscribes.push( () => {
document.removeEventListener(
'selectionchange',
throwMultipleSelectionChange
);
} );
},
{ once: true }
);
} );
await page.keyboard.type( '4' );
await page.evaluate( () => {
// The selection change event should be called once. If there's only
// one item in `window.unsubscribes`, it means that only one
// function is present to disconnect the `mutationObserver`.
if ( window.unsubscribes.length === 1 ) {
throw new Error(
'The selection change event listener was never called.'
);
}
window.unsubscribes.forEach( ( unsubscribe ) => unsubscribe() );
} );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not lose selection direction', async () => {
await clickBlockAppender();
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '1' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '23' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.down( 'Shift' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowRight' );
await page.keyboard.press( 'ArrowRight' );
await page.keyboard.up( 'Shift' );
// There should be no selection. The following should insert "-" without
// deleting the numbers.
await page.keyboard.type( '-' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should handle Home and End keys', async () => {
await page.keyboard.press( 'Enter' );
// Wait for rich text editor to load.
await page.waitForSelector( '.block-editor-rich-text__editable' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '12' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.press( 'Home' );
await page.keyboard.type( '-' );
await page.keyboard.press( 'End' );
await page.keyboard.type( '+' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should update internal selection after fresh focus', async () => {
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '1' );
await page.keyboard.press( 'Tab' );
await pressKeyWithModifier( 'shift', 'Tab' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'b' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should keep internal selection after blur', async () => {
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '1' );
// Simulate moving focus to a different app, then moving focus back,
// without selection being changed.
await page.evaluate( () => {
const activeElement = document.activeElement;
activeElement.blur();
activeElement.focus();
} );
// Wait for the next animation frame, see the focus event listener in
// RichText.
await page.evaluate(
() => new Promise( window.requestAnimationFrame )
);
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'b' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should split rich text on paste', async () => {
await clickBlockAppender();
await page.keyboard.type( '1' );
await page.keyboard.press( 'Enter' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'a' );
await pressKeyWithModifier( 'primary', 'a' );
await pressKeyWithModifier( 'primary', 'x' );
await page.keyboard.type( 'ab' );
await page.keyboard.press( 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'v' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not split rich text on inline paste', async () => {
await clickBlockAppender();
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'a' );
await pressKeyWithModifier( 'primary', 'x' );
await page.keyboard.type( '13' );
await page.keyboard.press( 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'v' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should not split rich text on inline paste with formatting', async () => {
await clickBlockAppender();
await page.keyboard.type( '1' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '3' );
await pressKeyWithModifier( 'primary', 'a' );
await pressKeyWithModifier( 'primary', 'x' );
await page.keyboard.type( 'ab' );
await page.keyboard.press( 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'v' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should make bold after split and merge', async () => {
await clickBlockAppender();
await page.keyboard.type( '1' );
await page.keyboard.press( 'Enter' );
await page.keyboard.press( 'Backspace' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '2' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
it( 'should apply active formatting for inline paste', async () => {
await clickBlockAppender();
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '1' );
await page.keyboard.type( '2' );
await pressKeyWithModifier( 'primary', 'b' );
await page.keyboard.type( '3' );
await pressKeyWithModifier( 'shift', 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'c' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'ArrowLeft' );
await pressKeyWithModifier( 'primary', 'v' );
expect( await getEditedPostContent() ).toMatchSnapshot();
} );
} );