Skip to content

Commit 3578bf1

Browse files
authored
test: add integration tests for pages router custom 404 (#379)
* test: add integration tests for pages router custom 404 * test: more detailed test name and some extra comments explaining locale assertions * test: add assertion failure messages to provide more contextual information
1 parent 035d0cc commit 3578bf1

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
export default function NotFound({ locale }) {
2+
return (
3+
<p>
4+
Custom 404 page for locale: <pre data-testid="locale">{locale}</pre>
5+
</p>
6+
)
7+
}
8+
9+
/** @type {import('next').GetStaticProps} */
10+
export const getStaticProps = ({ locale }) => {
11+
return {
12+
props: {
13+
locale,
14+
},
15+
}
16+
}

tests/integration/page-router.test.ts

+44
Original file line numberDiff line numberDiff line change
@@ -129,3 +129,47 @@ test.skipIf(platform === 'win32')<FixtureTestContext>(
129129
expect(response.headers?.['cache-control']).toBe('public, max-age=0, must-revalidate')
130130
},
131131
)
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

Comments
 (0)