-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy pathplaywright.config.ts
More file actions
513 lines (505 loc) · 19.2 KB
/
Copy pathplaywright.config.ts
File metadata and controls
513 lines (505 loc) · 19.2 KB
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
import { defineConfig } from "@playwright/test";
const appRouterBrowserSpecificTests = "**/app-router/**/*.browser.spec.ts";
const appRouterServer = {
command: "npx vp dev --port 4174",
cwd: "./tests/fixtures/app-basic",
port: 4174,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
};
// Dedicated server for BFCache/cacheComponents coverage. cacheComponents is an
// opt-in semantic mode that retains inactive route trees as hidden Activity DOM.
// Running it on the shared app-basic fixture would change the DOM contract for
// every unrelated app-router test, so it gets its own isolated fixture instead.
const appRouterBfcacheServer = {
command: "npx vp dev --port 4183",
cwd: "./tests/fixtures/app-bfcache",
port: 4183,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
};
/**
* Each project maps to a single webServer. Some browser-specific projects share
* a server with the base project, and shared servers are de-duped by port.
* Browser-specific production tests may opt out with server: null when they own
* their build/server lifecycle inside the test fixture.
* When PLAYWRIGHT_PROJECT is set
* (e.g. in CI matrix jobs), only that project and its server are configured,
* so each CI runner only starts the one server it needs.
*/
const projectServers = {
"pages-router": {
testDir: "./tests/e2e/pages-router",
use: { baseURL: "http://localhost:4173" },
server: {
command: "npx vp run vinext#build && npx vp dev --port 4173",
cwd: "./tests/fixtures/pages-basic",
port: 4173,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"app-router": {
testDir: "./tests/e2e",
testMatch: ["**/app-router/**/*.spec.ts", "**/og-image.spec.ts"],
testIgnore: [
appRouterBrowserSpecificTests,
"**/app-router/nextjs-compat/client-cache.spec.ts",
"**/app-router/nextjs-compat/route-handler-draft-cache.spec.ts",
"**/app-router/nextjs-compat/segment-cache-client-params.spec.ts",
"**/app-router/isr.spec.ts",
],
use: { baseURL: "http://localhost:4174" },
server: appRouterServer,
},
"app-router-isr-prod": {
testDir: "./tests/e2e",
testMatch: [
"app-router/isr.spec.ts",
"app-router-prod/static-hydration.spec.ts",
"app-router-prod/use-cache.spec.ts",
],
use: { baseURL: "http://localhost:4198" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4198",
cwd: "./tests/fixtures/app-basic",
port: 4198,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"app-router-client-cache": {
testDir: "./tests/e2e/app-router/nextjs-compat",
testMatch: [
"client-cache.spec.ts",
"route-handler-draft-cache.spec.ts",
"segment-cache-client-params.spec.ts",
],
use: { baseURL: "http://localhost:4191" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4191",
cwd: "./tests/fixtures/app-basic",
port: 4191,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"app-router-chrome-browser-specific": {
testDir: "./tests/e2e",
testMatch: [appRouterBrowserSpecificTests],
use: {
browserName: "chromium" as const,
channel: "chrome" as const,
},
server: null,
},
"app-router-webkit-browser-specific": {
testDir: "./tests/e2e",
testMatch: [appRouterBrowserSpecificTests],
use: { browserName: "webkit" as const },
server: null,
},
"app-router-bfcache": {
testDir: "./tests/e2e/app-router-bfcache",
use: { baseURL: "http://localhost:4183" },
server: appRouterBfcacheServer,
},
"catch-error": {
testDir: "./tests/e2e/catch-error",
use: { baseURL: "http://localhost:4185" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4185",
cwd: "./tests/fixtures/global-not-found-basic",
port: 4185,
reuseExistingServer: false,
timeout: 60_000,
},
},
"cloudflare-pages-router": {
testDir: "./tests/e2e",
testMatch: [
"**/cloudflare-pages-router/**/*.spec.ts",
"**/pages-router/instrumentation-startup.spec.ts",
],
use: { baseURL: "http://localhost:4177" },
server: {
command: "VINEXT_E2E_REVALIDATION_PROXY=1 npx vp build && npx wrangler dev --port 4177",
cwd: "./examples/pages-router-cloudflare",
port: 4177,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"pages-router-prod": {
testDir: "./tests/e2e/pages-router-prod",
server: {
// Use node to invoke the CLI directly — npx vinext may not be on PATH
// in fixture subdirectories since vinext is a workspace dependency.
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4175",
cwd: "./tests/fixtures/pages-basic",
port: 4175,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
env: { NEXT_DEPLOYMENT_ID: "pages-production-deployment" },
},
},
"pages-scroll-restoration": {
testDir: "./tests/e2e/pages-scroll-restoration",
use: { baseURL: "http://localhost:4185" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4185",
cwd: "./tests/fixtures/pages-scroll-restoration",
port: 4185,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"cloudflare-workers": {
testDir: "./tests/e2e",
testMatch: [
"**/cloudflare-workers/**/*.spec.ts",
"**/app-router/instrumentation.spec.ts",
"**/og-image.spec.ts",
],
use: { baseURL: process.env.VINEXT_E2E_BASE_URL ?? "http://localhost:4176" },
server: process.env.VINEXT_E2E_BASE_URL
? null
: {
// Build app-router-cloudflare with Vite, then serve with wrangler dev (miniflare)
command:
"npx vp build && npx wrangler dev --config dist/server/wrangler.json --port 4176",
cwd: "./examples/app-router-cloudflare",
port: 4176,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"cloudflare-sentry-app": {
testDir: "./tests/e2e",
testMatch: ["**/cloudflare-sentry-app/**/*.spec.ts"],
use: { baseURL: "http://localhost:4193" },
server: {
command:
"NEXT_PUBLIC_VINEXT_TEST_SENTRY_DSN=http://public@localhost:4193/1 npx vp build && npx wrangler dev --port 4193",
cwd: "./tests/fixtures/cf-sentry-app",
port: 4193,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"cloudflare-sentry-pages": {
testDir: "./tests/e2e",
testMatch: ["**/cloudflare-sentry-pages/**/*.spec.ts"],
use: { baseURL: "http://localhost:4194" },
server: {
command:
"NEXT_PUBLIC_VINEXT_TEST_SENTRY_DSN=http://public@localhost:4194/1 npx vp build && npx wrangler dev --port 4194",
cwd: "./tests/fixtures/cf-sentry-pages",
port: 4194,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"cloudflare-dev": {
testDir: "./tests/e2e",
testMatch: [
"**/cloudflare-dev/**/*.spec.ts",
"**/app-router/instrumentation.spec.ts",
"**/og-image.spec.ts",
],
use: { baseURL: "http://localhost:4178" },
server: {
// Run vite dev (not wrangler) against the cloudflare example so that
// configureServer() is exercised with @cloudflare/vite-plugin loaded.
command: "npx vp dev --port 4178",
cwd: "./examples/app-router-cloudflare",
port: 4178,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"cloudflare-pages-router-dev": {
testDir: "./tests/e2e",
testMatch: [
"**/cloudflare-pages-router-dev/**/*.spec.ts",
"**/pages-router/instrumentation-startup.spec.ts",
],
use: { baseURL: "http://localhost:4179" },
server: {
command: "npx vp dev --port 4179",
cwd: "./examples/pages-router-cloudflare",
port: 4179,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"static-export": {
testDir: "./tests/e2e/static-export",
use: { baseURL: "http://localhost:4180" },
server: {
// Build the static export fixture, then serve the output with a
// lightweight static file server. No vinext runtime is needed —
// the output is pure pre-rendered HTML files.
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../tests/e2e/static-export/serve-static.mjs dist/client 4180",
cwd: "./tests/fixtures/static-export",
port: 4180,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"app-with-src": {
testDir: "./tests/e2e/app-with-src",
use: { baseURL: "http://localhost:4181" },
server: {
command: "npx vp dev --port 4181",
cwd: "./tests/fixtures/app-with-src",
port: 4181,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"standalone-output": {
testDir: "./tests/e2e/standalone-output",
use: { baseURL: "http://localhost:4182" },
server: {
// Build vinext CLI, then build the fixture, then start the standalone
// server from an isolated temp directory. Moving it outside the repo
// prevents Node from resolving missing externals from workspace
// node_modules and verifies the standalone package is self-contained.
command:
'npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && standalone_dir="$(mktemp -d)" && cp -R dist/standalone/. "$standalone_dir" && PORT=4182 node "$standalone_dir/server.js"',
cwd: "./tests/fixtures/standalone-output",
port: 4182,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"root-layout-redirect": {
testDir: "./tests/e2e/root-layout-redirect",
use: { baseURL: "http://localhost:4184" },
server: {
// Build vinext CLI, then build the fixture, then start the production
// server. This exercises prodOnCaughtError (the fixed code path) rather
// than devOnCaughtError, which already filtered navigation-signal errors
// before this PR.
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4184",
cwd: "./tests/fixtures/root-layout-redirect",
port: 4184,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"use-params-app-pages": {
testDir: "./tests/e2e/use-params-app-pages",
use: { baseURL: "http://localhost:4186" },
server: {
command:
"cd ../../.. && npx vp run vinext#build && cd tests/fixtures/use-params-app-pages && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4186",
cwd: "./tests/fixtures/use-params-app-pages",
port: 4186,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"ppr-impact-demo": {
testDir: "./tests/e2e/ppr-impact-demo",
use: { baseURL: "http://localhost:4187" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4187",
cwd: "./tests/fixtures/ppr-impact-demo",
port: 4187,
reuseExistingServer: !process.env.CI,
timeout: 90_000,
},
},
"app-front-redirect-issue": {
testDir: "./tests/e2e/app-front-redirect-issue",
use: { baseURL: "http://localhost:4188" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../../../fixtures/app-basic/node_modules node_modules) && npx vp run vinext#build && NEXT_DEPLOYMENT_ID=vinext-front-redirect-e2e node ../../../../packages/vinext/dist/cli.js build && NEXT_DEPLOYMENT_ID=vinext-front-redirect-e2e node ../../../../packages/vinext/dist/cli.js start --port 4188",
cwd: "./tests/e2e/app-front-redirect-issue/fixture",
port: 4188,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"pages-router-basepath-dev": {
testDir: "./tests/e2e/pages-router-basepath-dev",
use: { baseURL: "http://localhost:4189" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../pages-basic/node_modules node_modules) && npx vp dev --port 4189",
cwd: "./tests/fixtures/pages-basepath-dev",
port: 4189,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
},
},
"pages-router-basepath": {
// basePath + trailingSlash. Runs in PROD mode (build + start) because
// vinext's dev server has a Vite html-proxy / basePath incompatibility
// in inline hydration imports — unrelated to the navigation pipeline
// under test. Prod skips html-proxy entirely (it uses pre-built
// `__VINEXT_PAGE_LOADERS__`), so we exercise the same Pages Router
// navigation code paths users hit in production.
testDir: "./tests/e2e/pages-router-basepath",
use: { baseURL: "http://localhost:4190" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../pages-basic/node_modules node_modules) && npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4190",
cwd: "./tests/fixtures/pages-basepath-trailing-slash",
port: 4190,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"app-router-prefetch-searchparams": {
testDir: "./tests/e2e/app-router-prefetch-searchparams",
use: { baseURL: "http://localhost:4191" },
server: {
command:
"npx vp run vinext#build && node ../../../packages/vinext/dist/cli.js build && node ../../../packages/vinext/dist/cli.js start --port 4191",
cwd: "./tests/fixtures/app-basic",
port: 4191,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"app-router-encoded-basepath-i18n": {
testDir: "./tests/e2e/app-router-encoded-basepath-i18n",
use: { baseURL: "http://localhost:4196" },
server: process.env.VINEXT_BASEPATH_E2E_BASE_URL
? undefined
: {
command:
"VINEXT_ENCODED_PATH_BASEPATH_I18N=1 npx vp run vinext#build && VINEXT_ENCODED_PATH_BASEPATH_I18N=1 node ../../../packages/vinext/dist/cli.js build && VINEXT_ENCODED_PATH_BASEPATH_I18N=1 node ../../../packages/vinext/dist/cli.js start --port 4196",
cwd: "./tests/fixtures/app-basic",
port: 4196,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"pages-router-complex": {
// Compatibility target exercising the convoluted patterns of large,
// long-lived Pages Router apps (examples/pages-router-complex). The specs
// document behaviour verified against real Next.js (`pnpm dev:next` in
// the example). Known vinext gaps are marked test.fixme so the passing
// compatibility surface remains enforced in CI. Run it with:
// PLAYWRIGHT_PROJECT=pages-router-complex pnpm run test:e2e
testDir: "./tests/e2e/pages-router-complex",
use: { baseURL: "http://localhost:4199" },
server: {
command: "npx vp dev --port 4199",
cwd: "./examples/pages-router-complex",
port: 4199,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
env: {
ATLAS_PURGE_BEARER: "e2e-purge-token",
// Parity gap: vinext invokes generateBuildId at dev startup; Next.js
// only calls it at build time.
RELEASE_TAG: "e2e",
},
},
},
"cloudflare-encoded-paths": {
testDir: "./tests/e2e/cloudflare-encoded-paths",
use: { baseURL: "http://localhost:4197" },
server: {
command: "npx vp build && npx wrangler dev --config dist/server/wrangler.json --port 4197",
cwd: "./tests/fixtures/cf-app-basic",
port: 4197,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
},
},
"web-worker-vinext": {
testDir: "./tests/e2e/web-worker",
use: { baseURL: "http://localhost:4200" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../../../../fixtures/app-basic/node_modules node_modules) && npx vp run vinext#build && node ../../../../../packages/vinext/dist/cli.js build && node ../../../../../packages/vinext/dist/cli.js start --port 4200",
cwd: "./tests/e2e/web-worker/fixtures/vinext",
port: 4200,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"web-worker-cloudflare": {
testDir: "./tests/e2e/web-worker",
use: { baseURL: "http://localhost:4201" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../../../../fixtures/cf-app-basic/node_modules node_modules) && npx vp run vinext#build && npx vp build && npx wrangler dev --config dist/server/wrangler.json --port 4201",
cwd: "./tests/e2e/web-worker/fixtures/cloudflare",
port: 4201,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
"nextjs-worker-cloudflare": {
testDir: "./tests/e2e/nextjs-worker",
use: { baseURL: "http://localhost:4202" },
server: {
command:
"(test -e node_modules || test -L node_modules || ln -s ../../../fixtures/cf-app-basic/node_modules node_modules) && npx vp run vinext#build && NEXT_DEPLOYMENT_ID=test-deployment-id npx vp build && NEXT_DEPLOYMENT_ID=test-deployment-id npx wrangler dev --config dist/server/wrangler.json --port 4202",
cwd: "./tests/e2e/nextjs-worker/fixture",
port: 4202,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
},
};
type ProjectName = keyof typeof projectServers;
const selected = process.env.PLAYWRIGHT_PROJECT;
if (selected && !(selected in projectServers)) {
throw new Error(
`Unknown PLAYWRIGHT_PROJECT: "${selected}". ` +
`Valid: ${Object.keys(projectServers).join(", ")}`,
);
}
const activeProjects: ProjectName[] = selected
? [selected as ProjectName]
: (Object.keys(projectServers) as ProjectName[]);
export default defineConfig({
testDir: "./tests/e2e",
timeout: 30_000,
retries: 1,
// GitHub reporter adds inline failure annotations in PR diffs.
reporter: process.env.CI ? [["list"], ["github"]] : [["list"]],
use: {
headless: true,
// Most projects use Chromium by default. Browser-specific projects override this.
browserName: "chromium",
},
projects: activeProjects.map((name) => {
const p = projectServers[name];
return {
name,
testDir: p.testDir,
...("testMatch" in p ? { testMatch: p.testMatch } : {}),
...("testIgnore" in p ? { testIgnore: p.testIgnore } : {}),
...("use" in p ? { use: p.use } : {}),
};
}),
webServer: [
...new Map(
activeProjects
.map((name) => projectServers[name].server)
.filter(
(server): server is NonNullable<(typeof projectServers)[ProjectName]["server"]> =>
server != null,
)
.map((server) => [server.port, server]),
).values(),
],
});