mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
de762b71f2
currentId is renamed to executionAsyncId triggerId is renamed to triggerAsyncId AsyncResource.triggerId is renamed to AsyncResource.triggerAsyncId AsyncHooksGetCurrentId is renamed to AsyncHooksGetExecutionAsyncId AsyncHooksGetTriggerId is renamed to AsyncHooksGetTriggerAsyncId PR-URL: https://github.com/nodejs/node/pull/13490 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
28 lines
744 B
JavaScript
28 lines
744 B
JavaScript
'use strict';
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/13262
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
|
|
let seenId, seenResource;
|
|
|
|
async_hooks.createHook({
|
|
init: common.mustCall((id, provider, triggerAsyncId, resource) => {
|
|
seenId = id;
|
|
seenResource = resource;
|
|
assert.strictEqual(provider, 'Immediate');
|
|
assert.strictEqual(triggerAsyncId, 1);
|
|
}),
|
|
before: common.mustNotCall(),
|
|
after: common.mustNotCall(),
|
|
destroy: common.mustCall((id) => {
|
|
assert.strictEqual(seenId, id);
|
|
})
|
|
}).enable();
|
|
|
|
const immediate = setImmediate(common.mustNotCall());
|
|
assert.strictEqual(immediate, seenResource);
|
|
clearImmediate(immediate);
|