File size: 7,275 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
import { join } from 'path'
import { NextInstance, createNext, FileRef } from 'e2e-utils'
import {
fetchViaHTTP,
findPort,
initNextServerScript,
killApp,
launchApp,
nextBuild,
nextStart,
retry,
waitFor,
} from 'next-test-utils'
import fs from 'fs-extra'
import glob from 'glob'
import { LONG_RUNNING_MS } from './src/pages/api/long-running'
import { once } from 'events'
const appDir = join(__dirname, './src')
let appPort
let app: Awaited<ReturnType<typeof launchApp>>
function assertDefined<T>(value: T | void): asserts value is T {
expect(value).toBeDefined()
}
describe('Graceful Shutdown', () => {
describe('development (next dev)', () => {
beforeEach(async () => {
appPort = await findPort()
app = await launchApp(appDir, appPort)
})
afterEach(() => killApp(app))
runTests(true)
})
;(process.env.IS_TURBOPACK_TEST && !process.env.TURBOPACK_BUILD
? describe.skip
: describe)('production (next start)', () => {
beforeAll(async () => {
await nextBuild(appDir)
})
beforeEach(async () => {
appPort = await findPort()
app = await nextStart(appDir, appPort)
})
afterEach(() => killApp(app))
runTests()
})
;(process.env.IS_TURBOPACK_TEST && !process.env.TURBOPACK_BUILD
? describe.skip
: describe)('production (standalone mode)', () => {
let next: NextInstance
let serverFile
const projectFiles = {
'next.config.mjs': `export default { output: 'standalone' }`,
}
for (const file of glob.sync('*', { cwd: appDir, dot: false })) {
projectFiles[file] = new FileRef(join(appDir, file))
}
beforeAll(async () => {
next = await createNext({
files: projectFiles,
dependencies: {
swr: 'latest',
},
})
await next.stop()
await fs.move(
join(next.testDir, '.next/standalone'),
join(next.testDir, 'standalone')
)
for (const file of await fs.readdir(next.testDir)) {
if (file !== 'standalone') {
await fs.remove(join(next.testDir, file))
}
}
const files = glob.sync('**/*', {
cwd: join(next.testDir, 'standalone/.next/server/pages'),
dot: true,
})
for (const file of files) {
if (file.endsWith('.json') || file.endsWith('.html')) {
await fs.remove(join(next.testDir, '.next/server', file))
}
}
serverFile = join(next.testDir, 'standalone/server.js')
})
beforeEach(async () => {
appPort = await findPort()
app = await initNextServerScript(
serverFile,
/✓ Ready in \d+m?s/,
{
...process.env,
NEXT_EXIT_TIMEOUT_MS: '10',
PORT: appPort.toString(),
},
undefined,
{ cwd: next.testDir }
)
})
afterEach(() => killApp(app))
afterAll(() => next.destroy())
runTests()
})
})
function runTests(dev = false) {
if (dev) {
it('should shut down child immediately', async () => {
const appKilledPromise = once(app, 'exit')
// let the dev server compile the route before running the test
await expect(
fetchViaHTTP(appPort, '/api/long-running')
).resolves.toBeDefined()
const resPromise = fetchViaHTTP(appPort, '/api/long-running')
// yield event loop to kick off request before killing the app
await waitFor(20)
process.kill(app.pid, 'SIGTERM')
expect(app.exitCode).toBe(null)
// `next dev` should kill the child immediately
let start = Date.now()
await expect(resPromise).rejects.toThrow()
expect(Date.now() - start).toBeLessThan(LONG_RUNNING_MS)
// `next dev` parent process is still running cleanup
expect(app.exitCode).toBe(null)
// App finally shuts down
expect(await appKilledPromise).toEqual([0, null])
expect(app.exitCode).toBe(0)
})
} else {
// TODO: investigate this is constantly failing
it.skip('should wait for requests to complete before exiting', async () => {
const appKilledPromise = once(app, 'exit')
let responseResolved = false
const resPromise = fetchViaHTTP(appPort, '/api/long-running')
.then((res) => {
responseResolved = true
return res
})
.catch(() => {})
// yield event loop to kick off request before killing the app
await waitFor(20)
process.kill(app.pid, 'SIGTERM')
expect(app.exitCode).toBe(null)
// Long running response should still be running after a bit
await waitFor(LONG_RUNNING_MS / 2)
expect(app.exitCode).toBe(null)
expect(responseResolved).toBe(false)
// App responds as expected without being interrupted
const res = await resPromise
assertDefined(res)
expect(res.status).toBe(200)
expect(await res.json()).toStrictEqual({ hello: 'world' })
// App is still running briefly after response returns
expect(app.exitCode).toBe(null)
expect(responseResolved).toBe(true)
// App finally shuts down
expect(await appKilledPromise).toEqual([0, null])
expect(app.exitCode).toBe(0)
})
describe('should not accept new requests during shutdown cleanup', () => {
it('should finish pending requests but refuse new ones', async () => {
const appKilledPromise = once(app, 'exit')
const resPromise = fetchViaHTTP(appPort, '/api/long-running')
// yield event loop to kick off request before killing the app
await waitFor(20)
process.kill(app.pid, 'SIGTERM')
expect(app.exitCode).toBe(null)
// The app should start rejecting new connections soon
await waitForAppToStartRefusingConnections(
() => fetchViaHTTP(appPort, '/api/fast'),
1000
)
// Original request responds as expected without being interrupted
await expect(resPromise).resolves.toBeDefined()
const res = await resPromise
expect(res.status).toBe(200)
expect(await res.json()).toStrictEqual({ hello: 'world' })
// App finally shuts down
expect(await appKilledPromise).toEqual([0, null])
expect(app.exitCode).toBe(0)
})
it('should stop accepting new requests when shutting down', async () => {
const appKilledPromise = once(app, 'exit')
process.kill(app.pid, 'SIGTERM')
expect(app.exitCode).toBe(null)
// The app should start rejecting connections soon
await waitForAppToStartRefusingConnections(
() => fetchViaHTTP(appPort, '/api/fast'),
1000
)
// App finally shuts down
expect(await appKilledPromise).toEqual([0, null])
expect(app.exitCode).toBe(0)
})
})
}
}
async function waitForAppToStartRefusingConnections(
sendRequest: () => Promise<import('node-fetch').Response>,
maxDuration: number
) {
// shutdown is async and can take a moment, so this is retried
await retry(
async () => {
await expect(sendRequest).rejects.toEqual(
expect.objectContaining({
code: 'ECONNREFUSED',
})
)
},
maxDuration,
100,
'wait for app to start rejecting connections'
)
}
|