-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathindex.js
717 lines (618 loc) · 23.9 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
const { writeJSON, unlink, existsSync, readFileSync, copy, ensureDir, readJson } = require('fs-extra')
const path = require('path')
const process = require('process')
const os = require('os')
const cpy = require('cpy')
const { dir: getTmpDir } = require('tmp-promise')
const { downloadFile } = require('../src/templates/handlerUtils')
const plugin = require('../src')
const { HANDLER_FUNCTION_NAME, ODB_FUNCTION_NAME } = require('../src/constants')
const { join } = require('pathe')
const {
matchMiddleware,
stripLocale,
matchesRedirect,
matchesRewrite,
patchNextFiles,
unpatchNextFiles,
} = require('../src/helpers/files')
const { dirname } = require('path')
const { getProblematicUserRewrites } = require('../src/helpers/verification')
const FIXTURES_DIR = `${__dirname}/fixtures`
const SAMPLE_PROJECT_DIR = `${__dirname}/../demos/default`
const constants = {
INTERNAL_FUNCTIONS_SRC: '.netlify/internal-functions',
PUBLISH_DIR: '.next',
FUNCTIONS_DIST: '.netlify/functions',
}
const utils = {
build: {
failBuild(message) {
throw new Error(message)
},
},
run: async () => void 0,
cache: {
save: jest.fn(),
restore: jest.fn(),
},
}
const REDIRECTS = [
{
source: '/:file((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/]+\\.\\w+)/',
destination: '/:file',
locale: false,
internal: true,
statusCode: 308,
regex: '^(?:/((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/]+\\.\\w+))/$',
},
{
source: '/:notfile((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/\\.]+)',
destination: '/:notfile/',
locale: false,
internal: true,
statusCode: 308,
regex: '^(?:/((?!\\.well-known(?:/.*)?)(?:[^/]+/)*[^/\\.]+))$',
},
{
source: '/en/redirectme',
destination: '/',
statusCode: 308,
regex: '^(?!/_next)/en/redirectme(?:/)?$',
},
{
source: '/:nextInternalLocale(en|es|fr)/redirectme',
destination: '/:nextInternalLocale/',
statusCode: 308,
regex: '^(?!/_next)(?:/(en|es|fr))/redirectme(?:/)?$',
},
]
const REWRITES = [
{
source: '/:nextInternalLocale(en|es|fr)/old/:path*',
destination: '/:nextInternalLocale/:path*',
regex: '^(?:/(en|es|fr))/old(?:/((?:[^/]+?)(?:/(?:[^/]+?))*))?(?:/)?$',
},
]
// Temporary switch cwd
const changeCwd = function (cwd) {
const originalCwd = process.cwd()
process.chdir(cwd)
return () => {
process.chdir(originalCwd)
}
}
const onBuildHasRun = (netlifyConfig) =>
Boolean(netlifyConfig.functions[HANDLER_FUNCTION_NAME]?.included_files?.some((file) => file.includes('BUILD_ID')))
const rewriteAppDir = async function (dir = '.next') {
const manifest = path.join(dir, 'required-server-files.json')
const manifestContent = await readJson(manifest)
manifestContent.appDir = process.cwd()
await writeJSON(manifest, manifestContent)
}
// Move .next from sample project to current directory
const moveNextDist = async function (dir = '.next') {
await stubModules(['next', 'sharp'])
await ensureDir(dirname(dir))
await copy(path.join(SAMPLE_PROJECT_DIR, '.next'), path.join(process.cwd(), dir))
await rewriteAppDir(dir)
}
const stubModules = async function (modules) {
for (const mod of modules) {
const dir = path.join(process.cwd(), 'node_modules', mod)
await ensureDir(dir)
await writeJSON(path.join(dir, 'package.json'), { name: mod })
}
}
// Copy fixture files to the current directory
const useFixture = async function (fixtureName) {
const fixtureDir = `${FIXTURES_DIR}/${fixtureName}`
await cpy('**', process.cwd(), { cwd: fixtureDir, parents: true, overwrite: true, dot: true })
}
const netlifyConfig = { build: { command: 'npm run build' }, functions: {}, redirects: [] }
const defaultArgs = {
netlifyConfig,
utils,
constants,
}
let restoreCwd
let cleanup
// In each test, we change cwd to a temporary directory.
// This allows us not to have to mock filesystem operations.
beforeEach(async () => {
const tmpDir = await getTmpDir({ unsafeCleanup: true })
restoreCwd = changeCwd(tmpDir.path)
cleanup = tmpDir.cleanup
netlifyConfig.build.publish = path.resolve('.next')
netlifyConfig.build.environment = {}
netlifyConfig.redirects = []
netlifyConfig.functions[HANDLER_FUNCTION_NAME] && (netlifyConfig.functions[HANDLER_FUNCTION_NAME].included_files = [])
netlifyConfig.functions[ODB_FUNCTION_NAME] && (netlifyConfig.functions[ODB_FUNCTION_NAME].included_files = [])
await useFixture('serverless_next_config')
})
afterEach(async () => {
jest.clearAllMocks()
jest.resetAllMocks()
// Cleans up the temporary directory from `getTmpDir()` and do not make it
// the current directory anymore
restoreCwd()
await cleanup()
})
describe('preBuild()', () => {
test('fails if publishing the root of the project', () => {
defaultArgs.netlifyConfig.build.publish = path.resolve('.')
expect(plugin.onPreBuild(defaultArgs)).rejects.toThrowError(
/Your publish directory is pointing to the base directory of your site/,
)
})
test('fails if the build version is too old', () => {
expect(
plugin.onPreBuild({
...defaultArgs,
constants: { IS_LOCAL: true, NETLIFY_BUILD_VERSION: '18.15.0' },
}),
).rejects.toThrow('This version of the Essential Next.js plugin requires netlify-cli')
})
test('passes if the build version is new enough', async () => {
expect(
plugin.onPreBuild({
...defaultArgs,
constants: { IS_LOCAL: true, NETLIFY_BUILD_VERSION: '18.16.1' },
}),
).resolves.not.toThrow()
})
it('restores cache with right paths', async () => {
await useFixture('dist_dir_next_config')
const restore = jest.fn()
await plugin.onPreBuild({
...defaultArgs,
utils: { ...utils, cache: { restore } },
})
expect(restore).toHaveBeenCalledWith(path.resolve('.next/cache'))
})
it('forces the target to "server"', async () => {
const netlifyConfig = { ...defaultArgs.netlifyConfig }
await plugin.onPreBuild({ ...defaultArgs, netlifyConfig })
expect(netlifyConfig.build.environment.NEXT_PRIVATE_TARGET).toBe('server')
})
})
describe('onBuild()', () => {
test('runs onBuild', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(onBuildHasRun(netlifyConfig)).toBe(true)
})
test('skips if NETLIFY_NEXT_PLUGIN_SKIP is set', async () => {
process.env.NETLIFY_NEXT_PLUGIN_SKIP = 'true'
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(onBuildHasRun(netlifyConfig)).toBe(false)
delete process.env.NETLIFY_NEXT_PLUGIN_SKIP
})
test('skips if NEXT_PLUGIN_FORCE_RUN is "false"', async () => {
process.env.NEXT_PLUGIN_FORCE_RUN = 'false'
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(onBuildHasRun(netlifyConfig)).toBe(false)
delete process.env.NEXT_PLUGIN_FORCE_RUN
})
test("fails if BUILD_ID doesn't exist", async () => {
await moveNextDist()
await unlink(path.join(process.cwd(), '.next/BUILD_ID'))
const failBuild = jest.fn().mockImplementation((err) => {
throw new Error(err)
})
expect(() => plugin.onBuild({ ...defaultArgs, utils: { ...utils, build: { failBuild } } })).rejects.toThrow(
`In most cases it should be set to ".next", unless you have chosen a custom "distDir" in your Next config.`,
)
expect(failBuild).toHaveBeenCalled()
})
test("fails with helpful warning if BUILD_ID doesn't exist and publish is 'out'", async () => {
await moveNextDist()
await unlink(path.join(process.cwd(), '.next/BUILD_ID'))
const failBuild = jest.fn().mockImplementation((err) => {
throw new Error(err)
})
netlifyConfig.build.publish = path.resolve('out')
expect(() => plugin.onBuild({ ...defaultArgs, utils: { ...utils, build: { failBuild } } })).rejects.toThrow(
`Your publish directory is set to "out", but in most cases it should be ".next".`,
)
expect(failBuild).toHaveBeenCalled()
})
test('fails build if next export has run', async () => {
await moveNextDist()
await writeJSON(path.join(process.cwd(), '.next/export-detail.json'), {})
const failBuild = jest.fn()
await plugin.onBuild({ ...defaultArgs, utils: { ...utils, build: { failBuild } } })
expect(failBuild).toHaveBeenCalled()
})
test('copy handlers to the internal functions directory', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(existsSync(`.netlify/internal-functions/___netlify-handler/___netlify-handler.js`)).toBeTruthy()
expect(existsSync(`.netlify/internal-functions/___netlify-handler/bridge.js`)).toBeTruthy()
expect(existsSync(`.netlify/internal-functions/___netlify-handler/handlerUtils.js`)).toBeTruthy()
expect(existsSync(`.netlify/internal-functions/___netlify-odb-handler/___netlify-odb-handler.js`)).toBeTruthy()
expect(existsSync(`.netlify/internal-functions/___netlify-odb-handler/bridge.js`)).toBeTruthy()
expect(existsSync(`.netlify/internal-functions/___netlify-odb-handler/handlerUtils.js`)).toBeTruthy()
})
test('writes correct redirects to netlifyConfig', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect([...netlifyConfig.redirects]).toMatchSnapshot()
})
test('publish dir is/has next dist', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(existsSync(path.resolve('.next/BUILD_ID'))).toBeTruthy()
})
test('generates static files manifest', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const manifestPath = path.resolve('.next/static-manifest.json')
expect(existsSync(manifestPath)).toBeTruthy()
const data = (await readJson(manifestPath)).sort()
expect(data).toMatchSnapshot()
})
test('moves static files to root', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const data = JSON.parse(readFileSync(path.resolve('.next/static-manifest.json'), 'utf8'))
data.forEach(([_, file]) => {
expect(existsSync(path.resolve(path.join('.next', file)))).toBeTruthy()
expect(existsSync(path.resolve(path.join('.next', 'server', 'pages', file)))).toBeFalsy()
})
})
test('copies default locale files to top level', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const data = JSON.parse(readFileSync(path.resolve('.next/static-manifest.json'), 'utf8'))
const locale = 'en/'
data.forEach(([_, file]) => {
if (!file.startsWith(locale)) {
return
}
const trimmed = file.substring(locale.length)
expect(existsSync(path.resolve(path.join('.next', trimmed)))).toBeTruthy()
})
})
test('skips static files that match middleware', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
expect(existsSync(path.resolve(path.join('.next', 'en', 'middle.html')))).toBeFalsy()
expect(existsSync(path.resolve(path.join('.next', 'server', 'pages', 'en', 'middle.html')))).toBeTruthy()
})
test('sets correct config', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const includes = [
'.env',
'.env.local',
'.env.production',
'.env.production.local',
'.next/server/**',
'.next/serverless/**',
'.next/*.json',
'.next/BUILD_ID',
'.next/static/chunks/webpack-middleware*.js',
'!.next/server/**/*.js.nft.json',
'!../../node_modules/next/dist/compiled/@ampproject/toolbox-optimizer/**/*',
`!node_modules/next/dist/server/lib/squoosh/**/*.wasm`,
`!node_modules/next/dist/next-server/server/lib/squoosh/**/*.wasm`,
'!node_modules/next/dist/compiled/webpack/bundle4.js',
'!node_modules/next/dist/compiled/webpack/bundle5.js',
'!node_modules/next/dist/compiled/terser/bundle.min.js',
'!node_modules/sharp/**/*',
]
// Relative paths in Windows are different
if (os.platform() !== 'win32') {
expect(netlifyConfig.functions[HANDLER_FUNCTION_NAME].included_files).toEqual(includes)
expect(netlifyConfig.functions[ODB_FUNCTION_NAME].included_files).toEqual(includes)
}
expect(netlifyConfig.functions[HANDLER_FUNCTION_NAME].node_bundler).toEqual('nft')
expect(netlifyConfig.functions[ODB_FUNCTION_NAME].node_bundler).toEqual('nft')
})
test('generates a file referencing all page sources', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const handlerPagesFile = path.join(constants.INTERNAL_FUNCTIONS_SRC, HANDLER_FUNCTION_NAME, 'pages.js')
const odbHandlerPagesFile = path.join(constants.INTERNAL_FUNCTIONS_SRC, ODB_FUNCTION_NAME, 'pages.js')
expect(existsSync(handlerPagesFile)).toBeTruthy()
expect(existsSync(odbHandlerPagesFile)).toBeTruthy()
expect(readFileSync(handlerPagesFile, 'utf8')).toMatchSnapshot()
expect(readFileSync(odbHandlerPagesFile, 'utf8')).toMatchSnapshot()
})
test('generates a file referencing all when publish dir is a subdirectory', async () => {
const dir = 'web/.next'
await moveNextDist(dir)
netlifyConfig.build.publish = path.resolve(dir)
const config = {
...defaultArgs,
netlifyConfig,
constants: { ...constants, PUBLISH_DIR: dir },
}
await plugin.onBuild(config)
const handlerPagesFile = path.join(constants.INTERNAL_FUNCTIONS_SRC, HANDLER_FUNCTION_NAME, 'pages.js')
const odbHandlerPagesFile = path.join(constants.INTERNAL_FUNCTIONS_SRC, ODB_FUNCTION_NAME, 'pages.js')
expect(readFileSync(handlerPagesFile, 'utf8')).toMatchSnapshot()
expect(readFileSync(odbHandlerPagesFile, 'utf8')).toMatchSnapshot()
})
test('generates entrypoints with correct references', async () => {
await moveNextDist()
await plugin.onBuild(defaultArgs)
const handlerFile = path.join(
constants.INTERNAL_FUNCTIONS_SRC,
HANDLER_FUNCTION_NAME,
`${HANDLER_FUNCTION_NAME}.js`,
)
const odbHandlerFile = path.join(constants.INTERNAL_FUNCTIONS_SRC, ODB_FUNCTION_NAME, `${ODB_FUNCTION_NAME}.js`)
expect(existsSync(handlerFile)).toBeTruthy()
expect(existsSync(odbHandlerFile)).toBeTruthy()
expect(readFileSync(handlerFile, 'utf8')).toMatch(`(config, "../../..", pageRoot, staticManifest, 'ssr')`)
expect(readFileSync(odbHandlerFile, 'utf8')).toMatch(`(config, "../../..", pageRoot, staticManifest, 'odb')`)
expect(readFileSync(handlerFile, 'utf8')).toMatch(`require("../../../.next/required-server-files.json")`)
expect(readFileSync(odbHandlerFile, 'utf8')).toMatch(`require("../../../.next/required-server-files.json")`)
})
test('handles empty routesManifest.staticRoutes', async () => {
await moveNextDist()
const manifestPath = path.resolve('.next/routes-manifest.json')
const routesManifest = await readJson(manifestPath)
delete routesManifest.staticRoutes
await writeJSON(manifestPath, routesManifest)
// The function is supposed to return undefined, but we want to check if it throws
expect(await plugin.onBuild(defaultArgs)).toBeUndefined()
})
})
describe('onPostBuild', () => {
test('saves cache with right paths', async () => {
await moveNextDist()
const save = jest.fn()
await plugin.onPostBuild({
...defaultArgs,
utils: { ...utils, cache: { save }, functions: { list: jest.fn().mockResolvedValue([]) } },
})
expect(save).toHaveBeenCalledWith(path.resolve('.next/cache'))
})
test('warns if old functions exist', async () => {
await moveNextDist()
const list = jest.fn().mockResolvedValue([
{
name: 'next_test',
mainFile: join(constants.INTERNAL_FUNCTIONS_SRC, 'next_test', 'next_test.js'),
runtime: 'js',
extension: '.js',
},
{
name: 'next_demo',
mainFile: join(constants.INTERNAL_FUNCTIONS_SRC, 'next_demo', 'next_demo.js'),
runtime: 'js',
extension: '.js',
},
])
const oldLog = console.log
const logMock = jest.fn()
console.log = logMock
await plugin.onPostBuild({
...defaultArgs,
utils: { ...utils, cache: { save: jest.fn() }, functions: { list } },
})
expect(logMock).toHaveBeenCalledWith(
expect.stringContaining(
`We have found the following functions in your site that seem to be left over from the old Next.js plugin (v3). We have guessed this because the name starts with "next_".`,
),
)
console.log = oldLog
})
test('warns if NETLIFY_NEXT_PLUGIN_SKIP is set', async () => {
await moveNextDist()
process.env.NETLIFY_NEXT_PLUGIN_SKIP = 'true'
await moveNextDist()
const show = jest.fn()
await plugin.onPostBuild({ ...defaultArgs, utils: { ...defaultArgs.utils, status: { show } } })
expect(show).toHaveBeenCalledWith({
summary: 'Next cache was stored, but all other functions were skipped because NETLIFY_NEXT_PLUGIN_SKIP is set',
title: 'Essential Next.js plugin did not run',
})
delete process.env.NETLIFY_NEXT_PLUGIN_SKIP
})
test('warns if NEXT_PLUGIN_FORCE_RUN is "false"', async () => {
await moveNextDist()
process.env.NEXT_PLUGIN_FORCE_RUN = 'false'
await moveNextDist()
const show = jest.fn()
await plugin.onPostBuild({ ...defaultArgs, utils: { ...defaultArgs.utils, status: { show } } })
expect(show).toHaveBeenCalledWith({
summary:
'Next cache was stored, but all other functions were skipped because NEXT_PLUGIN_FORCE_RUN is set to false',
title: 'Essential Next.js plugin did not run',
})
delete process.env.NEXT_PLUGIN_FORCE_RUN
})
test('finds problematic user rewrites', async () => {
await moveNextDist()
const rewrites = getProblematicUserRewrites({
redirects: [
{ from: '/previous', to: '/rewrites-are-a-problem', status: 200 },
{ from: '/api', to: '/.netlify/functions/are-ok', status: 200 },
{ from: '/remote', to: 'http://example.com/proxying/is/ok', status: 200 },
{ from: '/old', to: '/redirects-are-fine' },
{ from: '/*', to: '/404-is-a-problem', status: 404 },
...netlifyConfig.redirects,
],
basePath: '',
})
expect(rewrites).toEqual([
{
from: '/previous',
status: 200,
to: '/rewrites-are-a-problem',
},
{
from: '/*',
status: 404,
to: '/404-is-a-problem',
},
])
})
})
describe('utility functions', () => {
test('middleware tester matches correct paths', () => {
const middleware = ['middle', 'sub/directory']
const paths = [
'middle.html',
'middle',
'middle/',
'middle/ware',
'sub/directory',
'sub/directory.html',
'sub/directory/child',
'sub/directory/child.html',
]
for (const path of paths) {
expect(matchMiddleware(middleware, path)).toBeTruthy()
}
})
test('middleware tester does not match incorrect paths', () => {
const middleware = ['middle', 'sub/directory']
const paths = [
'middl',
'',
'somethingelse',
'another.html',
'another/middle.html',
'sub/anotherdirectory.html',
'sub/directoryelse',
'sub/directoryelse.html',
]
for (const path of paths) {
expect(matchMiddleware(middleware, path)).toBeFalsy()
}
})
test('middleware tester matches root middleware', () => {
const middleware = ['']
const paths = [
'middl',
'',
'somethingelse',
'another.html',
'another/middle.html',
'sub/anotherdirectory.html',
'sub/directoryelse',
'sub/directoryelse.html',
]
for (const path of paths) {
expect(matchMiddleware(middleware, path)).toBeTruthy()
}
})
test('middleware tester matches root middleware', () => {
const paths = [
'middl',
'',
'somethingelse',
'another.html',
'another/middle.html',
'sub/anotherdirectory.html',
'sub/directoryelse',
'sub/directoryelse.html',
]
for (const path of paths) {
expect(matchMiddleware(undefined, path)).toBeFalsy()
}
})
test('stripLocale correctly strips matching locales', () => {
const locales = ['en', 'fr', 'en-GB']
const paths = [
['en/file.html', 'file.html'],
['fr/file.html', 'file.html'],
['en-GB/file.html', 'file.html'],
['file.html', 'file.html'],
]
for (const [path, expected] of paths) {
expect(stripLocale(path, locales)).toEqual(expected)
}
})
test('stripLocale does not touch non-matching matching locales', () => {
const locales = ['en', 'fr', 'en-GB']
const paths = ['de/file.html', 'enfile.html', 'en-US/file.html']
for (const path of paths) {
expect(stripLocale(path, locales)).toEqual(path)
}
})
test('matchesRedirect correctly matches paths with locales', () => {
const paths = ['en/redirectme.html', 'en/redirectme.json', 'fr/redirectme.html', 'fr/redirectme.json']
paths.forEach((path) => {
expect(matchesRedirect(path, REDIRECTS)).toBeTruthy()
})
})
test("matchesRedirect doesn't match paths with invalid locales", () => {
const paths = ['dk/redirectme.html', 'dk/redirectme.json', 'gr/redirectme.html', 'gr/redirectme.json']
paths.forEach((path) => {
expect(matchesRedirect(path, REDIRECTS)).toBeFalsy()
})
})
test("matchesRedirect doesn't match internal redirects", () => {
const paths = ['en/notrailingslash']
paths.forEach((path) => {
expect(matchesRedirect(path, REDIRECTS)).toBeFalsy()
})
})
it('matchesRewrite matches array of rewrites', () => {
expect(matchesRewrite('en/old/page.html', REWRITES)).toBeTruthy()
})
it('matchesRewrite matches beforeFiles rewrites', () => {
expect(matchesRewrite('en/old/page.html', { beforeFiles: REWRITES })).toBeTruthy()
})
it("matchesRewrite doesn't match afterFiles rewrites", () => {
expect(matchesRewrite('en/old/page.html', { afterFiles: REWRITES })).toBeFalsy()
})
it('matchesRewrite matches various paths', () => {
const paths = ['en/old/page.html', 'fr/old/page.html', 'en/old/deep/page.html', 'en/old.html']
paths.forEach((path) => {
expect(matchesRewrite(path, REWRITES)).toBeTruthy()
})
})
test('patches Next server files', async () => {
const root = path.resolve(dirname(__dirname))
await copy(join(root, 'package.json'), path.join(process.cwd(), 'package.json'))
await ensureDir(path.join(process.cwd(), 'node_modules'))
await copy(path.join(root, 'node_modules', 'next'), path.join(process.cwd(), 'node_modules', 'next'))
expect(await patchNextFiles(process.cwd())).toBeTruthy()
const serverFile = path.resolve(process.cwd(), 'node_modules', 'next', 'dist', 'server', 'base-server.js')
const patchedData = await readFileSync(serverFile, 'utf8')
expect(patchedData.includes('_BYPASS_SSG')).toBeTruthy()
await unpatchNextFiles(process.cwd())
const unPatchedData = await readFileSync(serverFile, 'utf8')
expect(unPatchedData.includes('_BYPASS_SSG')).toBeFalsy()
})
})
describe('function helpers', () => {
it('downloadFile can download a file', async () => {
const url =
'https://raw.githubusercontent.com/netlify/netlify-plugin-nextjs/c2668af24a78eb69b33222913f44c1900a3bce23/manifest.yml'
const tmpFile = join(os.tmpdir(), 'next-test', 'downloadfile.txt')
await ensureDir(path.dirname(tmpFile))
await downloadFile(url, tmpFile)
expect(existsSync(tmpFile)).toBeTruthy()
expect(readFileSync(tmpFile, 'utf8')).toMatchInlineSnapshot(`
"name: netlify-plugin-nextjs-experimental
"
`)
await unlink(tmpFile)
})
it('downloadFile throws on bad domain', async () => {
const url = 'https://nonexistentdomain.example'
const tmpFile = join(os.tmpdir(), 'next-test', 'downloadfile.txt')
await ensureDir(path.dirname(tmpFile))
await expect(downloadFile(url, tmpFile)).rejects.toThrowErrorMatchingInlineSnapshot(
`"getaddrinfo ENOTFOUND nonexistentdomain.example"`,
)
})
it('downloadFile throws on 404', async () => {
const url = 'https://example.com/nonexistentfile'
const tmpFile = join(os.tmpdir(), 'next-test', 'downloadfile.txt')
await ensureDir(path.dirname(tmpFile))
await expect(downloadFile(url, tmpFile)).rejects.toThrowError(
'Failed to download https://example.com/nonexistentfile: 404 Not Found',
)
})
})