-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
feat(cloudflare): Introduce lock instrumentation for context.waitUntil
to prevent multiple instrumentation
#17539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ceac7eb
Introduce lock instrumentation for `context.waitUntil`
3218728
Fix typo in mock `waitUntil` implementation in tests
9d4bcf9
Simplify `FlushLock` instrumentation logic
20e6bae
Refactor tests to simplify `waitUntil` handling
7fa361c
Add test to ensure `waitUntil` is not wrapped twice
02c0238
Clone execution context to ensure method binding
4d46261
Replace `Promise.withResolvers` with `createPromiseResolver`
2249f68
Refactor and rename utilities for execution context handling
cef17b3
Enhance `copyExecutionContext` with binding prevention
0dc5c8b
Refactor `copyExecutionContext` for method binding clarity
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { type ExecutionContext } from '@cloudflare/workers-types'; | ||
|
||
/** | ||
* Clones the given execution context by creating a shallow copy while ensuring the binding of specific methods. | ||
* | ||
* @param {ExecutionContext|undefined} ctx - The execution context to clone. Can be undefined. | ||
* @return {ExecutionContext|undefined} A cloned execution context with bound methods, or the original undefined value if no context was provided. | ||
*/ | ||
export function cloneExecutionContext<T extends ExecutionContext | undefined>(ctx: T): T { | ||
if (!ctx) return ctx; | ||
return { | ||
...ctx, | ||
...('waitUntil' in ctx && { waitUntil: ctx.waitUntil.bind(ctx) }), | ||
...('passThroughOnException' in ctx && { passThroughOnException: ctx.passThroughOnException.bind(ctx) }), | ||
}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
type PromiseWithResolvers<T, E = unknown> = { | ||
readonly promise: Promise<T>; | ||
readonly resolve: (value?: T | PromiseLike<T>) => void; | ||
readonly reject: (reason?: E) => void; | ||
}; | ||
/** | ||
* Creates an object containing a promise, along with its corresponding resolve and reject functions. | ||
* | ||
* This method provides a convenient way to create a promise and access its resolvers externally. | ||
* | ||
* @template T - The type of the resolved value of the promise. | ||
* @template E - The type of the rejected value of the promise. Defaults to `unknown`. | ||
* @return {PromiseWithResolvers<T, E>} An object containing the promise and its resolve and reject functions. | ||
*/ | ||
export function createPromiseResolver<T, E = unknown>(): PromiseWithResolvers<T, E> { | ||
if ('withResolvers' in Promise && typeof Promise.withResolvers === 'function') { | ||
return Promise.withResolvers(); | ||
} | ||
let resolve; | ||
let reject; | ||
const promise = new Promise<T>((res, rej) => { | ||
resolve = res; | ||
reject = rej; | ||
}); | ||
return { promise, resolve, reject } as unknown as PromiseWithResolvers<T, E>; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,28 @@ | ||
import { type ExecutionContext } from '@cloudflare/workers-types'; | ||
import { describe, expect, it, onTestFinished, vi } from 'vitest'; | ||
import { describe, expect, it, vi } from 'vitest'; | ||
import { makeFlushLock } from '../src/flush'; | ||
import { createPromiseResolver } from '../src/utils/makePromiseResolver'; | ||
|
||
describe('Flush buffer test', () => { | ||
const waitUntilPromises: Promise<void>[] = []; | ||
const mockExecutionContext: ExecutionContext = { | ||
waitUntil: vi.fn(prmise => { | ||
waitUntilPromises.push(prmise); | ||
}), | ||
waitUntil: vi.fn(), | ||
passThroughOnException: vi.fn(), | ||
props: null, | ||
}; | ||
it('should flush buffer immediately if no waitUntil were called', async () => { | ||
const { finalize } = makeFlushLock(mockExecutionContext); | ||
await expect(finalize()).resolves.toBeUndefined(); | ||
}); | ||
it('waitUntil should not be wrapped mose than once', () => { | ||
expect(makeFlushLock(mockExecutionContext), 'Execution context wrapped twice').toBe( | ||
makeFlushLock(mockExecutionContext), | ||
); | ||
}); | ||
it('should flush buffer only after all waitUntil were finished', async () => { | ||
vi.useFakeTimers(); | ||
onTestFinished(() => { | ||
vi.useRealTimers(); | ||
}); | ||
const task = new Promise(resolve => setTimeout(resolve, 100)); | ||
const { promise, resolve } = createPromiseResolver(); | ||
const lock = makeFlushLock(mockExecutionContext); | ||
mockExecutionContext.waitUntil(task); | ||
void lock.finalize(); | ||
vi.advanceTimersToNextTimer(); | ||
await Promise.all(waitUntilPromises); | ||
await expect(lock.ready).resolves.toBeUndefined(); | ||
mockExecutionContext.waitUntil(promise); | ||
process.nextTick(resolve); | ||
await expect(lock.finalize()).resolves.toBeUndefined(); | ||
}); | ||
}); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.