๐Ÿ“ฆ payloadcms / payload

๐Ÿ“„ e2e.spec.ts ยท 2161 lines
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
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161import type { Page } from '@playwright/test'

import { expect, test } from '@playwright/test'
import { statSync } from 'fs'
import { openListColumns, toggleColumn } from 'helpers/e2e/columns/index.js'
import { openListFilters } from 'helpers/e2e/filters/index.js'
import { openDocDrawer } from 'helpers/e2e/toggleDocDrawer.js'
import path from 'path'
import { wait } from 'payload/shared'
import { fileURLToPath } from 'url'

import type { PayloadTestSDK } from '../helpers/sdk/index.js'
import type { Config } from './payload-types.js'

import {
  ensureCompilationIsDone,
  exactText,
  initPageConsoleErrorCatch,
  saveDocAndAssert,
} from '../helpers.js'
import { AdminUrlUtil } from '../helpers/adminUrlUtil.js'
import { assertToastErrors } from '../helpers/assertToastErrors.js'
import { initPayloadE2ENoConfig } from '../helpers/initPayloadE2ENoConfig.js'
import { reInitializeDB } from '../helpers/reInitializeDB.js'
import { RESTClient } from '../helpers/rest.js'
import { POLL_TOPASS_TIMEOUT, TEST_TIMEOUT_LONG } from '../playwright.config.js'
import {
  adminThumbnailFunctionSlug,
  adminThumbnailSizeSlug,
  adminThumbnailWithSearchQueries,
  adminUploadControlSlug,
  animatedTypeMedia,
  audioSlug,
  bulkUploadsSlug,
  constructorOptionsSlug,
  customFileNameMediaSlug,
  customUploadFieldSlug,
  fileMimeTypeSlug,
  focalOnlySlug,
  hideFileInputOnCreateSlug,
  imageSizesOnlySlug,
  listViewPreviewSlug,
  mediaSlug,
  mediaWithImageSizeAdminPropsSlug,
  mediaWithoutCacheTagsSlug,
  mediaWithoutDeleteAccessSlug,
  noFilesRequiredSlug,
  relationPreviewSlug,
  relationSlug,
  relationToNoFilesRequiredSlug,
  svgOnlySlug,
  threeDimensionalSlug,
  withMetadataSlug,
  withOnlyJPEGMetadataSlug,
  withoutEnlargeSlug,
  withoutMetadataSlug,
} from './shared.js'
import { startMockCorsServer } from './startMockCorsServer.js'
const filename = fileURLToPath(import.meta.url)
const dirname = path.dirname(filename)

/**
 * Regex matcher for date cache tags.
 *
 * @example it will match `?2022-01-01T00%3A00%3A00.000Z` (`?2022-01-01T00:00:00.000Z` encoded)
 */
const cacheTagPattern = /\?\d{4}-\d{2}-\d{2}T\d{2}%3A\d{2}%3A\d{2}\.\d{3}Z/

const { afterAll, beforeAll, beforeEach, describe } = test

let payload: PayloadTestSDK<Config>
let client: RESTClient
let serverURL: string
let mediaURL: AdminUrlUtil
let animatedTypeMediaURL: AdminUrlUtil
let audioURL: AdminUrlUtil
let relationURL: AdminUrlUtil
let adminUploadControlURL: AdminUrlUtil
let adminThumbnailSizeURL: AdminUrlUtil
let adminThumbnailFunctionURL: AdminUrlUtil
let adminThumbnailWithSearchQueriesURL: AdminUrlUtil
let listViewPreviewURL: AdminUrlUtil
let mediaWithoutCacheTagsSlugURL: AdminUrlUtil
let focalOnlyURL: AdminUrlUtil
let imageSizesOnlyURL: AdminUrlUtil
let withMetadataURL: AdminUrlUtil
let withoutMetadataURL: AdminUrlUtil
let withOnlyJPEGMetadataURL: AdminUrlUtil
let relationPreviewURL: AdminUrlUtil
let customFileNameURL: AdminUrlUtil
let uploadsOne: AdminUrlUtil
let uploadsTwo: AdminUrlUtil
let customUploadFieldURL: AdminUrlUtil
let hideFileInputOnCreateURL: AdminUrlUtil
let bestFitURL: AdminUrlUtil
let withoutEnlargementResizeOptionsURL: AdminUrlUtil
let threeDimensionalURL: AdminUrlUtil
let constructorOptionsURL: AdminUrlUtil
let consoleErrorsFromPage: string[] = []
let collectErrorsFromPage: () => boolean
let stopCollectingErrorsFromPage: () => boolean
let bulkUploadsURL: AdminUrlUtil
let fileMimeTypeURL: AdminUrlUtil
let svgOnlyURL: AdminUrlUtil
let mediaWithoutDeleteAccessURL: AdminUrlUtil
let mediaWithImageSizeAdminPropsURL: AdminUrlUtil
let noFilesRequiredURL: AdminUrlUtil
let relationToNoFilesRequiredURL: AdminUrlUtil

describe('Uploads', () => {
  let page: Page
  let mockCorsServer: ReturnType<typeof startMockCorsServer> | undefined

  beforeAll(async ({ browser }, testInfo) => {
    testInfo.setTimeout(TEST_TIMEOUT_LONG)
    ;({ payload, serverURL } = await initPayloadE2ENoConfig<Config>({ dirname }))

    mediaURL = new AdminUrlUtil(serverURL, mediaSlug)
    animatedTypeMediaURL = new AdminUrlUtil(serverURL, animatedTypeMedia)
    audioURL = new AdminUrlUtil(serverURL, audioSlug)
    relationURL = new AdminUrlUtil(serverURL, relationSlug)
    adminUploadControlURL = new AdminUrlUtil(serverURL, adminUploadControlSlug)
    adminThumbnailSizeURL = new AdminUrlUtil(serverURL, adminThumbnailSizeSlug)
    adminThumbnailFunctionURL = new AdminUrlUtil(serverURL, adminThumbnailFunctionSlug)
    adminThumbnailWithSearchQueriesURL = new AdminUrlUtil(
      serverURL,
      adminThumbnailWithSearchQueries,
    )
    listViewPreviewURL = new AdminUrlUtil(serverURL, listViewPreviewSlug)
    mediaWithoutCacheTagsSlugURL = new AdminUrlUtil(serverURL, mediaWithoutCacheTagsSlug)
    focalOnlyURL = new AdminUrlUtil(serverURL, focalOnlySlug)
    imageSizesOnlyURL = new AdminUrlUtil(serverURL, imageSizesOnlySlug)
    withMetadataURL = new AdminUrlUtil(serverURL, withMetadataSlug)
    withoutMetadataURL = new AdminUrlUtil(serverURL, withoutMetadataSlug)
    withOnlyJPEGMetadataURL = new AdminUrlUtil(serverURL, withOnlyJPEGMetadataSlug)
    relationPreviewURL = new AdminUrlUtil(serverURL, relationPreviewSlug)
    customFileNameURL = new AdminUrlUtil(serverURL, customFileNameMediaSlug)
    uploadsOne = new AdminUrlUtil(serverURL, 'uploads-1')
    uploadsTwo = new AdminUrlUtil(serverURL, 'uploads-2')
    customUploadFieldURL = new AdminUrlUtil(serverURL, customUploadFieldSlug)
    hideFileInputOnCreateURL = new AdminUrlUtil(serverURL, hideFileInputOnCreateSlug)
    bestFitURL = new AdminUrlUtil(serverURL, 'best-fit')
    withoutEnlargementResizeOptionsURL = new AdminUrlUtil(serverURL, withoutEnlargeSlug)
    threeDimensionalURL = new AdminUrlUtil(serverURL, threeDimensionalSlug)
    constructorOptionsURL = new AdminUrlUtil(serverURL, constructorOptionsSlug)
    bulkUploadsURL = new AdminUrlUtil(serverURL, bulkUploadsSlug)
    fileMimeTypeURL = new AdminUrlUtil(serverURL, fileMimeTypeSlug)
    svgOnlyURL = new AdminUrlUtil(serverURL, svgOnlySlug)
    mediaWithoutDeleteAccessURL = new AdminUrlUtil(serverURL, mediaWithoutDeleteAccessSlug)
    mediaWithImageSizeAdminPropsURL = new AdminUrlUtil(serverURL, mediaWithImageSizeAdminPropsSlug)
    noFilesRequiredURL = new AdminUrlUtil(serverURL, noFilesRequiredSlug)
    relationToNoFilesRequiredURL = new AdminUrlUtil(serverURL, relationToNoFilesRequiredSlug)

    const context = await browser.newContext()
    await context.grantPermissions(['clipboard-read', 'clipboard-write'])
    page = await context.newPage()

    const { consoleErrors, collectErrors, stopCollectingErrors } = initPageConsoleErrorCatch(page, {
      ignoreCORS: true,
    })

    consoleErrorsFromPage = consoleErrors
    collectErrorsFromPage = collectErrors
    stopCollectingErrorsFromPage = stopCollectingErrors

    await ensureCompilationIsDone({ page, serverURL })
  })

  beforeEach(async () => {
    await reInitializeDB({
      serverURL,
      snapshotKey: 'uploadsTest',
    })

    if (client) {
      await client.logout()
    }
    client = new RESTClient({ defaultSlug: 'users', serverURL })
    await client.login()

    await ensureCompilationIsDone({ page, serverURL })
  })

  afterAll(() => {
    if (mockCorsServer) {
      mockCorsServer.close()
    }
  })

  test('should show upload filename in upload collection list', async () => {
    await page.goto(mediaURL.list)
    const audioUpload = page.locator('tr.row-1 .cell-filename')
    await expect(audioUpload).toHaveText('audio.mp3')

    const imageUpload = page.locator('tr.row-2 .cell-filename')
    await expect(imageUpload).toHaveText('image.png')
  })

  test('should see upload filename in relation list', async () => {
    await page.goto(relationURL.list)
    const field = page.locator('.cell-image')

    await expect(field).toContainText('image.png')
  })

  test('should see upload versioned filename in relation list', async () => {
    await page.goto(relationURL.list)
    const field = page.locator('.cell-versionedImage')

    await expect(field).toContainText('image')
  })

  test('should update upload field after editing relationship in document drawer', async () => {
    const relationDoc = (
      await payload.find({
        collection: relationSlug,
        depth: 0,
        limit: 1,
        pagination: false,
      })
    ).docs[0]

    await page.goto(relationURL.edit(relationDoc!.id))

    const filename = page.locator('.upload-relationship-details__filename a').nth(0)
    await expect(filename).toContainText('image.png')

    await page.locator('.upload-relationship-details__edit').nth(0).click()
    await page.locator('.file-details__remove').click()

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    await saveDocAndAssert(page, '.doc-drawer button#action-save')

    await page.locator('.doc-drawer__header-close').click()

    await expect(filename).toContainText('test-image.png')
  })

  test('should copy the file url field to the clipboard', async () => {
    const mediaDoc = (
      await payload.find({
        collection: mediaSlug,
        depth: 0,
        limit: 1,
        pagination: false,
      })
    ).docs[0]

    await page.goto(mediaURL.edit(mediaDoc!.id))
    await page.locator('.copy-to-clipboard').click()
    const clipbaordContent = await page.evaluate(() => navigator.clipboard.readText())
    expect(clipbaordContent).toBe(mediaDoc?.url)
  })

  test('should create file upload', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './image.png'))

    const filename = page.locator('.file-field__filename')

    await expect(filename).toHaveValue('image.png')

    await saveDocAndAssert(page)
  })

  test('should remove remote URL button if pasteURL is false', async () => {
    // pasteURL option is set to false in the media collection
    await page.goto(mediaURL.create)

    const pasteURLButton = page.locator('.file-field__upload button', {
      hasText: 'Paste URL',
    })
    await expect(pasteURLButton).toBeHidden()
  })

  test('should properly create IOS file upload', async () => {
    await page.goto(mediaURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './ios-image.jpeg'))

    const filename = page.locator('.file-field__filename')

    await expect(filename).toHaveValue('ios-image.jpeg')

    await saveDocAndAssert(page)
  })

  test('should properly convert avif image to png', async () => {
    await page.goto(mediaURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './test-image-avif.avif'))
    const filename = page.locator('.file-field__filename')
    await expect(filename).toHaveValue('test-image-avif.avif')

    await saveDocAndAssert(page)

    const fileMetaSizeType = page.locator('.file-meta__size-type')
    await expect(fileMetaSizeType).toHaveText(/image\/png/)
  })

  test('should show proper mimetype for glb file', async () => {
    await page.goto(threeDimensionalURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './duck.glb'))
    const filename = page.locator('.file-field__filename')
    await expect(filename).toHaveValue('duck.glb')

    await saveDocAndAssert(page)

    const fileMetaSizeType = page.locator('.file-meta__size-type')
    await expect(fileMetaSizeType).toHaveText(/model\/gltf-binary/)
  })

  test('should show proper mimetype for svg+xml file', async () => {
    await page.goto(svgOnlyURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './svgWithXml.svg'))
    const filename = page.locator('.file-field__filename')
    await expect(filename).toHaveValue('svgWithXml.svg')

    await saveDocAndAssert(page)

    const fileMetaSizeType = page.locator('.file-meta__size-type')
    await expect(fileMetaSizeType).toHaveText(/image\/svg\+xml/)

    // ensure the svg loads
    const svgImage = page.locator('img[src*="svgWithXml"]')
    await expect(svgImage).toBeVisible()
  })

  test('should create animated file upload', async () => {
    await page.goto(animatedTypeMediaURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './animated.webp'))
    const animatedFilename = page.locator('.file-field__filename')

    await expect(animatedFilename).toHaveValue('animated.webp')

    await saveDocAndAssert(page)

    await page.goto(animatedTypeMediaURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './non-animated.webp'))
    const nonAnimatedFileName = page.locator('.file-field__filename')

    await expect(nonAnimatedFileName).toHaveValue('non-animated.webp')

    await saveDocAndAssert(page)
  })

  test('should show proper file names for resized animated file', async () => {
    await page.goto(animatedTypeMediaURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './animated.webp'))
    const animatedFilename = page.locator('.file-field__filename')

    await expect(animatedFilename).toHaveValue('animated.webp')

    await saveDocAndAssert(page)

    await page.locator('.file-field__previewSizes').click()

    const smallSquareFilename = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(1)
      .locator('.file-meta__url a')
    await expect(smallSquareFilename).toContainText(/480x480\.webp$/)
  })

  test('should show resized images', async () => {
    const pngDoc = (
      await payload.find({
        collection: mediaSlug,
        depth: 0,
        pagination: false,
        where: {
          mimeType: {
            equals: 'image/png',
          },
        },
      })
    ).docs[0]

    await page.goto(mediaURL.edit(pngDoc!.id))

    await page.locator('.file-field__previewSizes').click()

    const maintainedAspectRatioItem = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(1)
      .locator('.file-meta__size-type')
    await expect(maintainedAspectRatioItem).toContainText('1024x1024')

    const differentFormatFromMainImageMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(2)
      .locator('.file-meta__size-type')
    await expect(differentFormatFromMainImageMeta).toContainText('image/jpeg')

    const maintainedImageSizeMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(3)
      .locator('.file-meta__size-type')
    await expect(maintainedImageSizeMeta).toContainText('1600x1600')

    const maintainedImageSizeWithNewFormatMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(4)
      .locator('.file-meta__size-type')
    await expect(maintainedImageSizeWithNewFormatMeta).toContainText('1600x1600')
    await expect(maintainedImageSizeWithNewFormatMeta).toContainText('image/jpeg')

    const sameSizeMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(5)
      .locator('.file-meta__size-type')
    await expect(sameSizeMeta).toContainText('320x80')

    const tabletMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(6)
      .locator('.file-meta__size-type')
    await expect(tabletMeta).toContainText('640x480')

    const mobileMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(7)
      .locator('.file-meta__size-type')
    await expect(mobileMeta).toContainText('320x240')

    const iconMeta = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(8)
      .locator('.file-meta__size-type')
    await expect(iconMeta).toContainText('16x16')
  })

  test('should resize and show tiff images', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './test-image.tiff'))

    await expect(page.locator('.file-field__upload .thumbnail svg')).toBeVisible()

    await saveDocAndAssert(page)

    await expect(page.locator('.file-details img')).toBeVisible()
  })

  test('should have custom file name for image size', async () => {
    await page.goto(customFileNameURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './image.png'))

    await expect(page.locator('.file-field__upload .thumbnail img')).toBeVisible()

    await saveDocAndAssert(page)

    await expect(page.locator('.file-details img')).toBeVisible()

    await page.locator('.file-field__previewSizes').click()

    const renamedImageSizeFile = page
      .locator('.preview-sizes__list .preview-sizes__sizeOption')
      .nth(1)

    await expect(renamedImageSizeFile).toContainText('custom-500x500.png')
  })

  test('should show draft uploads in the relation list', async () => {
    await page.goto(relationURL.list)
    // from the list edit the first document
    await page.locator('.row-1 a').click()

    // edit the versioned image
    await page.locator('.field-type:nth-of-type(2) .icon--edit').click()

    // fill the title with 'draft'
    await page.locator('#field-title').fill('draft')

    await saveDocAndAssert(
      page,
      '.payload__modal-item .collection-edit--versions button#action-save-draft',
    )

    // close the drawer
    await page.locator('.doc-drawer__header-close').click()

    // remove the selected versioned image
    await page.locator('#field-versionedImage .icon--x').click()

    // choose from existing
    await openDocDrawer({ page, selector: '#field-versionedImage .upload__listToggler' })

    await expect(page.locator('.row-3 .cell-title')).toContainText('draft')
  })

  test('should upload edge case media when an image size contains an undefined height', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles(
      'input[type="file"]',
      path.resolve(dirname, './test-image-1500x735.jpeg'),
    )

    const filename = page.locator('.file-field__filename')

    await expect(filename).toHaveValue('test-image-1500x735.jpeg')

    await saveDocAndAssert(page)
  })

  describe('filterOptions', () => {
    test('should restrict mimetype based on filterOptions', async () => {
      const audioDoc = (
        await payload.find({
          collection: audioSlug,
          depth: 0,
          pagination: false,
        })
      ).docs[0]

      await page.goto(audioURL.edit(audioDoc!.id))

      // remove the selection and open the list drawer
      await wait(500) // flake workaround
      await page.locator('#field-audio .upload-relationship-details__remove').click()

      await openDocDrawer({ page, selector: '#field-audio .upload__listToggler' })

      const listDrawer = page.locator('[id^=list-drawer_1_]')
      await expect(listDrawer).toBeVisible()

      await openDocDrawer({
        page,
        selector: 'button.list-header__create-new-button.doc-drawer__toggler',
      })
      await expect(page.locator('[id^=doc-drawer_media_1_]')).toBeVisible()

      // upload an image and try to select it
      await page
        .locator('[id^=doc-drawer_media_1_] .file-field__upload input[type="file"]')
        .setInputFiles(path.resolve(dirname, './image.png'))
      await page.locator('[id^=doc-drawer_media_1_] button#action-save').click()
      await expect(page.locator('.payload-toast-container .toast-success')).toContainText(
        'successfully',
      )
      await page
        .locator('.payload-toast-container .toast-success .payload-toast-close-button')
        .click()

      // save the document and expect an error
      await page.locator('button#action-save').click()
      await assertToastErrors({
        page,
        errors: ['Audio'],
      })
    })

    test('should restrict uploads in drawer based on filterOptions', async () => {
      const audioDoc = (
        await payload.find({
          collection: audioSlug,
          depth: 0,
          pagination: false,
        })
      ).docs[0]

      await page.goto(audioURL.edit(audioDoc!.id))

      // remove the selection and open the list drawer
      await wait(500) // flake workaround
      await page.locator('#field-audio .upload-relationship-details__remove').click()

      await openDocDrawer({ page, selector: '.upload__listToggler' })

      const listDrawer = page.locator('[id^=list-drawer_1_]')
      await expect(listDrawer).toBeVisible()

      await expect(listDrawer.locator('tbody tr')).toHaveCount(1)
    })
  })

  test('should throw error when file is larger than the limit and abortOnLimit is true', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './2mb.jpg'))
    await expect(page.locator('.file-field__filename')).toHaveValue('2mb.jpg')

    await page.click('#action-save', { delay: 100 })
    await expect(page.locator('.payload-toast-container .toast-error')).toContainText(
      'File size limit has been reached',
    )
  })

  test('should render adminUploadControls', async () => {
    await page.goto(adminUploadControlURL.create)

    const loadFromFileButton = page.locator('#load-from-file-upload-button')
    const loadFromUrlButton = page.locator('#load-from-url-upload-button')
    await expect(loadFromFileButton).toBeVisible()
    await expect(loadFromUrlButton).toBeVisible()
  })

  test('should load a file using a file reference from custom controls', async () => {
    await page.goto(adminUploadControlURL.create)

    const loadFromFileButton = page.locator('#load-from-file-upload-button')
    await loadFromFileButton.click()
    await wait(1000)

    await page.locator('#action-save').click()
    await expect(page.locator('.payload-toast-container')).toContainText('successfully')
    await wait(1000)

    const mediaID = page.url().split('/').pop()
    const { doc: mediaDoc } = await client.findByID({
      id: mediaID as string,
      slug: adminUploadControlSlug,
      auth: true,
    })
    await expect
      .poll(() => mediaDoc.filename, { timeout: POLL_TOPASS_TIMEOUT })
      .toContain('universal-truth')
  })

  test('should load a file using a URL reference from custom controls', async () => {
    await page.goto(adminUploadControlURL.create)

    const loadFromUrlButton = page.locator('#load-from-url-upload-button')
    await loadFromUrlButton.click()
    await page.locator('#action-save').click()
    await expect(page.locator('.payload-toast-container')).toContainText('successfully')
    await wait(1000)

    const mediaID = page.url().split('/').pop()
    const { doc: mediaDoc } = await client.findByID({
      id: mediaID as string,
      slug: adminUploadControlSlug,
      auth: true,
    })
    await expect
      .poll(() => mediaDoc.filename, { timeout: POLL_TOPASS_TIMEOUT })
      .toContain('universal-truth')
  })

  test('should render adminThumbnail when using a function', async () => {
    await page.goto(adminThumbnailFunctionURL.list)

    // Ensure sure false or null shows generic file svg
    const genericUploadImage = page.locator('tr.row-1 .thumbnail img')
    await expect(genericUploadImage).toHaveAttribute(
      'src',
      /^https:\/\/raw\.githubusercontent\.com\/payloadcms\/website\/refs\/heads\/main\/public\/images\/universal-truth\.jpg(\?.*)?$/,
    )
  })

  test('should render adminThumbnail when using a custom thumbnail URL with additional queries', async () => {
    await page.goto(adminThumbnailWithSearchQueriesURL.list)

    const genericUploadImage = page.locator('tr.row-1 .thumbnail img')
    // Match the URL with the regex pattern
    const regexPattern = /\/_next\/image\?url=.*?&w=384&q=5/

    await expect(genericUploadImage).toHaveAttribute('src', regexPattern)
  })

  test('should render adminThumbnail without the additional cache tag', async () => {
    const imageDoc = (
      await payload.find({
        collection: mediaWithoutCacheTagsSlug,
        depth: 0,
        pagination: false,
        where: {
          mimeType: {
            equals: 'image/png',
          },
        },
      })
    ).docs[0]

    await page.goto(mediaWithoutCacheTagsSlugURL.edit(imageDoc!.id))

    const genericUploadImage = page.locator('.file-details .thumbnail img')
    await expect(genericUploadImage).not.toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail without the additional cache tag in upload collection list', async () => {
    await page.goto(mediaWithoutCacheTagsSlugURL.list)

    const genericUploadImage = page.locator('tr.row-1 .thumbnail img')
    await expect(genericUploadImage).not.toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail with the cache tag by default', async () => {
    const imageDoc = (
      await payload.find({
        collection: adminThumbnailFunctionSlug,
        depth: 0,
        pagination: false,
        where: {
          mimeType: {
            equals: 'image/png',
          },
        },
      })
    ).docs[0]

    await page.goto(adminThumbnailFunctionURL.edit(imageDoc!.id))

    const genericUploadImage = page.locator('.file-details .thumbnail img')
    await expect(genericUploadImage).toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail with the cache tag in upload collection list by default', async () => {
    await page.goto(adminThumbnailFunctionURL.list)

    const genericUploadImage = page.locator('tr.row-1 .thumbnail img')
    await expect(genericUploadImage).toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail with the cache tag in relation list by default', async () => {
    await page.goto(relationPreviewURL.list)

    const relationPreview1 = page.locator('.cell-imageWithPreview1 img')
    await expect(relationPreview1).toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail with the cache tag in upload field by default', async () => {
    const relationPreviewDoc = (
      await payload.find({
        collection: relationPreviewSlug,
        depth: 0,
        limit: 1,
        pagination: false,
      })
    ).docs[0]

    await page.goto(relationPreviewURL.edit(relationPreviewDoc!.id))

    const relationPreview1 = page.locator('#field-imageWithPreview1 .thumbnail img')
    await expect(relationPreview1).toHaveAttribute('src', cacheTagPattern)
  })

  test('should render adminThumbnail when using a specific size', async () => {
    await page.goto(adminThumbnailSizeURL.list)

    // Ensure sure false or null shows generic file svg
    const genericUploadImage = page.locator('tr.row-1 .thumbnail img')
    await expect(genericUploadImage).toBeVisible()

    // Ensure adminThumbnail fn returns correct value based on audio/mp3 mime
    const audioUploadImage = page.locator('tr.row-2 .thumbnail svg')
    await expect(audioUploadImage).toBeVisible()
  })

  test('should detect correct mimeType', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './image.png'))
    await saveDocAndAssert(page)

    const imageID = page.url().split('/').pop()

    const { doc: uploadedImage } = await client.findByID({
      id: imageID as number | string,
      slug: mediaSlug,
      auth: true,
    })

    expect(uploadedImage.mimeType).toEqual('image/png')
  })

  test('should upload image with metadata', async () => {
    await page.goto(withMetadataURL.create)

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    await saveDocAndAssert(page)

    const mediaID = page.url().split('/').pop()

    const { doc: mediaDoc } = await client.findByID({
      id: mediaID as number | string,
      slug: withMetadataSlug,
      auth: true,
    })

    const acceptableFileSizes = [9431, 9435]

    await expect
      .poll(() => acceptableFileSizes.includes(mediaDoc.sizes.sizeOne.filesize))
      .toBe(true)
  })

  test('should upload image without metadata', async () => {
    await page.goto(withoutMetadataURL.create)

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    await saveDocAndAssert(page)

    const mediaID = page.url().split('/').pop()

    const { doc: mediaDoc } = await client.findByID({
      id: mediaID as number | string,
      slug: withoutMetadataSlug,
      auth: true,
    })

    const acceptableFileSizes = [2424, 2445]

    await expect
      .poll(() => acceptableFileSizes.includes(mediaDoc.sizes.sizeTwo.filesize))
      .toBe(true)
  })

  test('should only upload image with metadata if jpeg mimetype', async () => {
    await page.goto(withOnlyJPEGMetadataURL.create)

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    await saveDocAndAssert(page)

    const jpegMediaID = page.url().split('/').pop()

    const { doc: jpegMediaDoc } = await client.findByID({
      id: jpegMediaID as number | string,
      slug: withOnlyJPEGMetadataSlug,
      auth: true,
    })

    const acceptableFileSizesForJPEG = [9554, 9575]

    // without metadata appended, the jpeg image filesize would be 2424
    await expect
      .poll(() => acceptableFileSizesForJPEG.includes(jpegMediaDoc.sizes.sizeThree.filesize))
      .toBe(true)

    await page.goto(withOnlyJPEGMetadataURL.create)

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'animated.webp'))
    await saveDocAndAssert(page)

    const webpMediaID = page.url().split('/').pop()

    const { doc: webpMediaDoc } = await client.findByID({
      id: webpMediaID as number | string,
      slug: withOnlyJPEGMetadataSlug,
      auth: true,
    })

    // With metadata, the animated image filesize would be 218762
    await expect.poll(() => webpMediaDoc.sizes.sizeThree.filesize).toBe(211638)
  })

  test('should show custom upload component', async () => {
    await page.goto(customUploadFieldURL.create)

    const serverText = page.locator(
      '.collection-edit--custom-upload-field .document-fields__edit h2',
    )
    await expect(serverText).toHaveText('This text was rendered on the server')

    const clientText = page.locator(
      '.collection-edit--custom-upload-field .document-fields__edit h3',
    )
    await expect(clientText).toHaveText('This text was rendered on the client')
  })

  test('should show original image url on a single upload card for an upload with adminThumbnail defined', async () => {
    await page.goto(uploadsOne.create)

    const singleThumbnailButton = page.locator('#field-singleThumbnailUpload button', {
      hasText: exactText('Create New'),
    })

    await singleThumbnailButton.click()

    const singleThumbnailModal = page.locator('[id^="doc-drawer_admin-thumbnail-size"]')
    await expect(singleThumbnailModal).toBeVisible()

    await page.setInputFiles(
      '[id^="doc-drawer_admin-thumbnail-size"] input[type="file"]',
      path.resolve(dirname, './test-image.png'),
    )
    const filename = page.locator('[id^="doc-drawer_admin-thumbnail-size"] .file-field__filename')
    await expect(filename).toHaveValue('test-image.png')

    await expect(page.locator('[id^="doc-drawer_admin-thumbnail-size"] #action-save')).toBeVisible()

    await page.locator('[id^="doc-drawer_admin-thumbnail-size"] #action-save').click()

    await expect(page.locator('.payload-toast-container')).toContainText('successfully')

    const href = await page.locator('#field-singleThumbnailUpload a').getAttribute('href')

    // Ensure the URL ends correctly
    await expect
      .poll(() => href)
      .toMatch(/\/api\/admin-thumbnail-size\/file\/test-image(-\d+)?\.png$/i)

    // Ensure no "-100x100" or any similar suffix
    await expect.poll(() => !/-\d+x\d+\.png$/.test(href!)).toBe(true)
  })

  test('should show original image url on a hasMany upload card for an upload with adminThumbnail defined', async () => {
    await page.goto(uploadsOne.create)

    const hasManyThumbnailButton = page.locator('#field-hasManyThumbnailUpload button', {
      hasText: exactText('Create New'),
    })
    await hasManyThumbnailButton.click()

    const hasManyThumbnailModal = page.locator('#hasManyThumbnailUpload-bulk-upload-drawer-slug-1')
    await expect(hasManyThumbnailModal).toBeVisible()

    await hasManyThumbnailModal
      .locator('.dropzone input[type="file"]')
      .setInputFiles([path.resolve(dirname, './test-image.png')])

    const saveButton = hasManyThumbnailModal.locator(
      '.bulk-upload--actions-bar__saveButtons button',
    )
    await saveButton.click()

    await expect(
      page.locator('#field-hasManyThumbnailUpload .upload--has-many__dragItem'),
    ).toBeVisible()
    const itemCount = await page
      .locator('#field-hasManyThumbnailUpload .upload--has-many__dragItem')
      .count()
    await expect.poll(() => itemCount).toBe(1)

    await expect(
      page.locator('#field-hasManyThumbnailUpload .upload--has-many__dragItem a'),
    ).toBeVisible()
    const href = await page
      .locator('#field-hasManyThumbnailUpload .upload--has-many__dragItem a')
      .getAttribute('href')

    expect(href).toMatch(/\/api\/admin-thumbnail-size\/file\/test-image(-\d+)?\.png$/i)
    expect(href).not.toMatch(/-\d+x\d+\.png$/)
  })

  test('should show preview button if image sizes are defined but crop and focal point are not', async () => {
    await page.goto(imageSizesOnlyURL.create)

    const fileChooserPromise = page.waitForEvent('filechooser')
    await page.getByText('Select a file').click()
    const fileChooser = await fileChooserPromise
    await wait(1000)
    await fileChooser.setFiles(path.join(dirname, 'test-image.jpg'))

    await page.waitForSelector('button#action-save')
    await page.locator('button#action-save').click()
    await expect(page.locator('.payload-toast-container')).toContainText('successfully')
    await wait(1000) // Wait for the save

    await expect(page.locator('.file-field__previewSizes')).toBeVisible()
  })

  describe('bulk uploads', () => {
    test('should bulk upload multiple files', async () => {
      // Navigate to the upload creation page
      await page.goto(uploadsOne.create)

      // Upload single file
      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files at once
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])

      await bulkUploadModal
        .locator('.bulk-upload--file-manager .render-fields #field-prefix')
        .fill('prefix-one')

      const nextImageChevronButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(2)',
      )
      await nextImageChevronButton.click()

      await bulkUploadModal
        .locator('.bulk-upload--file-manager .render-fields #field-prefix')
        .fill('prefix-two')

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      const items = page.locator('#field-hasManyUpload .upload--has-many__dragItem')
      await expect(items).toHaveCount(2)
      await expect(items.nth(0)).toBeVisible()
      await expect(items.nth(1)).toBeVisible()

      await saveDocAndAssert(page)
    })

    test('should bulk upload non-image files without page errors', async () => {
      // Enable collection ONLY for this test
      collectErrorsFromPage()

      // Navigate to the upload creation page
      await page.goto(uploadsOne.create)

      // Upload single file
      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([path.resolve(dirname, './test-pdf.pdf')])

      await bulkUploadModal
        .locator('.bulk-upload--file-manager .render-fields #field-prefix')
        .fill('prefix-one')
      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      const items = page.locator('#field-hasManyUpload .upload--has-many__dragItem')
      await expect(items).toHaveCount(1)
      await expect(items.nth(0)).toBeVisible()

      await saveDocAndAssert(page)

      // Assert no console errors occurred for this test only
      await expect.poll(() => consoleErrorsFromPage).toEqual([])

      // Reset global behavior for other tests
      stopCollectingErrorsFromPage()
    })

    test('should apply field value to all bulk upload files after edit many', async () => {
      await page.goto(uploadsOne.create)

      // Upload single file
      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )

      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })

      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files at once
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])

      await bulkUploadModal.locator('.edit-many-bulk-uploads__toggle').click()
      const editManyBulkUploadModal = page.locator('#edit-uploads-2-bulk-uploads')
      await expect(editManyBulkUploadModal).toBeVisible()

      await editManyBulkUploadModal
        .locator('.edit-many-bulk-uploads__form .react-select')
        .click({ delay: 100 })
      const options = editManyBulkUploadModal.locator('.rs__option')

      await options.locator('text=Prefix').click()

      await editManyBulkUploadModal.locator('#field-prefix').fill('some prefix')

      await editManyBulkUploadModal.locator('.edit-many-bulk-uploads__sidebar-wrap button').click()
      await bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button').click()

      const items = page.locator('#field-hasManyUpload .upload--has-many__dragItem')
      await expect(items).toHaveCount(2)
      await expect(items.nth(0)).toBeVisible()
      await expect(items.nth(1)).toBeVisible()

      await saveDocAndAssert(page)
    })

    test('should remove validation errors from bulk upload files after correction in edit many drawer', async () => {
      // Navigate to the upload creation page
      await page.goto(uploadsOne.create)

      // Upload single file
      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files at once
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()
      await expect(page.locator('.payload-toast-container')).toContainText('Failed to save 2 files')

      const errorCount = bulkUploadModal.locator('.file-selections .error-pill__count').first()
      await expect(errorCount).toHaveText('2')

      await bulkUploadModal.locator('.edit-many-bulk-uploads__toggle').click()
      const editManyBulkUploadModal = page.locator('#edit-uploads-2-bulk-uploads')
      await expect(editManyBulkUploadModal).toBeVisible()

      const fieldSelector = editManyBulkUploadModal.locator(
        '.edit-many-bulk-uploads__form .react-select',
      )
      await fieldSelector.click({ delay: 100 })
      const options = editManyBulkUploadModal.locator('.rs__option')
      // Select an option
      await options.locator('text=Prefix').click()

      await editManyBulkUploadModal.locator('#field-prefix').fill('some prefix')

      await editManyBulkUploadModal.locator('.edit-many-bulk-uploads__sidebar-wrap button').click()

      await saveButton.click()
      await expect(page.locator('.payload-toast-container')).toContainText(
        'Successfully saved 2 files',
      )

      await saveDocAndAssert(page)
    })

    test('should show validation error when bulk uploading files and then soft removing one of the files', async () => {
      // Navigate to the upload creation page
      await page.goto(uploadsOne.create)

      // Upload single file
      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files at once
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])

      await bulkUploadModal.locator('.edit-many-bulk-uploads__toggle').click()
      const editManyBulkUploadModal = page.locator('#edit-uploads-2-bulk-uploads')
      await expect(editManyBulkUploadModal).toBeVisible()

      const fieldSelector = editManyBulkUploadModal.locator(
        '.edit-many-bulk-uploads__form .react-select',
      )
      await fieldSelector.click({ delay: 100 })
      const options = editManyBulkUploadModal.locator('.rs__option')
      // Select an option
      await options.locator('text=Prefix').click()

      await editManyBulkUploadModal.locator('#field-prefix').fill('some prefix')

      await editManyBulkUploadModal.locator('.edit-many-bulk-uploads__sidebar-wrap button').click()

      await bulkUploadModal.locator('.file-field__upload .file-field__remove').click()

      const chevronRight = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(2)',
      )

      await chevronRight.click()

      await expect(
        bulkUploadModal
          .locator('.file-selections .file-selections__fileRow .file-selections__fileName')
          .first(),
      ).toContainText('No file')

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      const errorCount = bulkUploadModal.locator('.file-selections .error-pill__count').first()
      await expect(errorCount).toHaveText('1')
    })

    test('should preserve state when adding additional files to an existing bulk upload', async () => {
      await page.goto(uploadsTwo.list)
      await page.locator('.list-header__title-actions button', { hasText: 'Bulk Upload' }).click()

      await page.setInputFiles('.dropzone input[type="file"]', path.resolve(dirname, './image.png'))

      await page.locator('#field-prefix').fill('should-preserve')

      // add another file
      await page
        .locator('.file-selections__header__actions button', { hasText: 'Add File' })
        .click()
      await page.setInputFiles('.dropzone input[type="file"]', path.resolve(dirname, './small.png'))

      const originalFileRow = page
        .locator('.file-selections__filesContainer .file-selections__fileRowContainer')
        .nth(1)

      // ensure the original file thumbnail is visible (not using default placeholder svg)
      await expect(originalFileRow.locator('.thumbnail img')).toBeVisible()

      // navigate to the first file added
      await originalFileRow.locator('button.file-selections__fileRow').click()

      // ensure the prefix field is still filled with the original value
      await expect(page.locator('#field-prefix')).toHaveValue('should-preserve')
    })

    test('should not redirect to created relationship document inside the bulk upload drawer', async () => {
      await page.goto(bulkUploadsURL.list)
      await page.locator('.list-header__title-actions button', { hasText: 'Bulk Upload' }).click()
      await page.setInputFiles('.dropzone input[type="file"]', path.resolve(dirname, './image.png'))

      await page.locator('#field-title').fill('Upload title 1')
      const bulkUploadForm = page.locator('.bulk-upload--file-manager')
      const relationshipField = bulkUploadForm.locator('#field-relationship')
      await relationshipField.locator('.relationship-add-new__add-button').click()

      const collectionForm = page.locator('.collection-edit')
      await collectionForm.locator('#field-title').fill('Related Document Title')
      await saveDocAndAssert(page)
      await collectionForm.locator('.doc-drawer__header-close').click()

      await expect(bulkUploadForm.locator('.relationship--single-value__text')).toHaveText(
        'Related Document Title',
      )
    })

    test('should reset state once all files are saved successfully from field bulk upload', async () => {
      await page.goto(uploadsOne.create)
      const fieldBulkUploadButton = page.locator('#field-hasManyThumbnailUpload button', {
        hasText: exactText('Create New'),
      })
      await fieldBulkUploadButton.click()
      const fieldBulkUploadDrawer = page.locator(
        '#hasManyThumbnailUpload-bulk-upload-drawer-slug-1',
      )
      await expect(fieldBulkUploadDrawer).toBeVisible()
      await fieldBulkUploadDrawer
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])
      await fieldBulkUploadDrawer
        .locator('.bulk-upload--actions-bar button', { hasText: 'Save' })
        .click()
      await expect(fieldBulkUploadDrawer).toBeHidden()
      await fieldBulkUploadButton.click()

      // should show add files dropzone view
      await expect(fieldBulkUploadDrawer.locator('.bulk-upload--add-files')).toBeVisible()
    })

    test('should show error when bulk uploading files with missing filenames and allow retry after fixing', async () => {
      await page.goto(uploadsOne.create)

      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
        ])

      await bulkUploadModal
        .locator('.bulk-upload--file-manager .render-fields #field-prefix')
        .fill('prefix-one')

      // Clear the filename from the first file
      await bulkUploadModal.locator('.file-field__filename').clear()

      const nextImageChevronButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(2)',
      )
      await nextImageChevronButton.click()

      await bulkUploadModal
        .locator('.bulk-upload--file-manager .render-fields #field-prefix')
        .fill('prefix-two')

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      // Should show error message for failed files
      await expect(page.locator('.payload-toast-container')).toContainText('Failed to save 1 files')
      await expect(page.locator('.payload-toast-container')).toContainText(
        'Successfully saved 1 files',
      )

      const errorCount = bulkUploadModal.locator('.file-selections .error-pill__count').first()
      await expect(errorCount).toHaveText('1')

      await expect(bulkUploadModal).toBeVisible()

      // Navigate back to first file to fix it
      const prevImageChevronButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(1)',
      )
      await prevImageChevronButton.click()

      // Should show "A file name is required" error message
      await expect(bulkUploadModal.locator('.field-error')).toContainText('A file name is required')

      // Filename field should be empty (as we cleared it)
      await expect(bulkUploadModal.locator('.file-field__filename')).toHaveValue('')

      // Add the filename back
      await bulkUploadModal.locator('.file-field__filename').fill('fixed-filename.png')

      await saveButton.click()

      await expect(page.locator('.payload-toast-container')).toContainText(
        'Successfully saved 1 files',
      )

      await expect(bulkUploadModal).toBeHidden()

      const items = page.locator('#field-hasManyUpload .upload--has-many__dragItem')
      await expect(items).toHaveCount(2)

      await saveDocAndAssert(page)
    })

    test('should show correct error count when bulk uploading files with validation errors', async () => {
      await page.goto(uploadsOne.create)

      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files - omit required field to trigger validation error
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
          path.resolve(dirname, './small.png'),
        ])

      // Do not fill in the required 'prefix' field for any of the uploads
      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      // Should show error message for all failed files
      await expect(page.locator('.payload-toast-container')).toContainText('Failed to save 3 files')

      // Check that each file has exactly 1 error (the missing required field)
      const errorCounts = await bulkUploadModal
        .locator('.file-selections .file-selections__fileRow .error-pill__count')
        .allTextContents()

      // All 3 files should have error count of 1
      expect(errorCounts).toEqual(['1', '1', '1'])
    })

    test('should maintain correct error counts when cycling through forms after submit with errors', async () => {
      await page.goto(uploadsOne.create)

      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Upload 3 files
      await bulkUploadModal
        .locator('.dropzone input[type="file"]')
        .setInputFiles([
          path.resolve(dirname, './image.png'),
          path.resolve(dirname, './test-image.png'),
          path.resolve(dirname, './small.png'),
        ])

      // Form 1: Fill prefix but remove file (should have 1 error: missing file)
      await bulkUploadModal.locator('#field-prefix').fill('prefix-one')
      await bulkUploadModal.locator('.file-field__upload .file-field__remove').click()

      // Form 2: Omit prefix and remove file (should have 2 errors: missing file + missing prefix)
      const nextButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(2)',
      )
      await nextButton.click()
      await bulkUploadModal.locator('.file-field__upload .file-field__remove').click()

      // Form 3: Fill prefix and keep file (should have 0 errors - will succeed)
      await nextButton.click()
      await bulkUploadModal.locator('#field-prefix').fill('prefix-three')

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      // Should show mixed results: 1 successful, 2 failed
      await expect(page.locator('.payload-toast-container .toast-success')).toContainText(
        'Successfully saved 1 files',
      )
      await expect(
        page.locator('.payload-toast-container .toast-error:has-text("Failed to save 2 files")'),
      ).toBeVisible()

      // After submission, the successful form (form 3) is removed from sidebar
      // Only the 2 failed forms remain in the sidebar
      const fileSelections = bulkUploadModal.locator('.file-selections__filesContainer')

      // Wait for the successful form to be removed and only 2 forms to remain
      const remainingRows = fileSelections.locator('button.file-selections__fileRow')
      await expect(remainingRows).toHaveCount(2, { timeout: 5000 })

      // The remaining forms are form 1 (index 0) and form 2 (index 1)
      const form1Row = remainingRows.nth(0)
      const form2Row = remainingRows.nth(1)

      // Verify initial error counts in sidebar (re-query each time to avoid stale elements)
      await expect(form1Row.locator('.error-pill__count')).toHaveText('1') // missing file
      await expect(form2Row.locator('.error-pill__count')).toHaveText('2') // missing file + missing prefix

      // Click on form 1 and verify count remains stable
      await form1Row.click()
      await expect(form1Row.locator('.error-pill__count')).toHaveText('1')

      // Click on form 2 and verify count remains stable
      await form2Row.click()
      await expect(form2Row.locator('.error-pill__count')).toHaveText('2')

      // Cycle through again to ensure counts remain stable
      await form1Row.click()
      await expect(form1Row.locator('.error-pill__count')).toHaveText('1')

      await form2Row.click()
      await expect(form2Row.locator('.error-pill__count')).toHaveText('2')

      await form1Row.click()
      await expect(form1Row.locator('.error-pill__count')).toHaveText('1')
    })

    test('should show correct error count when bulk uploading files that exceed size limit', async () => {
      await page.goto(uploadsOne.create)

      await page.setInputFiles(
        '.file-field input[type="file"]',
        path.resolve(dirname, './image.png'),
      )
      const filename = page.locator('.file-field__filename')
      await expect(filename).toHaveValue('image.png')

      const bulkUploadButton = page.locator('#field-hasManyUpload button', {
        hasText: exactText('Create New'),
      })
      await bulkUploadButton.click()

      const bulkUploadModal = page.locator('#hasManyUpload-bulk-upload-drawer-slug-1')
      await expect(bulkUploadModal).toBeVisible()

      // Bulk upload multiple files including one that exceeds the 2MB limit
      await bulkUploadModal.locator('.dropzone input[type="file"]').setInputFiles([
        path.resolve(dirname, './image.png'),
        path.resolve(dirname, './2mb.jpg'), // This file exceeds the 2MB limit
        path.resolve(dirname, './small.png'),
      ])

      // Fill in the required prefix field for all uploads
      await bulkUploadModal.locator('#field-prefix').fill('test-prefix')

      // Navigate to second file
      const nextButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(2)',
      )
      await nextButton.click()
      await bulkUploadModal.locator('#field-prefix').fill('test-prefix')

      // Navigate to third file
      await nextButton.click()
      await bulkUploadModal.locator('#field-prefix').fill('test-prefix')

      const saveButton = bulkUploadModal.locator('.bulk-upload--actions-bar__saveButtons button')
      await saveButton.click()

      // Should show mixed success/failure messages
      await expect(page.locator('.payload-toast-container .toast-success')).toContainText(
        'Successfully saved 2 files',
      )
      await expect(
        page.locator('.payload-toast-container .toast-error:has-text("Failed to save 1 files")'),
      ).toBeVisible()

      // The file that exceeded the size limit should have exactly 1 error
      // Navigate back to check the second file (2mb.jpg)
      const prevButton = bulkUploadModal.locator(
        '.bulk-upload--actions-bar__controls button:nth-of-type(1)',
      )
      await prevButton.click()

      const errorCount = bulkUploadModal.locator('.file-selections .error-pill__count').first()
      await expect(errorCount).toHaveText('1')

      // Verify the error message indicates file size limit
      await expect(
        page.locator('.payload-toast-container .toast-error:has-text("File size limit")'),
      ).toBeVisible()
    })
  })

  describe('remote url fetching', () => {
    beforeAll(() => {
      mockCorsServer = startMockCorsServer()
    })

    afterAll(() => {
      if (mockCorsServer) {
        mockCorsServer.close()
      }
    })

    test('should fetch remote URL server-side if pasteURL.allowList is defined', async () => {
      // Navigate to the upload creation page
      await page.goto(uploadsOne.create)

      // Click the "Paste URL" button
      const pasteURLButton = page.locator('.file-field__upload button', { hasText: 'Paste URL' })
      await pasteURLButton.click()

      // Input the remote URL
      const remoteImage = 'http://localhost:4000/mock-cors-image'
      const inputField = page.locator('.file-field__upload .file-field__remote-file')
      await inputField.fill(remoteImage)

      // Intercept the server-side fetch to the paste-url endpoint
      const encodedImageURL = encodeURIComponent(remoteImage)
      const pasteUrlEndpoint = `/api/uploads-1/paste-url?src=${encodedImageURL}`
      const serverSideFetchPromise = page.waitForResponse(
        (response) => response.url().includes(pasteUrlEndpoint) && response.status() === 200,
        { timeout: POLL_TOPASS_TIMEOUT },
      )

      // Click the "Add File" button
      const addFileButton = page.locator('.file-field__add-file')
      await addFileButton.click()

      // Wait for the server-side fetch to complete
      const serverSideFetch = await serverSideFetchPromise
      // Assert that the server-side fetch completed successfully
      await serverSideFetch.text()

      // Wait for the filename field to be updated
      const filenameInput = page.locator('.file-field .file-field__filename')
      await expect(filenameInput).toHaveValue('mock-cors-image', { timeout: 500 })

      // Save and assert the document
      await saveDocAndAssert(page)

      // Validate the uploaded image
      const imageDetails = page.locator('.file-field .file-details img')
      await expect(imageDetails).toHaveAttribute('src', /mock-cors-image/, { timeout: 500 })
    })

    test('should fail to fetch remote URL server-side if the pasteURL.allowList domains do not match', async () => {
      // Navigate to the upload creation page
      await page.goto(uploadsTwo.create)

      // Click the "Paste URL" button
      const pasteURLButton = page.locator('.file-field__upload button', { hasText: 'Paste URL' })
      await pasteURLButton.click()

      // Input the remote URL
      const remoteImage = 'http://localhost:4000/mock-cors-image'
      const inputField = page.locator('.file-field__upload .file-field__remote-file')
      await inputField.fill(remoteImage)

      // Click the "Add File" button
      const addFileButton = page.locator('.file-field__add-file')
      await addFileButton.click()

      // Verify the toast error appears with the correct message
      await expect(page.locator('.payload-toast-container .toast-error')).toContainText(
        'The provided URL is not allowed.',
      )
    })
  })

  describe('image manipulation', () => {
    test('should crop image correctly', async () => {
      const positions = {
        'bottom-right': {
          dragX: 800,
          dragY: 800,
          focalX: 75,
          focalY: 75,
        },
        'top-left': {
          dragX: 0,
          dragY: 0,
          focalX: 25,
          focalY: 25,
        },
      }
      const createFocalCrop = async (page: Page, position: 'bottom-right' | 'top-left') => {
        const { dragX, dragY, focalX, focalY } = positions[position]
        await page.goto(mediaURL.create)

        await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))

        await page.locator('.file-field__edit').click()

        // set crop
        await page.locator('.edit-upload__input input[name="Width (px)"]').fill('400')
        await page.locator('.edit-upload__input input[name="Height (px)"]').fill('400')
        // set focal point
        await page.locator('.edit-upload__input input[name="X %"]').fill('25') // init left focal point
        await page.locator('.edit-upload__input input[name="Y %"]').fill('25') // init top focal point

        // hover the crop selection, position mouse outside of focal point hitbox
        await page.locator('.ReactCrop__crop-selection').hover({ position: { x: 100, y: 100 } })
        await page.mouse.down() // start drag
        await page.mouse.move(dragX, dragY) // drag selection to the lower right corner
        await page.mouse.up() // release drag

        // focal point should reset to center
        await expect(page.locator('.edit-upload__input input[name="X %"]')).toHaveValue(`${focalX}`)
        await expect(page.locator('.edit-upload__input input[name="Y %"]')).toHaveValue(`${focalY}`)

        // apply crop
        await page.locator('button:has-text("Apply Changes")').click()
        await saveDocAndAssert(page)
      }

      await createFocalCrop(page, 'bottom-right') // green square
      const greenSquareMediaID = page.url().split('/').pop() // get the ID of the doc
      await createFocalCrop(page, 'top-left') // red square
      const redSquareMediaID = page.url().split('/').pop() // get the ID of the doc

      const { doc: greenDoc } = await client.findByID({
        id: greenSquareMediaID as number | string,
        slug: mediaSlug,
        auth: true,
      })

      const { doc: redDoc } = await client.findByID({
        id: redSquareMediaID as number | string,
        slug: mediaSlug,
        auth: true,
      })

      // green and red squares should have different sizes (colors make the difference)
      expect(greenDoc.filesize).toEqual(1205)
      expect(redDoc.filesize).toEqual(1207)
    })

    test('should update image alignment based on focal point', async () => {
      const updateFocalPosition = async (page: Page) => {
        await page.goto(focalOnlyURL.create)
        await page.setInputFiles('input[type="file"]', path.join(dirname, 'horizontal-squares.jpg'))

        await page.locator('.file-field__edit').click()

        // set focal point
        await page.locator('.edit-upload__input input[name="X %"]').fill('12') // left focal point
        await page.locator('.edit-upload__input input[name="Y %"]').fill('50') // top focal point

        // apply focal point
        await page.locator('button:has-text("Apply Changes")').click()
        await saveDocAndAssert(page)
      }

      await updateFocalPosition(page) // red square
      const redSquareMediaID = page.url().split('/').pop() // get the ID of the doc

      const { doc: redDoc } = await client.findByID({
        id: redSquareMediaID as number | string,
        slug: focalOnlySlug,
        auth: true,
      })

      // without focal point update this generated size was equal to 1736
      await expect.poll(() => redDoc.sizes.focalTest.filesize).toBe(1586)
    })

    test('should resize image after crop if resizeOptions defined', async () => {
      await page.goto(animatedTypeMediaURL.create)

      await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))

      await page.locator('.file-field__edit').click()

      // set crop
      await page.locator('.edit-upload__input input[name="Width (px)"]').fill('400')
      await page.locator('.edit-upload__input input[name="Height (px)"]').fill('800')
      // set focal point
      await page.locator('.edit-upload__input input[name="X %"]').fill('75') // init left focal point
      await page.locator('.edit-upload__input input[name="Y %"]').fill('50') // init top focal point

      await page.locator('button:has-text("Apply Changes")').click()
      await saveDocAndAssert(page)

      const resizeOptionMedia = page.locator('.file-meta .file-meta__size-type')
      await expect(resizeOptionMedia).toContainText('200x200')
    })

    test('should allow incrementing crop dimensions back to original maximum size', async () => {
      await page.goto(mediaURL.create)

      await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))

      await page.locator('.file-field__edit').click()

      const widthInput = page.locator('.edit-upload__input input[name="Width (px)"]')
      const heightInput = page.locator('.edit-upload__input input[name="Height (px)"]')

      await expect(widthInput).toHaveValue('800')
      await expect(heightInput).toHaveValue('800')

      await widthInput.fill('799')
      await expect(widthInput).toHaveValue('799')

      // Increment back to original using arrow up
      await widthInput.press('ArrowUp')
      await expect(widthInput).toHaveValue('800')

      await heightInput.fill('799')
      await expect(heightInput).toHaveValue('799')

      // Increment back to original using arrow up
      await heightInput.press('ArrowUp')
      await expect(heightInput).toHaveValue('800')
    })
  })

  test('should see upload previews in relation list if allowed in config', async () => {
    await page.goto(relationPreviewURL.list)

    // Show all columns with relations
    await toggleColumn(page, { columnLabel: 'Image Without Preview2', targetState: 'on' })
    await toggleColumn(page, { columnLabel: 'Image With Preview3', targetState: 'on' })
    await toggleColumn(page, { columnLabel: 'Image Without Preview3', targetState: 'on' })

    // Wait for the columns to be displayed
    await expect(page.locator('.cell-imageWithoutPreview3')).toBeVisible()

    // collection's displayPreview: true, field's displayPreview: unset
    const relationPreview1 = page.locator('.cell-imageWithPreview1 img')
    await expect(relationPreview1).toBeVisible()
    // collection's displayPreview: true, field's displayPreview: true
    const relationPreview2 = page.locator('.cell-imageWithPreview2 img')
    await expect(relationPreview2).toBeVisible()
    // collection's displayPreview: true, field's displayPreview: false
    const relationPreview3 = page.locator('.cell-imageWithoutPreview1 img')
    await expect(relationPreview3).toBeHidden()
    // collection's displayPreview: false, field's displayPreview: unset
    const relationPreview4 = page.locator('.cell-imageWithoutPreview2 img')
    await expect(relationPreview4).toBeHidden()
    // collection's displayPreview: false, field's displayPreview: true
    const relationPreview5 = page.locator('.cell-imageWithPreview3 img')
    await expect(relationPreview5).toBeVisible()
    // collection's displayPreview: false, field's displayPreview: false
    const relationPreview6 = page.locator('.cell-imageWithoutPreview3 img')
    await expect(relationPreview6).toBeHidden()
  })

  test('should hide file input when disableCreateFileInput is true on collection create', async () => {
    await page.goto(hideFileInputOnCreateURL.create)
    await expect(page.locator('.file-field__upload')).toBeHidden()
  })

  test('should hide bulk upload from list view when disableCreateFileInput is true', async () => {
    await page.goto(hideFileInputOnCreateURL.list)
    await expect(page.locator('.list-header')).not.toContainText('Bulk Upload')
  })

  test('should hide remove button in file input when hideRemove is true', async () => {
    const doc = await payload.create({
      collection: hideFileInputOnCreateSlug,
      data: {
        title: 'test',
      },
    })
    await page.goto(hideFileInputOnCreateURL.edit(doc.id))

    await expect(page.locator('.file-field .file-details__remove')).toBeHidden()
  })

  test('should skip applying resizeOptions after updating an image if resizeOptions.withoutEnlargement is true and the original image size is smaller than the dimensions defined in resizeOptions', async () => {
    await page.goto(withoutEnlargementResizeOptionsURL.create)

    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    await saveDocAndAssert(page)

    await page.locator('.file-field__edit').click()

    // no need to make any changes to the image if resizeOptions.withoutEnlargement is actually being respected now
    await page.locator('button:has-text("Apply Changes")').click()
    await saveDocAndAssert(page)

    const resizeOptionMedia = page.locator('.file-meta .file-meta__size-type')

    // expect the image to be the original size since the original image is smaller than the dimensions defined in resizeOptions
    await expect(resizeOptionMedia).toContainText('800x800')
  })

  describe('imageSizes best fit', () => {
    test('should select adminThumbnail if one exists', async () => {
      await page.goto(bestFitURL.create)
      await page.locator('#field-withAdminThumbnail button.upload__listToggler').click()
      await page.locator('tr.row-1 td.cell-filename button.default-cell__first-cell').click()
      const thumbnail = page.locator('#field-withAdminThumbnail div.thumbnail > img')
      await expect(thumbnail).toHaveAttribute(
        'src',
        /^https:\/\/raw\.githubusercontent\.com\/payloadcms\/website\/refs\/heads\/main\/public\/images\/universal-truth\.jpg(\?.*)?$/,
      )
    })

    test('should select an image within target range', async () => {
      await page.goto(bestFitURL.create)
      await page.locator('#field-withinRange button.upload__createNewToggler').click()
      await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
      await page.locator('dialog button#action-save').click()
      const thumbnail = page.locator('#field-withinRange div.thumbnail > img')
      await expect(thumbnail).toHaveAttribute(
        'src',
        /\/api\/enlarge\/file\/test-image-180x50\.jpg(\?.*)?$/,
      )
    })

    test('should select next smallest image outside of range but smaller than original', async () => {
      await page.goto(bestFitURL.create)
      await page.locator('#field-nextSmallestOutOfRange button.upload__createNewToggler').click()
      await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
      await page.locator('dialog button#action-save').click()
      const thumbnail = page.locator('#field-nextSmallestOutOfRange div.thumbnail > img')
      await expect(thumbnail).toHaveAttribute(
        'src',
        /\/api\/focal-only\/file\/test-image-400x300\.jpg(\?.*)?$/,
      )
    })

    test('should select original if smaller than next available size', async () => {
      await page.goto(bestFitURL.create)
      await page.locator('#field-original button.upload__createNewToggler').click()
      await page.setInputFiles('input[type="file"]', path.join(dirname, 'small.png'))
      await page.locator('dialog button#action-save').click()
      const thumbnail = page.locator('#field-original div.thumbnail > img')
      await expect(thumbnail).toHaveAttribute('src', /\/api\/focal-only\/file\/small\.png(\?.*)?$/)
    })
  })

  test('should show correct image preview or placeholder after paginating', async () => {
    await page.goto(listViewPreviewURL.list)
    const firstRow = page.locator('.row-1')

    const imageUploadCell = firstRow.locator('.cell-imageUpload .relationship-cell')
    await expect(imageUploadCell).toHaveText('<No Image Upload>')

    const imageRelationshipCell = firstRow.locator('.cell-imageRelationship .relationship-cell')
    await expect(imageRelationshipCell).toHaveText('<No Image Relationship>')

    const pageTwoButton = page.locator('.paginator__page', { hasText: '2' })
    await expect(pageTwoButton).toBeVisible()
    await pageTwoButton.click()

    const imageUploadImg = imageUploadCell.locator('.thumbnail')
    await expect(imageUploadImg).toBeVisible()
    await expect(imageRelationshipCell).toHaveText('image-1.png')

    const pageOneButton = page.locator('.paginator__page', { hasText: '1' })
    await expect(pageOneButton).toBeVisible()
    await pageOneButton.click()

    await expect(imageUploadCell).toHaveText('<No Image Upload>')
    await expect(imageRelationshipCell).toHaveText('<No Image Relationship>')
  })

  test('should respect Sharp constructorOptions', async () => {
    await page.goto(constructorOptionsURL.create)

    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './animated.webp'))

    const filename = page.locator('.file-field__filename')

    await expect(filename).toHaveValue('animated.webp')
    await saveDocAndAssert(page, '#action-save', 'error')
  })

  test('should prevent invalid mimetype disguised as valid mimetype', async () => {
    await page.goto(fileMimeTypeURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './image-as-pdf.pdf'))

    const filename = page.locator('.file-field__filename')
    await expect(filename).toHaveValue('image-as-pdf.pdf')

    await saveDocAndAssert(page, '#action-save', 'error')
  })

  test('should not rewrite file when updating collection fields', async () => {
    await page.goto(mediaURL.create)
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './test-image.png'))
    await saveDocAndAssert(page)
    const imageID = page.url().split('/').pop()!
    const { doc } = await client.findByID({ slug: mediaSlug, id: imageID, auth: true })
    const filename = doc.filename as string
    const filePath = path.resolve(dirname, 'media', filename)
    const before = statSync(filePath)

    const altField = page.locator('#field-alt')
    await altField.fill('test alt')

    await saveDocAndAssert(page)
    const after = statSync(filePath)
    expect(after.mtime.getTime()).toEqual(before.mtime.getTime())
  })

  test('should be able to replace the file even if the user doesnt have delete access', async () => {
    const docID = (await payload.find({ collection: mediaWithoutDeleteAccessSlug, limit: 1 }))
      .docs[0]?.id as string
    await page.goto(mediaWithoutDeleteAccessURL.edit(docID))
    const removeButton = page.locator('.file-details__remove')
    await expect(removeButton).toBeVisible()
    await removeButton.click()
    await expect(page.locator('input[type="file"]')).toBeAttached()
    await page.setInputFiles('input[type="file"]', path.join(dirname, 'test-image.jpg'))
    const filename = page.locator('.file-field__filename')
    await expect(filename).toHaveValue('test-image.jpg')
    await saveDocAndAssert(page)
    const filenameFromAPI = (
      await payload.find({ collection: mediaWithoutDeleteAccessSlug, limit: 1 })
    ).docs[0]?.filename
    expect(filenameFromAPI).toBe('test-image.jpg')
  })

  test('should not show image sizes in column selector in list view if imageSize has admin.disableListColumn true', async () => {
    await page.goto(mediaWithImageSizeAdminPropsURL.list)

    await openListColumns(page, {})

    await expect(page.locator('button:has-text("Sizes > one > URL")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > one > Width")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > one > Height")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > one > MIME Type")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > one > File Size")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > one > File Name")')).toBeHidden()

    await expect(page.locator('button:has-text("Sizes > two > URL")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > two > Width")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > two > Height")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > two > MIME Type")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > two > File Size")')).toBeHidden()
    await expect(page.locator('button:has-text("Sizes > two > File Name")')).toBeHidden()
  })

  test('should show image size in column selector in list view if imageSize has admin.disableListColumn false', async () => {
    await page.goto(mediaWithImageSizeAdminPropsURL.list)

    await openListColumns(page, {})

    await expect(page.locator('button:has-text("Sizes > three > URL")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > three > Width")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > three > Height")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > three > MIME Type")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > three > File Size")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > three > File Name")')).toBeVisible()

    await expect(page.locator('button:has-text("Sizes > four > URL")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > four > Width")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > four > Height")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > four > MIME Type")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > four > File Size")')).toBeVisible()
    await expect(page.locator('button:has-text("Sizes > four > File Name")')).toBeVisible()
  })

  test('should not show image size in where filter drodown in list view if imageSize has admin.disableListFilter true', async () => {
    await page.goto(mediaWithImageSizeAdminPropsURL.list)

    await openListFilters(page, {})

    const whereBuilder = page.locator('.where-builder')
    await whereBuilder.locator('.where-builder__add-first-filter').click()

    const conditionField = whereBuilder.locator('.condition__field')
    await conditionField.click()

    const menuList = conditionField.locator('.rs__menu-list')

    // ensure the image size is not present
    await expect(menuList.getByText('Sizes > one > URL', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > one > Width', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > one > Height', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > one > MIME Type', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > one > File Size', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > one > File Name', { exact: true })).toHaveCount(0)

    await expect(menuList.getByText('Sizes > three > URL', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > three > Width', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > three > Height', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > three > MIME Type', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > three > File Size', { exact: true })).toHaveCount(0)
    await expect(menuList.getByText('Sizes > three > File Name', { exact: true })).toHaveCount(0)
  })

  test('should show image size in where filter drodown in list view if imageSize has admin.disableListFilter false', async () => {
    await page.goto(mediaWithImageSizeAdminPropsURL.list)

    await openListFilters(page, {})

    const whereBuilder = page.locator('.where-builder')
    await whereBuilder.locator('.where-builder__add-first-filter').click()

    const conditionField = whereBuilder.locator('.condition__field')
    await conditionField.click()

    const menuList = conditionField.locator('.rs__menu-list')

    // ensure the image size is present
    await expect(menuList.getByText('Sizes > two > URL', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > two > Width', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > two > Height', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > two > MIME Type', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > two > File Size', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > two > File Name', { exact: true })).toHaveCount(1)

    await expect(menuList.getByText('Sizes > four > URL', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > four > Width', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > four > Height', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > four > MIME Type', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > four > File Size', { exact: true })).toHaveCount(1)
    await expect(menuList.getByText('Sizes > four > File Name', { exact: true })).toHaveCount(1)
  })

  test('should allow saving other fields after changing file', async () => {
    await page.goto(uploadsTwo.create)

    // Upload initial file with required field
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './image.png'))
    await page.locator('#field-prefix').fill('initial')
    await saveDocAndAssert(page)


    // Change the file
    await page.locator('.file-details__remove').click()
    await page.setInputFiles('input[type="file"]', path.resolve(dirname, './test-image.jpg'))
    await saveDocAndAssert(page)

    // Modify another field and save - this should work without errors
    await page.locator('#field-title').fill('updated title')
    await saveDocAndAssert(page)

    const titleField = page.locator('#field-title')
    await expect(titleField).toHaveValue('updated title')
  })

  test('should show data in drawer when editing relationship to upload collection with filesRequiredOnCreate: false', async () => {
    const uploadDoc = await payload.create({
      collection: noFilesRequiredSlug,
      data: {
        title: 'Upload without file',
      },
    })

    const relationDoc = await payload.create({
      collection: relationToNoFilesRequiredSlug,
      data: {
        title: 'Relation document',
        uploadField: uploadDoc.id,
      },
    })

    await page.goto(relationToNoFilesRequiredURL.edit(relationDoc.id))

    await expect(page.locator('#field-uploadField')).toBeVisible()

    await page.locator('#field-uploadField .upload-relationship-details__edit').click()

    const drawer = page.locator('[id^=doc-drawer_no-files-required_]')
    await expect(drawer).toBeVisible()

    const titleField = drawer.locator('#field-title')

    await expect(titleField).toHaveValue('Upload without file')
  })
})