Skip to content

Commit a5e4dc4

Browse files
committed
test: e2e simple next/after test
1 parent 00e3a4b commit a5e4dc4

File tree

4 files changed

+67
-0
lines changed

4 files changed

+67
-0
lines changed

tests/e2e/simple-app.test.ts

+39
Original file line numberDiff line numberDiff line change
@@ -272,3 +272,42 @@ test('can require CJS module that is not bundled', async ({ simple }) => {
272272
expect(parsedBody.notBundledCJSModule.isBundled).toEqual(false)
273273
expect(parsedBody.bundledCJSModule.isBundled).toEqual(true)
274274
})
275+
276+
test('next/after callback is executed and finishes', async ({ page, simple }) => {
277+
test.skip(!nextVersionSatisfies('>=15.0.0'), 'This test is only for Next.js 15+')
278+
279+
// trigger initial request to check page which might be stale and allow regenerating in background
280+
await page.goto(`${simple.url}/after/check`)
281+
282+
await new Promise((resolve) => setTimeout(resolve, 5000))
283+
284+
// after it was possibly regenerated we can start checking actual content of the page
285+
await page.goto(`${simple.url}/after/check`)
286+
const pageInfoLocator1 = await page.locator('#page-info')
287+
const pageInfo1 = JSON.parse((await pageInfoLocator1.textContent()) ?? '{}')
288+
289+
expect(typeof pageInfo1?.timestamp, 'Check page should have timestamp').toBe('number')
290+
291+
await page.goto(`${simple.url}/after/check`)
292+
const pageInfoLocator2 = await page.locator('#page-info')
293+
const pageInfo2 = JSON.parse((await pageInfoLocator2.textContent()) ?? '{}')
294+
295+
expect(typeof pageInfo2?.timestamp, 'Check page should have timestamp').toBe('number')
296+
297+
expect(pageInfo2.timestamp, 'Check page should be cached').toBe(pageInfo1.timestamp)
298+
299+
await page.goto(`${simple.url}/after/trigger`)
300+
301+
// wait for next/after to trigger revalidation of check page
302+
await new Promise((resolve) => setTimeout(resolve, 5000))
303+
304+
await page.goto(`${simple.url}/after/check`)
305+
const pageInfoLocator3 = await page.locator('#page-info')
306+
const pageInfo3 = JSON.parse((await pageInfoLocator3.textContent()) ?? '{}')
307+
308+
expect(typeof pageInfo3?.timestamp, 'Check page should have timestamp').toBe('number')
309+
expect(
310+
pageInfo3.timestamp,
311+
'Check page should be invalidated with newer timestamp',
312+
).toBeGreaterThan(pageInfo1.timestamp)
313+
})
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export const revalidate = 3600 // arbitrarily long, just so that it doesn't happen during a test run
2+
3+
export default async function Page() {
4+
const data = {
5+
timestamp: Date.now(),
6+
}
7+
console.log('/timestamp/key/[key] rendered', data)
8+
9+
return <div id="page-info">{JSON.stringify(data)}</div>
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { revalidatePath } from 'next/cache'
2+
import { unstable_after as after, connection } from 'next/server'
3+
4+
export default async function Page() {
5+
await connection()
6+
after(async () => {
7+
// this will run after response was sent
8+
console.log('after() triggered')
9+
console.log('after() sleep 1s')
10+
await new Promise((resolve) => setTimeout(resolve, 1000))
11+
12+
console.log('after() revalidatePath /after/check')
13+
revalidatePath('/after/check')
14+
})
15+
16+
return <div>Page with after()</div>
17+
}

tests/fixtures/simple/next.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const nextConfig = {
88
outputFileTracingIncludes: {
99
'/': ['public/**'],
1010
},
11+
after: true,
1112
},
1213
images: {
1314
remotePatterns: [

0 commit comments

Comments
 (0)