-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathimage.spec.js
568 lines (466 loc) · 16.5 KB
/
image.spec.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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
/**
* External dependencies
*/
const path = require( 'path' );
const fs = require( 'fs/promises' );
const os = require( 'os' );
const { v4: uuid } = require( 'uuid' );
const snapshotDiff = require( 'snapshot-diff' );
/**
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );
test.use( {
imageBlockUtils: async ( { page }, use ) => {
await use( new ImageBlockUtils( { page } ) );
},
} );
test.describe( 'Image', () => {
test.beforeAll( async ( { requestUtils } ) => {
await requestUtils.deleteAllMedia();
} );
test.beforeEach( async ( { admin } ) => {
await admin.createNewPost();
} );
test.afterEach( async ( { requestUtils } ) => {
await requestUtils.deleteAllMedia();
} );
test( 'can be inserted', async ( { editor, page, imageBlockUtils } ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
await expect( imageBlock ).toBeVisible();
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
const image = imageBlock.locator( 'role=img' );
await expect( image ).toBeVisible();
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
const regex = new RegExp(
`<!-- wp:image {"id":(\\d+),"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="[^"]+\\/${ filename }\\.png" alt="" class="wp-image-\\1"/></figure>
<!-- \\/wp:image -->`
);
expect( await editor.getEditedPostContent() ).toMatch( regex );
} );
test( 'should replace, reset size, and keep selection', async ( {
editor,
page,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
{
await expect( image ).toBeVisible();
await expect( image ).toHaveAttribute(
'src',
new RegExp( filename )
);
const regex = new RegExp(
`<!-- wp:image {"id":(\\d+),"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="[^"]+\\/${ filename }\\.png" alt="" class="wp-image-\\1"/></figure>
<!-- \\/wp:image -->`
);
expect( await editor.getEditedPostContent() ).toMatch( regex );
}
{
await editor.openDocumentSettingsSidebar();
await page.click(
'role=group[name="Image size presets"i] >> role=button[name="25%"i]'
);
await expect( image ).toHaveCSS( 'width', '3px' );
await expect( image ).toHaveCSS( 'height', '3px' );
const regex = new RegExp(
`<!-- wp:image {"id":(\\d+),"width":3,"height":3,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full is-resized"><img src="[^"]+\\/${ filename }\\.png" alt="" class="wp-image-\\1" width="3" height="3"\\/><\\/figure>
<!-- /wp:image -->`
);
expect( await editor.getEditedPostContent() ).toMatch( regex );
}
{
await editor.showBlockToolbar();
await page.click( 'role=button[name="Replace"i]' );
const replacedFilename = await imageBlockUtils.upload(
page
// Ideally the menu should have the name of "Replace" but is currently missing.
// Hence, we fallback to using CSS classname instead.
.locator( '.block-editor-media-replace-flow__options' )
.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute(
'src',
new RegExp( replacedFilename )
);
await expect( image ).toBeVisible();
const regex = new RegExp(
`<!-- wp:image {"id":(\\d+),"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full"><img src="[^"]+\\/${ replacedFilename }\\.png" alt="" class="wp-image-\\1"/></figure>
<!-- \\/wp:image -->`
);
expect( await editor.getEditedPostContent() ).toMatch( regex );
}
{
// Focus outside the block to avoid the image caption being selected
// It can happen on CI specially.
await page.click( 'role=textbox[name="Add title"i]' );
await image.click();
await page.keyboard.press( 'Backspace' );
expect( await editor.getEditedPostContent() ).toBe( '' );
}
} );
test( 'should place caret on caption when clicking to add one', async ( {
editor,
page,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
await editor.clickBlockToolbarButton( 'Add caption' );
await page.keyboard.type( '1' );
await page.keyboard.press( 'Enter' );
await page.keyboard.press( 'Backspace' );
await page.keyboard.type( '2' );
expect(
await page.evaluate( () => document.activeElement.innerHTML )
).toBe( '12' );
} );
test( 'should allow soft line breaks in caption', async ( {
editor,
page,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const fileName = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toBeVisible();
await expect( image ).toHaveAttribute( 'src', new RegExp( fileName ) );
await editor.clickBlockToolbarButton( 'Add caption' );
await page.keyboard.type( '12' );
await page.keyboard.press( 'ArrowLeft' );
await page.keyboard.press( 'Enter' );
expect(
await page.evaluate( () => document.activeElement.innerHTML )
).toBe( '1<br data-rich-text-line-break="true">2' );
} );
test( 'should have keyboard navigable toolbar for caption', async ( {
editor,
page,
pageUtils,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const fileName = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toBeVisible();
await expect( image ).toHaveAttribute( 'src', new RegExp( fileName ) );
// Add caption and navigate to inline toolbar.
await editor.clickBlockToolbarButton( 'Add caption' );
await pageUtils.pressKeyWithModifier( 'shift', 'Tab' );
await expect(
await page.evaluate( () =>
document.activeElement.getAttribute( 'aria-label' )
)
).toBe( 'Bold' );
// Bold to italic,
await page.keyboard.press( 'ArrowRight' );
// Italic to link,
await page.keyboard.press( 'ArrowRight' );
// Link to italic,
await page.keyboard.press( 'ArrowLeft' );
// Italic to bold.
await page.keyboard.press( 'ArrowLeft' );
await expect(
await page.evaluate( () =>
document.activeElement.getAttribute( 'aria-label' )
)
).toBe( 'Bold' );
await page.keyboard.press( 'Space' );
await page.keyboard.press( 'a' );
await page.keyboard.press( 'ArrowRight' );
expect(
await page.evaluate( () => document.activeElement.innerHTML )
).toBe( '<strong>a</strong>' );
} );
test( 'should drag and drop files into media placeholder', async ( {
editor,
page,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const tmpInput = await page.evaluateHandle( () => {
const input = document.createElement( 'input' );
input.type = 'file';
return input;
} );
const fileName = await imageBlockUtils.upload( tmpInput );
const paragraphRect = await imageBlock.boundingBox();
const pX = paragraphRect.x + paragraphRect.width / 2;
const pY = paragraphRect.y + paragraphRect.height / 3;
await imageBlock.evaluate(
( element, [ input, clientX, clientY ] ) => {
const dataTransfer = new window.DataTransfer();
dataTransfer.items.add( input.files[ 0 ] );
const event = new window.DragEvent( 'drop', {
bubbles: true,
clientX,
clientY,
dataTransfer,
} );
element.dispatchEvent( event );
},
[ tmpInput, pX, pY ]
);
await expect( image ).toHaveAttribute( 'src', new RegExp( fileName ) );
} );
test( 'allows zooming using the crop tools', async ( {
editor,
page,
pageUtils,
imageBlockUtils,
} ) => {
// Insert the block, upload a file and crop.
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
// Assert that the image is initially unscaled and unedited.
const initialImageSrc = await image.getAttribute( 'src' );
const initialImageDataURL = await imageBlockUtils.getDataURL( image );
// Zoom in to twice the amount using the zoom input.
await editor.clickBlockToolbarButton( 'Crop' );
await editor.clickBlockToolbarButton( 'Zoom' );
await expect(
page.locator( 'role=slider[name="Zoom"i]' )
).toBeFocused();
await page.keyboard.press( 'Tab' );
await expect(
page.locator( 'role=spinbutton[name="Zoom"i]' )
).toBeFocused();
await pageUtils.pressKeyWithModifier( 'primary', 'a' );
await page.keyboard.type( '200' );
await page.keyboard.press( 'Escape' );
await editor.clickBlockToolbarButton( 'Apply' );
// Wait for the cropping tools to disappear.
await expect(
page.locator( 'role=button[name="Apply"i]' )
).toBeHidden();
// Assert that the image is edited.
const updatedImageSrc = await image.getAttribute( 'src' );
expect( initialImageSrc ).not.toEqual( updatedImageSrc );
const updatedImageDataURL = await imageBlockUtils.getDataURL( image );
expect( initialImageDataURL ).not.toEqual( updatedImageDataURL );
expect(
snapshotDiff( initialImageDataURL, updatedImageDataURL )
).toMatchSnapshot();
} );
test( 'allows changing aspect ratio using the crop tools', async ( {
editor,
page,
imageBlockUtils,
} ) => {
// Insert the block, upload a file and crop.
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
// Assert that the image is initially unscaled and unedited.
const initialImageSrc = await image.getAttribute( 'src' );
const initialImageDataURL = await imageBlockUtils.getDataURL( image );
// Zoom in to twice the amount using the zoom input.
await editor.clickBlockToolbarButton( 'Crop' );
await editor.clickBlockToolbarButton( 'Aspect Ratio' );
await page.click(
'role=menu[name="Aspect Ratio"i] >> role=menuitemradio[name="16:10"i]'
);
await editor.clickBlockToolbarButton( 'Apply' );
// Wait for the cropping tools to disappear.
await expect(
page.locator( 'role=button[name="Apply"i]' )
).toBeHidden();
// Assert that the image is edited.
const updatedImageSrc = await image.getAttribute( 'src' );
const updatedImageDataURL = await imageBlockUtils.getDataURL( image );
expect( initialImageSrc ).not.toEqual( updatedImageSrc );
expect( initialImageDataURL ).not.toEqual( updatedImageDataURL );
expect(
snapshotDiff( initialImageDataURL, updatedImageDataURL )
).toMatchSnapshot();
} );
test( 'allows rotating using the crop tools', async ( {
editor,
page,
imageBlockUtils,
} ) => {
// Insert the block, upload a file and crop.
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
// Assert that the image is initially unscaled and unedited.
const initialImageDataURL = await imageBlockUtils.getDataURL( image );
// Rotate the image.
await editor.clickBlockToolbarButton( 'Crop' );
await editor.clickBlockToolbarButton( 'Rotate' );
await editor.clickBlockToolbarButton( 'Apply' );
// Wait for the cropping tools to disappear.
await expect(
page.locator( 'role=button[name="Apply"i]' )
).toBeHidden();
// Assert that the image is edited.
await expect
.poll( async () => imageBlockUtils.getDataURL( image ) )
.not.toBe( initialImageDataURL );
const updatedImageDataURL = await imageBlockUtils.getDataURL( image );
expect(
snapshotDiff( initialImageDataURL, updatedImageDataURL )
).toMatchSnapshot();
} );
test( 'Should reset dimensions on change URL', async ( {
editor,
page,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
{
// Upload an initial image.
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute(
'src',
new RegExp( filename )
);
// Resize the Uploaded Image.
await editor.openDocumentSettingsSidebar();
await page.click(
'role=group[name="Image size presets"i] >> role=button[name="25%"i]'
);
const regex = new RegExp(
`<!-- wp:image {"id":(\\d+),"width":3,"height":3,"sizeSlug":"full","linkDestination":"none"} -->
<figure class="wp-block-image size-full is-resized"><img src="[^"]+/${ filename }\\.png" alt="" class="wp-image-\\1" width="3" height="3"/></figure>
<!-- /wp:image -->`
);
// Check if dimensions are changed.
expect( await editor.getEditedPostContent() ).toMatch( regex );
}
{
const imageUrl = '/wp-includes/images/w-logo-blue.png';
// Replace uploaded image with an URL.
await editor.clickBlockToolbarButton( 'Replace' );
await page.click( 'role=button[name="Edit"i]' );
// Replace the url.
await page.fill( 'role=combobox[name="URL"i]', imageUrl );
await page.click( 'role=button[name="Submit"i]' );
const regex = new RegExp(
`<!-- wp:image {"sizeSlug":"large","linkDestination":"none"} -->
<figure class="wp-block-image size-large"><img src="${ imageUrl }" alt=""/></figure>
<!-- /wp:image -->`
);
// Check if dimensions are reset.
expect( await editor.getEditedPostContent() ).toMatch( regex );
}
} );
test( 'should undo without broken temporary state', async ( {
editor,
page,
pageUtils,
imageBlockUtils,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.locator(
'role=document[name="Block: Image"i]'
);
const image = imageBlock.locator( 'role=img' );
const filename = await imageBlockUtils.upload(
imageBlock.locator( 'data-testid=form-file-upload-input' )
);
await expect( image ).toHaveAttribute( 'src', new RegExp( filename ) );
await page.focus( '.wp-block-image' );
await pageUtils.pressKeyWithModifier( 'primary', 'z' );
// Expect an empty image block (placeholder) rather than one with a
// broken temporary URL.
expect( await editor.getEditedPostContent() ).toBe( `<!-- wp:image -->
<figure class="wp-block-image"><img alt=""/></figure>
<!-- /wp:image -->` );
} );
} );
class ImageBlockUtils {
constructor( { page } ) {
this.page = page;
this.TEST_IMAGE_FILE_PATH = path.join(
__dirname,
'..',
'..',
'..',
'assets',
'10x10_e2e_test_image_z9T8jK.png'
);
}
async upload( inputElement ) {
const tmpDirectory = await fs.mkdtemp(
path.join( os.tmpdir(), 'gutenberg-test-image-' )
);
const filename = uuid();
const tmpFileName = path.join( tmpDirectory, filename + '.png' );
await fs.copyFile( this.TEST_IMAGE_FILE_PATH, tmpFileName );
await inputElement.setInputFiles( tmpFileName );
return filename;
}
async getDataURL( element ) {
return element.evaluate( ( node ) => {
const canvas = document.createElement( 'canvas' );
const context = canvas.getContext( '2d' );
canvas.width = node.width;
canvas.height = node.height;
context.drawImage( node, 0, 0 );
return canvas.toDataURL( 'image/jpeg' );
} );
}
}