Skip to content

Commit b9a0df6

Browse files
committed
test: add cases for page router non-ascii paths and cache tags
1 parent 451a20c commit b9a0df6

File tree

2 files changed

+38
-8
lines changed

2 files changed

+38
-8
lines changed

tests/e2e/page-router.test.ts

+32-8
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,28 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
8080
revalidateApiBasePath: '/api/revalidate-no-await',
8181
expectedH1Content: 'Product not-prerendered-and-not-awaited-revalidation',
8282
},
83+
{
84+
label:
85+
'prerendered page with dynamic path and awaited res.revalidate() - non-ASCII variant',
86+
prerendered: true,
87+
pagePath: '/products/事前レンダリング',
88+
revalidateApiBasePath: '/api/revalidate',
89+
expectedH1Content: 'Product 事前レンダリング',
90+
},
91+
{
92+
label:
93+
'not prerendered page with dynamic path and awaited res.revalidate() - non-ASCII variant',
94+
prerendered: false,
95+
pagePath: '/products/事前レンダリングされていない',
96+
revalidateApiBasePath: '/api/revalidate',
97+
expectedH1Content: 'Product 事前レンダリングされていない',
98+
},
8399
]) {
84100
test(label, async ({ page, pollUntilHeadersMatch, pageRouter }) => {
85101
// in case there is retry or some other test did hit that path before
86102
// we want to make sure that cdn cache is not warmed up
87103
const purgeCdnCache = await page.goto(
88-
new URL(`/api/purge-cdn?path=${pagePath}`, pageRouter.url).href,
104+
new URL(`/api/purge-cdn?path=${encodeURI(pagePath)}`, pageRouter.url).href,
89105
)
90106
expect(purgeCdnCache?.status()).toBe(200)
91107

@@ -110,7 +126,7 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
110126
const headers1 = response1?.headers() || {}
111127
expect(response1?.status()).toBe(200)
112128
expect(headers1['x-nextjs-cache']).toBeUndefined()
113-
expect(headers1['netlify-cache-tag']).toBe(`_n_t_${pagePath}`)
129+
expect(headers1['netlify-cache-tag']).toBe(`_n_t_${encodeURI(pagePath).toLowerCase()}`)
114130
expect(headers1['netlify-cdn-cache-control']).toBe(
115131
's-maxage=31536000, stale-while-revalidate=31536000, durable',
116132
)
@@ -138,7 +154,7 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
138154
const headers1Json = response1Json?.headers() || {}
139155
expect(response1Json?.status()).toBe(200)
140156
expect(headers1Json['x-nextjs-cache']).toBeUndefined()
141-
expect(headers1Json['netlify-cache-tag']).toBe(`_n_t_${pagePath}`)
157+
expect(headers1Json['netlify-cache-tag']).toBe(`_n_t_${encodeURI(pagePath).toLowerCase()}`)
142158
expect(headers1Json['netlify-cdn-cache-control']).toBe(
143159
's-maxage=31536000, stale-while-revalidate=31536000, durable',
144160
)
@@ -494,7 +510,9 @@ test.describe('Page Router with basePath and i18n', () => {
494510
const headers1ImplicitLocale = response1ImplicitLocale?.headers() || {}
495511
expect(response1ImplicitLocale?.status()).toBe(200)
496512
expect(headers1ImplicitLocale['x-nextjs-cache']).toBeUndefined()
497-
expect(headers1ImplicitLocale['netlify-cache-tag']).toBe(`_n_t_/en${pagePath}`)
513+
expect(headers1ImplicitLocale['netlify-cache-tag']).toBe(
514+
`_n_t_/en${encodeURI(pagePath).toLowerCase()}`,
515+
)
498516
expect(headers1ImplicitLocale['netlify-cdn-cache-control']).toBe(
499517
's-maxage=31536000, stale-while-revalidate=31536000, durable',
500518
)
@@ -520,7 +538,9 @@ test.describe('Page Router with basePath and i18n', () => {
520538
const headers1ExplicitLocale = response1ExplicitLocale?.headers() || {}
521539
expect(response1ExplicitLocale?.status()).toBe(200)
522540
expect(headers1ExplicitLocale['x-nextjs-cache']).toBeUndefined()
523-
expect(headers1ExplicitLocale['netlify-cache-tag']).toBe(`_n_t_/en${pagePath}`)
541+
expect(headers1ExplicitLocale['netlify-cache-tag']).toBe(
542+
`_n_t_/en${encodeURI(pagePath).toLowerCase()}`,
543+
)
524544
expect(headers1ExplicitLocale['netlify-cdn-cache-control']).toBe(
525545
's-maxage=31536000, stale-while-revalidate=31536000, durable',
526546
)
@@ -552,7 +572,9 @@ test.describe('Page Router with basePath and i18n', () => {
552572
const headers1Json = response1Json?.headers() || {}
553573
expect(response1Json?.status()).toBe(200)
554574
expect(headers1Json['x-nextjs-cache']).toBeUndefined()
555-
expect(headers1Json['netlify-cache-tag']).toBe(`_n_t_/en${pagePath}`)
575+
expect(headers1Json['netlify-cache-tag']).toBe(
576+
`_n_t_/en${encodeURI(pagePath).toLowerCase()}`,
577+
)
556578
expect(headers1Json['netlify-cdn-cache-control']).toBe(
557579
's-maxage=31536000, stale-while-revalidate=31536000, durable',
558580
)
@@ -870,7 +892,7 @@ test.describe('Page Router with basePath and i18n', () => {
870892
const headers1 = response1?.headers() || {}
871893
expect(response1?.status()).toBe(200)
872894
expect(headers1['x-nextjs-cache']).toBeUndefined()
873-
expect(headers1['netlify-cache-tag']).toBe(`_n_t_/de${pagePath}`)
895+
expect(headers1['netlify-cache-tag']).toBe(`_n_t_/de${encodeURI(pagePath).toLowerCase()}`)
874896
expect(headers1['netlify-cdn-cache-control']).toBe(
875897
's-maxage=31536000, stale-while-revalidate=31536000, durable',
876898
)
@@ -899,7 +921,9 @@ test.describe('Page Router with basePath and i18n', () => {
899921
const headers1Json = response1Json?.headers() || {}
900922
expect(response1Json?.status()).toBe(200)
901923
expect(headers1Json['x-nextjs-cache']).toBeUndefined()
902-
expect(headers1Json['netlify-cache-tag']).toBe(`_n_t_/de${pagePath}`)
924+
expect(headers1Json['netlify-cache-tag']).toBe(
925+
`_n_t_/de${encodeURI(pagePath).toLowerCase()}`,
926+
)
903927
expect(headers1Json['netlify-cdn-cache-control']).toBe(
904928
's-maxage=31536000, stale-while-revalidate=31536000, durable',
905929
)

tests/fixtures/page-router/pages/products/[slug].js

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ export const getStaticPaths = () => {
3030
slug: 'prerendered',
3131
},
3232
},
33+
{
34+
params: {
35+
// Japanese prerendered (non-ascii)
36+
slug: '事前レンダリング',
37+
},
38+
},
3339
],
3440
fallback: 'blocking', // false or "blocking"
3541
}

0 commit comments

Comments
 (0)