-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathdynamic-cms.test.ts
108 lines (99 loc) · 5.29 KB
/
dynamic-cms.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
import { expect } from '@playwright/test'
import { test } from '../utils/playwright-helpers.js'
test.describe('Dynamic CMS', () => {
test.describe('Invalidates 404 pages from durable cache', () => {
// using postFix allows to rerun tests without having to redeploy the app because paths/keys will be unique for each test run
const postFix = Date.now()
for (const { label, contentKey, expectedCacheTag, urlPath, pathToRevalidate } of [
{
label: 'Invalidates 404 html from durable cache (implicit default locale)',
urlPath: `/content/html-implicit-default-locale-${postFix}`,
contentKey: `html-implicit-default-locale-${postFix}`,
expectedCacheTag: `_n_t_/en/content/html-implicit-default-locale-${postFix}`,
},
{
label: 'Invalidates 404 html from durable cache (explicit default locale)',
urlPath: `/en/content/html-explicit-default-locale-${postFix}`,
contentKey: `html-explicit-default-locale-${postFix}`,
expectedCacheTag: `_n_t_/en/content/html-explicit-default-locale-${postFix}`,
},
// json paths don't have implicit locale routing
{
label: 'Invalidates 404 json from durable cache (default locale)',
urlPath: `/_next/data/build-id/en/content/json-default-locale-${postFix}.json`,
// for html, we can use html path as param for revalidate,
// for json we can't use json path and instead use one of html paths
// let's use implicit default locale here, as we will have another case for
// non-default locale which will have to use explicit one
pathToRevalidate: `/content/json-default-locale-${postFix}`,
contentKey: `json-default-locale-${postFix}`,
expectedCacheTag: `_n_t_/en/content/json-default-locale-${postFix}`,
},
{
label: 'Invalidates 404 html from durable cache (non-default locale)',
urlPath: `/fr/content/html-non-default-locale-${postFix}`,
contentKey: `html-non-default-locale-${postFix}`,
expectedCacheTag: `_n_t_/fr/content/html-non-default-locale-${postFix}`,
},
{
label: 'Invalidates 404 json from durable cache (non-default locale)',
urlPath: `/_next/data/build-id/fr/content/json-non-default-locale-${postFix}.json`,
pathToRevalidate: `/fr/content/json-non-default-locale-${postFix}`,
contentKey: `json-non-default-locale-${postFix}`,
expectedCacheTag: `_n_t_/fr/content/json-non-default-locale-${postFix}`,
},
]) {
test(label, async ({ page, dynamicCms }) => {
const routeUrl = new URL(urlPath, dynamicCms.url).href
const revalidateAPiUrl = new URL(
`/api/revalidate?path=${pathToRevalidate ?? urlPath}`,
dynamicCms.url,
).href
// 1. Verify the status and headers of the dynamic page
const response1 = await page.goto(routeUrl)
const headers1 = response1?.headers() || {}
expect(response1?.status()).toEqual(404)
expect(headers1['cache-control']).toEqual('public,max-age=0,must-revalidate')
expect(headers1['cache-status']).toEqual(
'"Next.js"; fwd=miss, "Netlify Durable"; fwd=uri-miss; stored, "Netlify Edge"; fwd=miss',
)
expect(headers1['netlify-cache-tag']).toEqual(expectedCacheTag)
expect(headers1['netlify-cdn-cache-control']).toMatch(
/s-maxage=31536000,( stale-while-revalidate=31536000,)? durable/,
)
// 2. Publish the blob, revalidate the dynamic page, and wait to regenerate
await page.goto(new URL(`/cms/publish/${contentKey}`, dynamicCms.url).href)
await page.goto(revalidateAPiUrl)
await page.waitForTimeout(1000)
// 3. Verify the status and headers of the dynamic page
const response2 = await page.goto(routeUrl)
const headers2 = response2?.headers() || {}
expect(response2?.status()).toEqual(200)
expect(headers2['cache-control']).toEqual('public,max-age=0,must-revalidate')
expect(headers2['cache-status']).toMatch(
/"Next.js"; hit, "Netlify Durable"; fwd=stale; ttl=[0-9]+; stored, "Netlify Edge"; fwd=(stale|miss)/,
)
expect(headers2['netlify-cache-tag']).toEqual(expectedCacheTag)
expect(headers2['netlify-cdn-cache-control']).toMatch(
/s-maxage=31536000,( stale-while-revalidate=31536000,)? durable/,
)
// 4. Unpublish the blob, revalidate the dynamic page, and wait to regenerate
await page.goto(new URL(`/cms/unpublish/${contentKey}`, dynamicCms.url).href)
await page.goto(revalidateAPiUrl)
await page.waitForTimeout(1000)
// 5. Verify the status and headers of the dynamic page
const response3 = await page.goto(routeUrl)
const headers3 = response3?.headers() || {}
expect(response3?.status()).toEqual(404)
expect(headers3['cache-control']).toEqual('public,max-age=0,must-revalidate')
expect(headers3['cache-status']).toMatch(
/"Next.js"; fwd=miss, "Netlify Durable"; fwd=stale; ttl=[0-9]+; stored, "Netlify Edge"; fwd=(stale|miss)/,
)
expect(headers3['netlify-cache-tag']).toEqual(expectedCacheTag)
expect(headers3['netlify-cdn-cache-control']).toMatch(
/s-maxage=31536000,( stale-while-revalidate=31536000,)? durable/,
)
})
}
})
})