2018-03-05 11:20:48 +00:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
|
|
|
|
// This tests ensures that the triggerId of the nextTick function sets the
|
|
|
|
// triggerAsyncId correctly.
|
|
|
|
|
|
|
|
const assert = require('assert');
|
|
|
|
const async_hooks = require('async_hooks');
|
|
|
|
const initHooks = require('./init-hooks');
|
|
|
|
const { checkInvocations } = require('./hook-checks');
|
|
|
|
|
|
|
|
const hooks = initHooks();
|
|
|
|
hooks.enable();
|
|
|
|
|
|
|
|
const rootAsyncId = async_hooks.executionAsyncId();
|
|
|
|
|
2019-10-26 19:17:23 +00:00
|
|
|
process.nextTick(common.mustCall(() => {
|
2018-03-05 11:20:48 +00:00
|
|
|
assert.strictEqual(async_hooks.triggerAsyncId(), rootAsyncId);
|
|
|
|
}));
|
|
|
|
|
2019-10-26 19:17:23 +00:00
|
|
|
process.on('exit', () => {
|
2018-03-05 11:20:48 +00:00
|
|
|
hooks.sanityCheck();
|
|
|
|
|
|
|
|
const as = hooks.activitiesOfTypes('TickObject');
|
|
|
|
checkInvocations(as[0], {
|
2022-11-21 17:43:47 +00:00
|
|
|
init: 1, before: 1, after: 1, destroy: 1,
|
2018-03-05 11:20:48 +00:00
|
|
|
}, 'when process exits');
|
|
|
|
});
|