@@ -80,12 +80,28 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
80
80
revalidateApiBasePath : '/api/revalidate-no-await' ,
81
81
expectedH1Content : 'Product not-prerendered-and-not-awaited-revalidation' ,
82
82
} ,
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
+ } ,
83
99
] ) {
84
100
test ( label , async ( { page, pollUntilHeadersMatch, pageRouter } ) => {
85
101
// in case there is retry or some other test did hit that path before
86
102
// we want to make sure that cdn cache is not warmed up
87
103
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 ,
89
105
)
90
106
expect ( purgeCdnCache ?. status ( ) ) . toBe ( 200 )
91
107
@@ -110,7 +126,7 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
110
126
const headers1 = response1 ?. headers ( ) || { }
111
127
expect ( response1 ?. status ( ) ) . toBe ( 200 )
112
128
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 ( ) } ` )
114
130
expect ( headers1 [ 'netlify-cdn-cache-control' ] ) . toBe (
115
131
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
116
132
)
@@ -138,7 +154,7 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
138
154
const headers1Json = response1Json ?. headers ( ) || { }
139
155
expect ( response1Json ?. status ( ) ) . toBe ( 200 )
140
156
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 ( ) } ` )
142
158
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
143
159
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
144
160
)
@@ -494,7 +510,9 @@ test.describe('Page Router with basePath and i18n', () => {
494
510
const headers1ImplicitLocale = response1ImplicitLocale ?. headers ( ) || { }
495
511
expect ( response1ImplicitLocale ?. status ( ) ) . toBe ( 200 )
496
512
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
+ )
498
516
expect ( headers1ImplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
499
517
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
500
518
)
@@ -520,7 +538,9 @@ test.describe('Page Router with basePath and i18n', () => {
520
538
const headers1ExplicitLocale = response1ExplicitLocale ?. headers ( ) || { }
521
539
expect ( response1ExplicitLocale ?. status ( ) ) . toBe ( 200 )
522
540
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
+ )
524
544
expect ( headers1ExplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
525
545
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
526
546
)
@@ -552,7 +572,9 @@ test.describe('Page Router with basePath and i18n', () => {
552
572
const headers1Json = response1Json ?. headers ( ) || { }
553
573
expect ( response1Json ?. status ( ) ) . toBe ( 200 )
554
574
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
+ )
556
578
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
557
579
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
558
580
)
@@ -870,7 +892,7 @@ test.describe('Page Router with basePath and i18n', () => {
870
892
const headers1 = response1 ?. headers ( ) || { }
871
893
expect ( response1 ?. status ( ) ) . toBe ( 200 )
872
894
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 ( ) } ` )
874
896
expect ( headers1 [ 'netlify-cdn-cache-control' ] ) . toBe (
875
897
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
876
898
)
@@ -899,7 +921,9 @@ test.describe('Page Router with basePath and i18n', () => {
899
921
const headers1Json = response1Json ?. headers ( ) || { }
900
922
expect ( response1Json ?. status ( ) ) . toBe ( 200 )
901
923
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
+ )
903
927
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
904
928
's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
905
929
)
0 commit comments