-
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.
async_hooks: switch between native and context hooks correctly
🤦 Might help if I remember to disable the _other_ promise hook implementation when switching between them... Fixes #38814 Fixes #38815
- Loading branch information
Stephen Belanger
committed
Jun 3, 2021
1 parent
21f5a56
commit a86542e
Showing
2 changed files
with
61 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
59 changes: 59 additions & 0 deletions
59
test/parallel/test-async-hooks-correctly-switch-promise-hook.js
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,59 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
const async_hooks = require('async_hooks'); | ||
|
||
// Regression test for: | ||
// - https://github.com/nodejs/node/issues/38814 | ||
// - https://github.com/nodejs/node/issues/38815 | ||
|
||
const expected = [ | ||
['init', 2, 'PROMISE', 1], | ||
['init', 3, 'PROMISE', 1], | ||
['promiseResolve', 3], | ||
['promiseResolve', 2], | ||
['before', 2], | ||
['init', 4, 'PROMISE', 3], | ||
['after', 2], | ||
['before', 4], | ||
['promiseResolve', 2], | ||
['promiseResolve', 4], | ||
['after', 4], | ||
]; | ||
|
||
const actual = []; | ||
|
||
// Only init to start context-based promise hook | ||
async_hooks.createHook({ | ||
init() { } | ||
}).enable(); | ||
|
||
// With destroy, this should switch to native | ||
// and disable context - based promise hook | ||
async_hooks.createHook({ | ||
init(asyncId, type, triggerAsyncId) { | ||
actual.push([ 'init', asyncId, type, triggerAsyncId ]); | ||
}, | ||
before(asyncId) { | ||
actual.push([ 'before', asyncId ]); | ||
}, | ||
after(asyncId) { | ||
actual.push([ 'after', asyncId ]); | ||
}, | ||
promiseResolve(asyncId) { | ||
actual.push([ 'promiseResolve', asyncId ]); | ||
}, | ||
destroy(asyncId) { | ||
actual.push([ 'destroy', asyncId ]); | ||
} | ||
}).enable(); | ||
|
||
async function main() { | ||
return Promise.resolve(); | ||
} | ||
|
||
main(); | ||
|
||
process.on('exit', () => { | ||
assert.deepStrictEqual(actual, expected); | ||
}); |