Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: test async-hook triggerId invariant #13328

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions test/parallel/test-async-wrap-trigger-id.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
'use strict';
require('../common');

const assert = require('assert');
const async_hooks = require('async_hooks');
const triggerId = async_hooks.triggerId;

const triggerId0 = triggerId();
let triggerId1;

process.nextTick(() => {
process.nextTick(() => {
triggerId1 = triggerId();
assert.notStrictEqual(
triggerId0,
triggerId1,
'Async resources having different causal ancestry ' +
'should have different triggerIds');
});
process.nextTick(() => {
const triggerId2 = triggerId();
assert.strictEqual(
triggerId1,
triggerId2,
'Async resources having the same causal ancestry ' +
'should have the same triggerId');
});
});