File size: 17,113 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 |
import { DetachedPromise } from '../../lib/detached-promise'
import { AsyncLocalStorage } from 'async_hooks'
import type { WorkStore } from '../app-render/work-async-storage.external'
import type { WorkUnitStore } from '../app-render/work-unit-async-storage.external'
import type { AfterContext } from './after-context'
describe('AfterContext', () => {
// 'async-local-storage.ts' needs `AsyncLocalStorage` on `globalThis` at import time,
// so we have to do some contortions here to set it up before running anything else
type WASMod = typeof import('../app-render/work-async-storage.external')
type WSMod = typeof import('../app-render/work-unit-async-storage.external')
type AfterMod = typeof import('./after')
type AfterContextMod = typeof import('./after-context')
let workAsyncStorage: WASMod['workAsyncStorage']
let workUnitAsyncStorage: WSMod['workUnitAsyncStorage']
let AfterContext: AfterContextMod['AfterContext']
let after: AfterMod['after']
beforeAll(async () => {
// @ts-expect-error
globalThis.AsyncLocalStorage = AsyncLocalStorage
const WASMod = await import('../app-render/work-async-storage.external')
workAsyncStorage = WASMod.workAsyncStorage
const WSMod = await import('../app-render/work-unit-async-storage.external')
workUnitAsyncStorage = WSMod.workUnitAsyncStorage
const AfterContextMod = await import('./after-context')
AfterContext = AfterContextMod.AfterContext
const AfterMod = await import('./after')
after = AfterMod.after
})
const createRun =
(_afterContext: AfterContext, workStore: WorkStore) =>
<T>(cb: () => T): T => {
return workAsyncStorage.run(workStore, () =>
workUnitAsyncStorage.run(createMockWorkUnitStore(), cb)
)
}
it('runs after() callbacks from a run() callback that resolves', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const promise0 = new DetachedPromise<string>()
const promise1 = new DetachedPromise<string>()
const afterCallback1 = jest.fn(() => promise1.promise)
const promise2 = new DetachedPromise<string>()
const afterCallback2 = jest.fn(() => promise2.promise)
await run(async () => {
after(promise0.promise)
expect(onClose).not.toHaveBeenCalled() // we don't need onClose for bare promises
expect(waitUntil).toHaveBeenCalledTimes(1)
await Promise.resolve(null)
after(afterCallback1)
expect(waitUntil).toHaveBeenCalledTimes(2) // just runCallbacksOnClose
await Promise.resolve(null)
after(afterCallback2)
expect(waitUntil).toHaveBeenCalledTimes(2) // should only `waitUntil(this.runCallbacksOnClose())` once for all callbacks
})
expect(onClose).toHaveBeenCalledTimes(1)
expect(afterCallback1).not.toHaveBeenCalled()
expect(afterCallback2).not.toHaveBeenCalled()
// the response is done.
onCloseCallback!()
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(afterCallback2).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(2)
promise0.resolve('0')
promise1.resolve('1')
promise2.resolve('2')
const results = await Promise.all(waitUntilPromises)
expect(results).toEqual([
'0', // promises are passed to waitUntil as is
undefined, // callbacks all get collected into a big void promise
])
})
it('runs after() callbacks from a run() callback that throws', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const promise1 = new DetachedPromise<string>()
const afterCallback1 = jest.fn(() => promise1.promise)
await run(async () => {
after(afterCallback1)
throw new Error('boom!')
}).catch(() => {})
// runCallbacksOnClose
expect(waitUntil).toHaveBeenCalledTimes(1)
expect(onClose).toHaveBeenCalledTimes(1)
expect(afterCallback1).not.toHaveBeenCalled()
// the response is done.
onCloseCallback!()
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1)
promise1.resolve('1')
const results = await Promise.all(waitUntilPromises)
expect(results).toEqual([undefined])
})
it('runs after() callbacks from a run() callback that streams', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const promise1 = new DetachedPromise<string>()
const afterCallback1 = jest.fn(() => promise1.promise)
const promise2 = new DetachedPromise<string>()
const afterCallback2 = jest.fn(() => promise2.promise)
const streamStarted = new DetachedPromise<void>()
const stream = run(() => {
return new ReadableStream<string>({
async start(controller) {
await streamStarted.promise // block the stream to start it manually later
const delay = () =>
new Promise<void>((resolve) => setTimeout(resolve, 50))
after(afterCallback1)
controller.enqueue('one')
await delay()
expect(waitUntil).toHaveBeenCalledTimes(1) // runCallbacksOnClose
after(afterCallback2)
controller.enqueue('two')
await delay()
expect(waitUntil).toHaveBeenCalledTimes(1) // runCallbacksOnClose
await delay()
controller.close()
},
})
})
expect(onClose).not.toHaveBeenCalled() // no after()s executed yet
expect(afterCallback1).not.toHaveBeenCalled()
expect(afterCallback2).not.toHaveBeenCalled()
// start the stream and consume it, which'll execute the after()s.
{
streamStarted.resolve()
const reader = stream.getReader()
while (true) {
const chunk = await reader.read()
if (chunk.done) {
break
}
}
}
// runCallbacksOnClose
expect(onClose).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1)
expect(afterCallback1).not.toHaveBeenCalled()
expect(afterCallback2).not.toHaveBeenCalled()
// the response is done.
onCloseCallback!()
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(afterCallback2).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1)
promise1.resolve('1')
promise2.resolve('2')
const results = await Promise.all(waitUntilPromises)
expect(results).toEqual([undefined])
})
it('runs after() callbacks added within an after()', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const promise1 = new DetachedPromise<string>()
const afterCallback1 = jest.fn(async () => {
await promise1.promise
after(afterCallback2)
})
const promise2 = new DetachedPromise<string>()
const afterCallback2 = jest.fn(() => promise2.promise)
await run(async () => {
after(afterCallback1)
expect(onClose).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1) // just runCallbacksOnClose
})
expect(onClose).toHaveBeenCalledTimes(1)
expect(afterCallback1).not.toHaveBeenCalled()
expect(afterCallback2).not.toHaveBeenCalled()
// the response is done.
onCloseCallback!()
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(afterCallback2).toHaveBeenCalledTimes(0)
expect(waitUntil).toHaveBeenCalledTimes(1)
promise1.resolve('1')
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(afterCallback2).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1)
promise2.resolve('2')
const results = await Promise.all(waitUntilPromises)
expect(results).toEqual([
undefined, // callbacks all get collected into a big void promise
])
})
it('does not hang forever if onClose failed', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
const onClose = jest.fn(() => {
throw new Error('onClose is broken for some reason')
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const afterCallback1 = jest.fn()
await run(async () => {
after(afterCallback1)
})
expect(waitUntil).toHaveBeenCalledTimes(1) // runCallbacksOnClose
expect(onClose).toHaveBeenCalledTimes(1)
expect(afterCallback1).not.toHaveBeenCalled()
// if we didn't properly reject the runCallbacksOnClose promise, this should hang forever, and get killed by jest.
const results = await Promise.allSettled(waitUntilPromises)
expect(results).toEqual([
{ status: 'rejected', value: undefined, reason: expect.anything() },
])
})
it('runs all after() callbacks even if some of them threw', async () => {
const waitUntilPromises: Promise<unknown>[] = []
const waitUntil = jest.fn((promise) => waitUntilPromises.push(promise))
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const onTaskError = jest.fn()
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError,
})
const workStore = createMockWorkStore(afterContext)
// ==================================
const promise1 = new DetachedPromise<string>()
const afterCallback1 = jest.fn(() => promise1.promise)
const thrownFromCallback2 = new Error('2')
const afterCallback2 = jest.fn(() => {
throw thrownFromCallback2
})
const promise3 = new DetachedPromise<string>()
const afterCallback3 = jest.fn(() => promise3.promise)
const thrownFromPromise4 = new Error('4')
const promise4 = Promise.reject(thrownFromPromise4)
workAsyncStorage.run(workStore, () =>
workUnitAsyncStorage.run(createMockWorkUnitStore(), () => {
after(afterCallback1)
after(afterCallback2)
after(afterCallback3)
after(promise4)
})
)
expect(afterCallback1).not.toHaveBeenCalled()
expect(afterCallback2).not.toHaveBeenCalled()
expect(afterCallback3).not.toHaveBeenCalled()
expect(waitUntil).toHaveBeenCalledTimes(1 + 1) // once for callbacks, once for the promise
// the response is done.
onCloseCallback!()
await Promise.resolve(null)
expect(afterCallback1).toHaveBeenCalledTimes(1)
expect(afterCallback2).toHaveBeenCalledTimes(1)
expect(afterCallback3).toHaveBeenCalledTimes(1)
expect(waitUntil).toHaveBeenCalledTimes(1 + 1) // once for callbacks, once for the promise
// resolve any pending promises we have
const thrownFromCallback1 = new Error('1')
promise1.reject(thrownFromCallback1)
promise3.resolve('3')
const results = await Promise.all(waitUntilPromises)
expect(results).toEqual([undefined])
expect(onTaskError).toHaveBeenCalledWith(thrownFromCallback2)
expect(onTaskError).toHaveBeenCalledWith(thrownFromCallback1)
expect(onTaskError).toHaveBeenCalledWith(thrownFromPromise4)
})
it('throws from after() if waitUntil is not provided', async () => {
const waitUntil = undefined
const onClose = jest.fn()
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const afterCallback1 = jest.fn()
expect(() =>
run(() => {
after(afterCallback1)
})
).toThrow(/`waitUntil` is not available in the current environment/)
expect(onClose).not.toHaveBeenCalled()
expect(afterCallback1).not.toHaveBeenCalled()
})
it('does NOT shadow workAsyncStorage within after callbacks', async () => {
const waitUntil = jest.fn()
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const stores = new DetachedPromise<
[WorkStore | undefined, WorkStore | undefined]
>()
await run(async () => {
const store1 = workAsyncStorage.getStore()
after(() => {
const store2 = workAsyncStorage.getStore()
stores.resolve([store1, store2])
})
})
// the response is done.
onCloseCallback!()
const [store1, store2] = await stores.promise
// if we use .toBe, the proxy from createMockWorkStore throws because jest checks '$$typeof'
expect(store1).toBeTruthy()
expect(store2).toBeTruthy()
expect(store1 === workStore).toBe(true)
expect(store2 === store1).toBe(true)
})
it('preserves the ALS context the callback was created in', async () => {
type TestStore = string
const testStorage = new AsyncLocalStorage<TestStore>()
const waitUntil = jest.fn()
let onCloseCallback: (() => void) | undefined = undefined
const onClose = jest.fn((cb) => {
onCloseCallback = cb
})
const afterContext = new AfterContext({
waitUntil,
onClose,
onTaskError: undefined,
})
const workStore = createMockWorkStore(afterContext)
const run = createRun(afterContext, workStore)
// ==================================
const stores = new DetachedPromise<
[TestStore | undefined, TestStore | undefined]
>()
await testStorage.run('value', () =>
run(async () => {
const store1 = testStorage.getStore()
after(() => {
const store2 = testStorage.getStore()
stores.resolve([store1, store2])
})
})
)
// the response is done.
onCloseCallback!()
const [store1, store2] = await stores.promise
// if we use .toBe, the proxy from createMockWorkStore throws because jest checks '$$typeof'
expect(store1).toBeDefined()
expect(store2).toBeDefined()
expect(store1 === 'value').toBe(true)
expect(store2 === store1).toBe(true)
})
})
const createMockWorkStore = (afterContext: AfterContext): WorkStore => {
const partialStore: Partial<WorkStore> = {
afterContext: afterContext,
forceStatic: false,
forceDynamic: false,
dynamicShouldError: false,
isStaticGeneration: false,
pendingRevalidatedTags: [],
pendingRevalidates: undefined,
pendingRevalidateWrites: undefined,
incrementalCache: undefined,
}
return new Proxy(partialStore as WorkStore, {
get(target, key) {
if (key in target) {
return target[key as keyof typeof target]
}
throw new Error(
`WorkStore property not mocked: '${typeof key === 'symbol' ? key.toString() : key}'`
)
},
})
}
const createMockWorkUnitStore = () => {
return { phase: 'render' } as WorkUnitStore
}
|