mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
975 B
32 lines
975 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
const promiseAsyncIds = [];
|
|
|
|
async_hooks.createHook({
|
|
init: common.mustCallAtLeast((id, type, triggerId) => {
|
|
if (type === 'PROMISE') {
|
|
// Check that the last known Promise is triggering the creation of
|
|
// this one.
|
|
assert.strictEqual(promiseAsyncIds[promiseAsyncIds.length - 1] || 1,
|
|
triggerId);
|
|
promiseAsyncIds.push(id);
|
|
}
|
|
}, 3),
|
|
before: common.mustCall((id) => {
|
|
assert.strictEqual(id, promiseAsyncIds[1]);
|
|
}),
|
|
after: common.mustCall((id) => {
|
|
assert.strictEqual(id, promiseAsyncIds[1]);
|
|
})
|
|
}).enable();
|
|
|
|
Promise.resolve(42).then(common.mustCall(() => {
|
|
assert.strictEqual(async_hooks.executionAsyncId(), promiseAsyncIds[1]);
|
|
assert.strictEqual(async_hooks.triggerAsyncId(), promiseAsyncIds[0]);
|
|
Promise.resolve(10);
|
|
}));
|
|
|