@@ -208,6 +208,22 @@ test.describe('Simple Page Router (no basePath, no i18n)', () => {
208
208
expect ( headers [ 'cache-control' ] ) . toBe ( 'no-cache,no-store,max-age=0,must-revalidate' )
209
209
} )
210
210
211
+ test ( 'requesting a non existing page route that needs to be fetched from the blob store like 404.html (notFound: true)' , async ( {
212
+ page,
213
+ pageRouter,
214
+ } ) => {
215
+ const response = await page . goto ( new URL ( 'static/not-found' , pageRouter . url ) . href )
216
+ const headers = response ?. headers ( ) || { }
217
+ expect ( response ?. status ( ) ) . toBe ( 404 )
218
+
219
+ expect ( await page . textContent ( 'h1' ) ) . toBe ( '404' )
220
+
221
+ expect ( headers [ 'netlify-cdn-cache-control' ] ) . toBe (
222
+ 's-maxage=31536000, stale-while-revalidate=31536000' ,
223
+ )
224
+ expect ( headers [ 'cache-control' ] ) . toBe ( 'public,max-age=0,must-revalidate' )
225
+ } )
226
+
211
227
test ( 'requesting a page with a very long name works' , async ( { page, pageRouter } ) => {
212
228
const response = await page . goto (
213
229
new URL (
@@ -740,4 +756,36 @@ test.describe('Page Router with basePath and i18n', () => {
740
756
expect ( data3 ?. pageProps ?. time ) . toBe ( date3 )
741
757
} )
742
758
} )
759
+
760
+ test ( 'requesting a non existing page route that needs to be fetched from the blob store like 404.html' , async ( {
761
+ page,
762
+ pageRouter,
763
+ } ) => {
764
+ const response = await page . goto ( new URL ( 'non-exisitng' , pageRouter . url ) . href )
765
+ const headers = response ?. headers ( ) || { }
766
+ expect ( response ?. status ( ) ) . toBe ( 404 )
767
+
768
+ expect ( await page . textContent ( 'h1' ) ) . toBe ( '404' )
769
+
770
+ expect ( headers [ 'netlify-cdn-cache-control' ] ) . toBe (
771
+ 'no-cache, no-store, max-age=0, must-revalidate' ,
772
+ )
773
+ expect ( headers [ 'cache-control' ] ) . toBe ( 'no-cache,no-store,max-age=0,must-revalidate' )
774
+ } )
775
+
776
+ test ( 'requesting a non existing page route that needs to be fetched from the blob store like 404.html (notFound: true)' , async ( {
777
+ page,
778
+ pageRouter,
779
+ } ) => {
780
+ const response = await page . goto ( new URL ( 'static/not-found' , pageRouter . url ) . href )
781
+ const headers = response ?. headers ( ) || { }
782
+ expect ( response ?. status ( ) ) . toBe ( 404 )
783
+
784
+ expect ( await page . textContent ( 'h1' ) ) . toBe ( '404' )
785
+
786
+ expect ( headers [ 'netlify-cdn-cache-control' ] ) . toBe (
787
+ 's-maxage=31536000, stale-while-revalidate=31536000' ,
788
+ )
789
+ expect ( headers [ 'cache-control' ] ) . toBe ( 'public,max-age=0,must-revalidate' )
790
+ } )
743
791
} )
0 commit comments