-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathpage-router.test.ts
167 lines (137 loc) · 6.58 KB
/
page-router.test.ts
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
import { load } from 'cheerio'
import { getLogger } from 'lambda-local'
import { HttpResponse, http, passthrough } from 'msw'
import { setupServer } from 'msw/node'
import { platform } from 'node:process'
import { v4 } from 'uuid'
import { afterAll, afterEach, beforeAll, beforeEach, expect, test, vi } from 'vitest'
import { type FixtureTestContext } from '../utils/contexts.js'
import { createFixture, invokeFunction, runPlugin } from '../utils/fixture.js'
import { encodeBlobKey, generateRandomObjectID, startMockBlobStore } from '../utils/helpers.js'
// Disable the verbose logging of the lambda-local runtime
getLogger().level = 'alert'
let server: ReturnType<typeof setupServer>
beforeAll(() => {
// Enable API mocking before tests.
// mock just api.netlify.com/api/v1/purge
// and passthrough everything else
server = setupServer(
http.post('https://api.netlify.com/api/v1/purge', () => {
console.log('intercepted purge api call')
return HttpResponse.json({})
}),
http.all(/.*/, () => passthrough()),
)
server.listen()
})
beforeEach<FixtureTestContext>(async (ctx) => {
// set for each test a new deployID and siteID
ctx.deployID = generateRandomObjectID()
ctx.siteID = v4()
vi.stubEnv('SITE_ID', ctx.siteID)
vi.stubEnv('DEPLOY_ID', ctx.deployID)
vi.stubEnv('NETLIFY_PURGE_API_TOKEN', 'fake-token')
// hide debug logs in tests
vi.spyOn(console, 'debug').mockImplementation(() => {})
await startMockBlobStore(ctx)
})
afterEach(() => {
server.resetHandlers()
})
afterAll(() => {
// Disable API mocking after the tests are done.
server.close()
})
test<FixtureTestContext>('Should add pathname to cache-tags for pages route', async (ctx) => {
await createFixture('page-router', ctx)
await runPlugin(ctx)
const staticFetch1 = await invokeFunction(ctx, { url: '/static/revalidate-manual' })
expect(staticFetch1.headers?.['netlify-cache-tag']).toBe('_N_T_/static/revalidate-manual')
})
test<FixtureTestContext>('Should revalidate path with On-demand Revalidation', async (ctx) => {
await createFixture('page-router', ctx)
await runPlugin(ctx)
const staticPageInitial = await invokeFunction(ctx, { url: '/static/revalidate-manual' })
const dateCacheInitial = load(staticPageInitial.body)('[data-testid="date-now"]').text()
expect(staticPageInitial.statusCode).toBe(200)
expect(staticPageInitial.headers?.['cache-status']).toMatch(/"Next.js"; hit/)
const blobDataInitial = await ctx.blobStore.get(encodeBlobKey('/static/revalidate-manual'), {
type: 'json',
})
const blobDateInitial = load(blobDataInitial.value.html).html('[data-testid="date-now"]')
const revalidate = await invokeFunction(ctx, { url: '/api/revalidate' })
expect(revalidate.statusCode).toBe(200)
await new Promise<void>((resolve) => setTimeout(resolve, 100))
const blobDataRevalidated = await ctx.blobStore.get(encodeBlobKey('/static/revalidate-manual'), {
type: 'json',
})
const blobDateRevalidated = load(blobDataRevalidated.value.html).html('[data-testid="date-now"]')
// TODO: Blob data is updated on revalidate but page still producing previous data
expect(blobDateInitial).not.toBe(blobDateRevalidated)
const staticPageRevalidated = await invokeFunction(ctx, { url: '/static/revalidate-manual' })
expect(staticPageRevalidated.headers?.['cache-status']).toMatch(/"Next.js"; hit/)
const dateCacheRevalidated = load(staticPageRevalidated.body)('[data-testid="date-now"]').text()
console.log({ dateCacheInitial, dateCacheRevalidated })
expect(dateCacheInitial).not.toBe(dateCacheRevalidated)
})
test.skipIf(platform === 'win32')<FixtureTestContext>(
'Should set permanent "netlify-cdn-cache-control" header on fully static pages"',
async (ctx) => {
await createFixture('page-router', ctx)
await runPlugin(ctx)
const response = await invokeFunction(ctx, {
url: '/static/fully-static',
})
expect(response.headers?.['netlify-cdn-cache-control']).toBe('max-age=31536000, durable')
expect(response.headers?.['cache-control']).toBe('public, max-age=0, must-revalidate')
},
)
test<FixtureTestContext>('Should serve correct locale-aware custom 404 pages', async (ctx) => {
await createFixture('page-router-base-path-i18n', ctx)
await runPlugin(ctx)
const responseImplicitDefaultLocale = await invokeFunction(ctx, {
url: '/base/path/not-existing-page',
})
expect(
responseImplicitDefaultLocale.statusCode,
'Response for not existing route if locale is not explicitly used in pathname (after basePath) should have 404 status',
).toBe(404)
expect(
load(responseImplicitDefaultLocale.body)('[data-testid="locale"]').text(),
'Served 404 page content should use default locale if locale is not explicitly used in pathname (after basePath)',
).toBe('en')
expect(
responseImplicitDefaultLocale.headers['netlify-cdn-cache-control'],
'Response for not existing route if locale is not explicitly used in pathname (after basePath) should have 404 status',
).toBe('s-maxage=31536000, stale-while-revalidate=31536000, durable')
const responseExplicitDefaultLocale = await invokeFunction(ctx, {
url: '/base/path/en/not-existing-page',
})
expect(
responseExplicitDefaultLocale.statusCode,
'Response for not existing route if default locale is explicitly used in pathname (after basePath) should have 404 status',
).toBe(404)
expect(
load(responseExplicitDefaultLocale.body)('[data-testid="locale"]').text(),
'Served 404 page content should use default locale if default locale is explicitly used in pathname (after basePath)',
).toBe('en')
expect(
responseExplicitDefaultLocale.headers['netlify-cdn-cache-control'],
'Response for not existing route if locale is not explicitly used in pathname (after basePath) should have 404 status',
).toBe('s-maxage=31536000, stale-while-revalidate=31536000, durable')
const responseNonDefaultLocale = await invokeFunction(ctx, {
url: '/base/path/fr/not-existing-page',
})
expect(
responseNonDefaultLocale.statusCode,
'Response for not existing route if non-default locale is explicitly used in pathname (after basePath) should have 404 status',
).toBe(404)
expect(
load(responseNonDefaultLocale.body)('[data-testid="locale"]').text(),
'Served 404 page content should use non-default locale if non-default locale is explicitly used in pathname (after basePath)',
).toBe('fr')
expect(
responseNonDefaultLocale.headers['netlify-cdn-cache-control'],
'Response for not existing route if locale is not explicitly used in pathname (after basePath) should have 404 status',
).toBe('s-maxage=31536000, stale-while-revalidate=31536000, durable')
})