-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
image.spec.js
789 lines (660 loc) · 21.8 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
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
/**
* External dependencies
*/
const path = require( 'path' );
const fs = require( 'fs/promises' );
const os = require( 'os' );
const { v4: uuid } = require( 'uuid' );
/** @typedef {import('@playwright/test').Page} Page */
/**
* 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.pressKeys( 'shift+Tab' );
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' );
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' );
await expect
.poll( () => image.boundingBox() )
.toMatchObject( {
height: 10,
width: 10,
} );
// 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 pageUtils.pressKeys( 'Tab' );
await expect(
page.locator( 'role=spinbutton[name="Zoom"i]' )
).toBeFocused();
await pageUtils.pressKeys( '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 );
await expect
.poll( () => image.boundingBox() )
.toMatchObject( {
height: 5,
width: 5,
} );
expect(
await imageBlockUtils.getImageBuffer( updatedImageSrc )
).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' );
await expect
.poll( () => image.boundingBox() )
.toMatchObject( {
height: 10,
width: 10,
} );
// 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' );
expect( updatedImageSrc ).not.toEqual( initialImageSrc );
await expect
.poll( () => image.boundingBox() )
.toMatchObject( {
height: 6,
width: 10,
} );
expect(
await imageBlockUtils.getImageBuffer( updatedImageSrc )
).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 ) );
// 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.
const updatedImageSrc = await image.getAttribute( 'src' );
expect(
await imageBlockUtils.getImageBuffer( updatedImageSrc )
).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="Apply"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.pressKeys( '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 -->` );
} );
test( 'can be replaced by dragging-and-dropping images from the inserter', async ( {
page,
editor,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.getByRole( 'document', {
name: 'Block: Image',
} );
const blockLibrary = page.getByRole( 'region', {
name: 'Block Library',
} );
async function openMediaTab() {
await page
.getByRole( 'button', { name: 'Toggle block inserter' } )
.click();
await blockLibrary.getByRole( 'tab', { name: 'Media' } ).click();
await blockLibrary
.getByRole( 'tabpanel', { name: 'Media' } )
.getByRole( 'button', { name: 'Openverse' } )
.click();
}
await openMediaTab();
// Drag the first image from the media library into the image block.
await blockLibrary
.getByRole( 'listbox', { name: 'Media List' } )
.getByRole( 'option' )
.first()
.dragTo( imageBlock );
await expect( async () => {
const blocks = await editor.getBlocks();
expect( blocks ).toHaveLength( 1 );
const [
{
attributes: { url },
},
] = blocks;
expect(
await imageBlock.getByRole( 'img' ).getAttribute( 'src' )
).toBe( url );
expect(
new URL( url ).host,
'should be updated to the media library'
).toBe( new URL( page.url() ).host );
}, 'should update the image from the media inserter' ).toPass();
const [
{
attributes: { url: firstUrl },
},
] = await editor.getBlocks();
await openMediaTab();
// Drag the second image from the media library into the image block.
await blockLibrary
.getByRole( 'listbox', { name: 'Media List' } )
.getByRole( 'option' )
.nth( 1 )
.dragTo( imageBlock );
await expect( async () => {
const blocks = await editor.getBlocks();
expect( blocks ).toHaveLength( 1 );
const [
{
attributes: { url },
},
] = blocks;
expect( url ).not.toBe( firstUrl );
expect(
await imageBlock.getByRole( 'img' ).getAttribute( 'src' )
).toBe( url );
expect(
new URL( url ).host,
'should be updated to the media library'
).toBe( new URL( page.url() ).host );
}, 'should replace the original image with the second image' ).toPass();
} );
test( 'should allow dragging and dropping HTML to media placeholder', async ( {
page,
editor,
} ) => {
await editor.insertBlock( { name: 'core/image' } );
const imageBlock = page.getByRole( 'document', {
name: 'Block: Image',
} );
const html = `
<figure>
<img src="https://live.staticflickr.com/3894/14962688165_04759a8b03_b.jpg" alt="Cat">
<figcaption>"Cat" by tomhouslay is licensed under <a href="https://creativecommons.org/licenses/by-nc/2.0/?ref=openverse">CC BY-NC 2.0</a>.</figcaption>
</figure>
`;
await page.evaluate( ( _html ) => {
const dummy = document.createElement( 'div' );
dummy.style.width = '10px';
dummy.style.height = '10px';
dummy.style.zIndex = 99999;
dummy.style.position = 'fixed';
dummy.style.top = 0;
dummy.style.left = 0;
dummy.draggable = 'true';
dummy.addEventListener( 'dragstart', ( event ) => {
event.dataTransfer.setData( 'text/html', _html );
setTimeout( () => {
dummy.remove();
}, 0 );
} );
document.body.appendChild( dummy );
}, html );
await page.mouse.move( 0, 0 );
await page.mouse.down();
await imageBlock.hover();
await page.mouse.up();
const host = new URL( page.url() ).host;
await expect.poll( editor.getBlocks ).toMatchObject( [
{
name: 'core/image',
attributes: {
link: expect.stringContaining( host ),
url: expect.stringContaining( host ),
id: expect.any( Number ),
alt: 'Cat',
caption: `"Cat" by tomhouslay is licensed under <a href="https://creativecommons.org/licenses/by-nc/2.0/?ref=openverse">CC BY-NC 2.0</a>.`,
},
},
] );
const url = ( await editor.getBlocks() )[ 0 ].attributes.url;
await expect( imageBlock.getByRole( 'img' ) ).toHaveAttribute(
'src',
url
);
} );
test( 'should appear in the frontend published post content', async ( {
editor,
imageBlockUtils,
page,
} ) => {
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 imageInEditor = imageBlock.locator( 'role=img' );
await expect( imageInEditor ).toBeVisible();
await expect( imageInEditor ).toHaveAttribute(
'src',
new RegExp( filename )
);
const postId = await editor.publishPost();
await page.goto( `/?p=${ postId }` );
const figureDom = page.getByRole( 'figure' );
await expect( figureDom ).toBeVisible();
const imageDom = figureDom.locator( 'img' );
await expect( imageDom ).toBeVisible();
await expect( imageDom ).toHaveAttribute(
'src',
new RegExp( filename )
);
} );
} );
class ImageBlockUtils {
constructor( { page } ) {
/** @type {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 getImageBuffer( url ) {
const response = await this.page.request.get( url );
return await response.body();
}
async getHexString( element ) {
return element.evaluate( ( node ) => {
const canvas = document.createElement( 'canvas' );
canvas.width = node.width;
canvas.height = node.height;
const context = canvas.getContext( '2d' );
context.drawImage( node, 0, 0 );
const imageData = context.getImageData(
0,
0,
canvas.width,
canvas.height
);
const pixels = imageData.data;
let hexString = '';
for ( let i = 0; i < pixels.length; i += 4 ) {
if ( i !== 0 && i % ( canvas.width * 4 ) === 0 ) {
hexString += '\n';
}
const r = pixels[ i ].toString( 16 ).padStart( 2, '0' );
const g = pixels[ i + 1 ].toString( 16 ).padStart( 2, '0' );
const b = pixels[ i + 2 ].toString( 16 ).padStart( 2, '0' );
const a = pixels[ i + 3 ].toString( 16 ).padStart( 2, '0' );
hexString += '#' + r + g + b + a;
}
return hexString;
} );
}
}