@@ -129,3 +129,47 @@ test.skipIf(platform === 'win32')<FixtureTestContext>(
129
129
expect ( response . headers ?. [ 'cache-control' ] ) . toBe ( 'public, max-age=0, must-revalidate' )
130
130
} ,
131
131
)
132
+
133
+ test < FixtureTestContext > ( 'Should serve correct locale-aware custom 404 pages' , async ( ctx ) => {
134
+ await createFixture ( 'page-router-base-path-i18n' , ctx )
135
+ await runPlugin ( ctx )
136
+
137
+ const responseImplicitDefaultLocale = await invokeFunction ( ctx , {
138
+ url : '/base/path/not-existing-page' ,
139
+ } )
140
+
141
+ expect (
142
+ responseImplicitDefaultLocale . statusCode ,
143
+ 'Response for not existing route if locale is not explicitly used in pathname (after basePath) should have 404 status' ,
144
+ ) . toBe ( 404 )
145
+ expect (
146
+ load ( responseImplicitDefaultLocale . body ) ( '[data-testid="locale"]' ) . text ( ) ,
147
+ 'Served 404 page content should use default locale if locale is not explicitly used in pathname (after basePath)' ,
148
+ ) . toBe ( 'en' )
149
+
150
+ const responseExplicitDefaultLocale = await invokeFunction ( ctx , {
151
+ url : '/base/path/en/not-existing-page' ,
152
+ } )
153
+
154
+ expect (
155
+ responseExplicitDefaultLocale . statusCode ,
156
+ 'Response for not existing route if default locale is explicitly used in pathname (after basePath) should have 404 status' ,
157
+ ) . toBe ( 404 )
158
+ expect (
159
+ load ( responseExplicitDefaultLocale . body ) ( '[data-testid="locale"]' ) . text ( ) ,
160
+ 'Served 404 page content should use default locale if default locale is explicitly used in pathname (after basePath)' ,
161
+ ) . toBe ( 'en' )
162
+
163
+ const responseNonDefaultLocale = await invokeFunction ( ctx , {
164
+ url : '/base/path/fr/not-existing-page' ,
165
+ } )
166
+
167
+ expect (
168
+ responseNonDefaultLocale . statusCode ,
169
+ 'Response for not existing route if non-default locale is explicitly used in pathname (after basePath) should have 404 status' ,
170
+ ) . toBe ( 404 )
171
+ expect (
172
+ load ( responseNonDefaultLocale . body ) ( '[data-testid="locale"]' ) . text ( ) ,
173
+ 'Served 404 page content should use non-default locale if non-default locale is explicitly used in pathname (after basePath)' ,
174
+ ) . toBe ( 'fr' )
175
+ } )
0 commit comments