@@ -128,7 +128,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
128
128
expect ( headers1 [ 'x-nextjs-cache' ] ) . toBeUndefined ( )
129
129
expect ( headers1 [ 'netlify-cache-tag' ] ) . toBe ( `_n_t_${ encodeURI ( pagePath ) . toLowerCase ( ) } ` )
130
130
expect ( headers1 [ 'netlify-cdn-cache-control' ] ) . toBe (
131
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
131
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
132
+ ? 's-maxage=31536000, durable'
133
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
132
134
)
133
135
134
136
const date1 = await page . textContent ( '[data-testid="date-now"]' )
@@ -156,7 +158,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
156
158
expect ( headers1Json [ 'x-nextjs-cache' ] ) . toBeUndefined ( )
157
159
expect ( headers1Json [ 'netlify-cache-tag' ] ) . toBe ( `_n_t_${ encodeURI ( pagePath ) . toLowerCase ( ) } ` )
158
160
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
159
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
161
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
162
+ ? 's-maxage=31536000, durable'
163
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
160
164
)
161
165
const data1 = ( await response1Json ?. json ( ) ) || { }
162
166
expect ( data1 ?. pageProps ?. time ) . toBe ( date1 )
@@ -181,7 +185,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
181
185
expect ( headers2 [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
182
186
}
183
187
expect ( headers2 [ 'netlify-cdn-cache-control' ] ) . toBe (
184
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
188
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
189
+ ? 's-maxage=31536000, durable'
190
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
185
191
)
186
192
187
193
// the page is cached
@@ -212,7 +218,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
212
218
expect ( headers2Json [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
213
219
}
214
220
expect ( headers2Json [ 'netlify-cdn-cache-control' ] ) . toBe (
215
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
221
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
222
+ ? 's-maxage=31536000, durable'
223
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
216
224
)
217
225
218
226
const data2 = ( await response2Json ?. json ( ) ) || { }
@@ -267,7 +275,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
267
275
expect ( response3Json ?. status ( ) ) . toBe ( 200 )
268
276
expect ( headers3Json [ 'x-nextjs-cache' ] ) . toBeUndefined ( )
269
277
expect ( headers3Json [ 'netlify-cdn-cache-control' ] ) . toBe (
270
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
278
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
279
+ ? 's-maxage=31536000, durable'
280
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
271
281
)
272
282
273
283
const data3 = ( await response3Json ?. json ( ) ) || { }
@@ -382,7 +392,9 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
382
392
expect ( await page . textContent ( 'h1' ) ) . toBe ( '404' )
383
393
384
394
expect ( headers [ 'netlify-cdn-cache-control' ] ) . toBe (
385
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
395
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
396
+ ? 's-maxage=31536000, durable'
397
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
386
398
)
387
399
expect ( headers [ 'cache-control' ] ) . toBe ( 'public,max-age=0,must-revalidate' )
388
400
} )
@@ -532,7 +544,9 @@ test.describe('Page Router with basePath and i18n', () => {
532
544
`_n_t_/en${ encodeURI ( pagePath ) . toLowerCase ( ) } ` ,
533
545
)
534
546
expect ( headers1ImplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
535
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
547
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
548
+ ? 's-maxage=31536000, durable'
549
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
536
550
)
537
551
538
552
const date1ImplicitLocale = await page . textContent ( '[data-testid="date-now"]' )
@@ -560,7 +574,9 @@ test.describe('Page Router with basePath and i18n', () => {
560
574
`_n_t_/en${ encodeURI ( pagePath ) . toLowerCase ( ) } ` ,
561
575
)
562
576
expect ( headers1ExplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
563
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
577
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
578
+ ? 's-maxage=31536000, durable'
579
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
564
580
)
565
581
566
582
const date1ExplicitLocale = await page . textContent ( '[data-testid="date-now"]' )
@@ -594,7 +610,9 @@ test.describe('Page Router with basePath and i18n', () => {
594
610
`_n_t_/en${ encodeURI ( pagePath ) . toLowerCase ( ) } ` ,
595
611
)
596
612
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
597
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
613
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
614
+ ? 's-maxage=31536000, durable'
615
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
598
616
)
599
617
const data1 = ( await response1Json ?. json ( ) ) || { }
600
618
expect ( data1 ?. pageProps ?. time ) . toBe ( date1ImplicitLocale )
@@ -622,7 +640,9 @@ test.describe('Page Router with basePath and i18n', () => {
622
640
expect ( headers2ImplicitLocale [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
623
641
}
624
642
expect ( headers2ImplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
625
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
643
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
644
+ ? 's-maxage=31536000, durable'
645
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
626
646
)
627
647
628
648
// the page is cached
@@ -652,7 +672,9 @@ test.describe('Page Router with basePath and i18n', () => {
652
672
expect ( headers2ExplicitLocale [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
653
673
}
654
674
expect ( headers2ExplicitLocale [ 'netlify-cdn-cache-control' ] ) . toBe (
655
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
675
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
676
+ ? 's-maxage=31536000, durable'
677
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
656
678
)
657
679
658
680
// the page is cached
@@ -683,7 +705,9 @@ test.describe('Page Router with basePath and i18n', () => {
683
705
expect ( headers2Json [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
684
706
}
685
707
expect ( headers2Json [ 'netlify-cdn-cache-control' ] ) . toBe (
686
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
708
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
709
+ ? 's-maxage=31536000, durable'
710
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
687
711
)
688
712
689
713
const data2 = ( await response2Json ?. json ( ) ) || { }
@@ -777,7 +801,9 @@ test.describe('Page Router with basePath and i18n', () => {
777
801
expect ( headers3Json [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
778
802
}
779
803
expect ( headers3Json [ 'netlify-cdn-cache-control' ] ) . toBe (
780
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
804
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
805
+ ? 's-maxage=31536000, durable'
806
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
781
807
)
782
808
783
809
const data3 = ( await response3Json ?. json ( ) ) || { }
@@ -866,7 +892,9 @@ test.describe('Page Router with basePath and i18n', () => {
866
892
expect ( response4Json ?. status ( ) ) . toBe ( 200 )
867
893
expect ( headers4Json [ 'x-nextjs-cache' ] ) . toBeUndefined ( )
868
894
expect ( headers4Json [ 'netlify-cdn-cache-control' ] ) . toBe (
869
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
895
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
896
+ ? 's-maxage=31536000, durable'
897
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
870
898
)
871
899
872
900
const data4 = ( await response4Json ?. json ( ) ) || { }
@@ -912,7 +940,9 @@ test.describe('Page Router with basePath and i18n', () => {
912
940
expect ( headers1 [ 'x-nextjs-cache' ] ) . toBeUndefined ( )
913
941
expect ( headers1 [ 'netlify-cache-tag' ] ) . toBe ( `_n_t_/de${ encodeURI ( pagePath ) . toLowerCase ( ) } ` )
914
942
expect ( headers1 [ 'netlify-cdn-cache-control' ] ) . toBe (
915
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
943
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
944
+ ? 's-maxage=31536000, durable'
945
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
916
946
)
917
947
918
948
const date1 = await page . textContent ( '[data-testid="date-now"]' )
@@ -943,7 +973,9 @@ test.describe('Page Router with basePath and i18n', () => {
943
973
`_n_t_/de${ encodeURI ( pagePath ) . toLowerCase ( ) } ` ,
944
974
)
945
975
expect ( headers1Json [ 'netlify-cdn-cache-control' ] ) . toBe (
946
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
976
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
977
+ ? 's-maxage=31536000, durable'
978
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
947
979
)
948
980
const data1 = ( await response1Json ?. json ( ) ) || { }
949
981
expect ( data1 ?. pageProps ?. time ) . toBe ( date1 )
@@ -971,7 +1003,9 @@ test.describe('Page Router with basePath and i18n', () => {
971
1003
expect ( headers2 [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
972
1004
}
973
1005
expect ( headers2 [ 'netlify-cdn-cache-control' ] ) . toBe (
974
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1006
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
1007
+ ? 's-maxage=31536000, durable'
1008
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
975
1009
)
976
1010
977
1011
// the page is cached
@@ -1003,7 +1037,9 @@ test.describe('Page Router with basePath and i18n', () => {
1003
1037
expect ( headers2Json [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
1004
1038
}
1005
1039
expect ( headers2Json [ 'netlify-cdn-cache-control' ] ) . toBe (
1006
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1040
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
1041
+ ? 's-maxage=31536000, durable'
1042
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1007
1043
)
1008
1044
1009
1045
const data2 = ( await response2Json ?. json ( ) ) || { }
@@ -1070,7 +1106,9 @@ test.describe('Page Router with basePath and i18n', () => {
1070
1106
expect ( headers3Json [ 'cache-status' ] ) . toMatch ( / " N e x t .j s " ; h i t / m)
1071
1107
}
1072
1108
expect ( headers3Json [ 'netlify-cdn-cache-control' ] ) . toBe (
1073
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1109
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
1110
+ ? 's-maxage=31536000, durable'
1111
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1074
1112
)
1075
1113
1076
1114
const data3 = ( await response3Json ?. json ( ) ) || { }
@@ -1114,7 +1152,9 @@ test.describe('Page Router with basePath and i18n', () => {
1114
1152
expect ( await page . textContent ( 'h1' ) ) . toBe ( '404' )
1115
1153
1116
1154
expect ( headers [ 'netlify-cdn-cache-control' ] ) . toBe (
1117
- 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1155
+ nextVersionSatisfies ( '>=15.0.0-canary.187' )
1156
+ ? 's-maxage=31536000, durable'
1157
+ : 's-maxage=31536000, stale-while-revalidate=31536000, durable' ,
1118
1158
)
1119
1159
expect ( headers [ 'cache-control' ] ) . toBe ( 'public,max-age=0,must-revalidate' )
1120
1160
} )
0 commit comments