rsnext/test/e2e/app-dir/app-fetch-deduping/app-fetch-deduping.test.ts
Zack Tanner 5da8ad7baf
move static worker IPC server behind experimental flag (#57943)
A shared incremental cache IPC server was introduced for build-time static workers as an optimization to dedupe fetch requests, however this can cause fetch-related flakiness to builds under certain conditions (e.g., large payloads).

This moves the optimization behind an experimental flag to unblock those running into IPC-related build time errors while we work on an alternative solution for the underlying issue

Fixes #53695
2023-11-02 20:26:55 +00:00

90 lines
2.4 KiB
TypeScript

import { findPort } from 'next-test-utils'
import http from 'http'
import { outdent } from 'outdent'
import { FileRef, createNext } from 'e2e-utils'
describe('app-fetch-deduping', () => {
if ((global as any).isNextStart) {
describe('during static generation', () => {
let externalServerPort: number
let externalServer: http.Server
let requests = []
beforeAll(async () => {
externalServerPort = await findPort()
externalServer = http.createServer((req, res) => {
requests.push(req.url)
res.end(`Request ${req.url} received at ${Date.now()}`)
})
await new Promise<void>((resolve, reject) => {
externalServer.listen(externalServerPort, () => {
resolve()
})
externalServer.once('error', (err) => {
reject(err)
})
})
})
beforeEach(() => {
requests = []
})
afterAll(() => externalServer.close())
it('dedupes requests amongst static workers when experimental.staticWorkerRequestDeduping is enabled', async () => {
const next = await createNext({
files: new FileRef(__dirname),
env: { TEST_SERVER_PORT: `${externalServerPort}` },
nextConfig: {
experimental: {
staticWorkerRequestDeduping: true,
},
},
})
expect(requests.length).toBe(1)
await next.destroy()
})
})
} else if ((global as any).isNextDev) {
describe('during next dev', () => {
it('should dedupe requests called from the same component', async () => {
const next = await createNext({
files: new FileRef(__dirname),
})
await next.patchFile(
'app/test/page.tsx',
outdent`
async function getTime() {
const res = await fetch("http://localhost:${next.appPort}/api/time")
return res.text()
}
export default async function Home() {
await getTime()
await getTime()
const time = await getTime()
return <h1>{time}</h1>
}
`
)
await next.render('/test')
let count = next.cliOutput.split('Starting...').length - 1
expect(count).toBe(1)
await next.destroy()
})
})
} else {
it('should skip other scenarios', () => {})
return
}
})