Skip to content

Commit 30ef981

Browse files
mrstorkpieh
andauthored
fix: manually triggered notFound pages in page-router for older versions of next (#541)
* test: update simple-app fixture to have clearer route and to use custom 404 * fix: improve parallel route matching when building server cache --------- Co-authored-by: Michal Piechowiak <[email protected]>
1 parent 12af519 commit 30ef981

File tree

5 files changed

+21
-7
lines changed

5 files changed

+21
-7
lines changed

src/build/content/prerendered.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,13 @@ const buildAppCacheValue = async (path: string): Promise<CachedPageValue> => {
5757
readFile(`${path}.prefetch.rsc`, 'utf-8'),
5858
)
5959

60-
if (!meta.status && meta.headers['x-next-cache-tags'].includes('_N_T_/not-found/layout')) {
60+
// Next < v14.2.0 does not set meta.status when notFound() is called directly on a page
61+
// Exclude Parallel routes, they are 404s when visited directly
62+
if (
63+
!meta.status &&
64+
rsc.includes('NEXT_NOT_FOUND') &&
65+
!meta.headers['x-next-cache-tags'].includes('/@')
66+
) {
6167
meta.status = 404
6268
}
6369

tests/e2e/simple-app.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ test('requesting a non existing page route that needs to be fetched from the blo
213213
const headers = response?.headers() || {}
214214
expect(response?.status()).toBe(404)
215215

216-
expect(await page.textContent('h1')).toBe('404')
216+
expect(await page.textContent('h1')).toBe('404 Not Found')
217217

218218
expect(headers['netlify-cdn-cache-control']).toBe(
219219
'private, no-cache, no-store, max-age=0, must-revalidate',
@@ -225,11 +225,11 @@ test('requesting a non existing page route that needs to be fetched from the blo
225225
page,
226226
simple,
227227
}) => {
228-
const response = await page.goto(new URL('not-found', simple.url).href)
228+
const response = await page.goto(new URL('route-resolves-to-not-found', simple.url).href)
229229
const headers = response?.headers() || {}
230230
expect(response?.status()).toBe(404)
231231

232-
expect(await page.textContent('h1')).toBe('404')
232+
expect(await page.textContent('h1')).toBe('404 Not Found')
233233

234234
expect(headers['netlify-cdn-cache-control']).toBe(
235235
's-maxage=31536000, stale-while-revalidate=31536000',
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export default function NotFound() {
2+
return (
3+
<div>
4+
<h1>404 Not Found</h1>
5+
<p>Custom Not Found Page</p>
6+
</div>
7+
)
8+
}

tests/integration/simple-app.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ test<FixtureTestContext>('Test that the simple next app is working', async (ctx)
6565
'/image/remote-pattern-1',
6666
'/image/remote-pattern-2',
6767
'/index',
68-
'/not-found',
6968
'/other',
7069
'/redirect',
7170
'/redirect/response',
71+
'/route-resolves-to-not-found',
7272
'404.html',
7373
'500.html',
7474
])
@@ -82,13 +82,13 @@ test<FixtureTestContext>('Test that the simple next app is working', async (ctx)
8282
expect(other.statusCode).toBe(200)
8383
expect(load(other.body)('h1').text()).toBe('Other')
8484

85-
const notFound = await invokeFunction(ctx, { url: 'not-found' })
85+
const notFound = await invokeFunction(ctx, { url: 'route-resolves-to-not-found' })
8686
expect(notFound.statusCode).toBe(404)
8787
expect(notFound.body).toContain('NEXT_NOT_FOUND')
8888

8989
const notExisting = await invokeFunction(ctx, { url: 'non-exisitng' })
9090
expect(notExisting.statusCode).toBe(404)
91-
expect(load(notExisting.body)('h1').text()).toBe('404')
91+
expect(load(notExisting.body)('h1').text()).toBe('404 Not Found')
9292
})
9393

9494
describe('verification', () => {

0 commit comments

Comments
 (0)