-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: AsyncLocalStorage works with thenables
This adds a test to verify that AsyncLocalStorage works with thenables. Backport-PR-URL: #34776 PR-URL: #34008 Refs: #33778 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Stephen Belanger <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,53 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
const assert = require('assert'); | ||
const { AsyncLocalStorage } = require('async_hooks'); | ||
|
||
// This test verifies that async local storage works with thenables | ||
|
||
const store = new AsyncLocalStorage(); | ||
const data = Symbol('verifier'); | ||
|
||
const then = common.mustCall((cb) => { | ||
assert.strictEqual(store.getStore(), data); | ||
setImmediate(cb); | ||
}, 4); | ||
|
||
function thenable() { | ||
return { | ||
then | ||
}; | ||
} | ||
|
||
// Await a thenable | ||
store.run(data, async () => { | ||
assert.strictEqual(store.getStore(), data); | ||
await thenable(); | ||
assert.strictEqual(store.getStore(), data); | ||
}); | ||
|
||
// Returning a thenable in an async function | ||
store.run(data, async () => { | ||
try { | ||
assert.strictEqual(store.getStore(), data); | ||
return thenable(); | ||
} finally { | ||
assert.strictEqual(store.getStore(), data); | ||
} | ||
}); | ||
|
||
// Resolving a thenable | ||
store.run(data, () => { | ||
assert.strictEqual(store.getStore(), data); | ||
Promise.resolve(thenable()); | ||
assert.strictEqual(store.getStore(), data); | ||
}); | ||
|
||
// Returning a thenable in a then handler | ||
store.run(data, () => { | ||
assert.strictEqual(store.getStore(), data); | ||
Promise.resolve().then(() => thenable()); | ||
assert.strictEqual(store.getStore(), data); | ||
}); |