Skip to content

Commit

Permalink
test: test async-hook triggerId properties
Browse files Browse the repository at this point in the history
Add tests for checking the behavior of async_hooks.triggerId.
It should return different ids when called in callbacks having
different ancestry paths.
It should return the same id when called in callbacks having
the same ancestry path.

PR-URL: #13328
Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Reviewed-By: Andreas Madsen <amwebdk@gmail.com>
  • Loading branch information
dszakallas authored and jasnell committed Jun 5, 2017
1 parent 52c0c47 commit 818c935
Showing 1 changed file with 28 additions and 0 deletions.
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');
});
});

0 comments on commit 818c935

Please sign in to comment.