summaryrefslogtreecommitdiff
path: root/test/parallel/test-asyncresource-bind.js
blob: 3aeed475aee126aec4ddf6c50c3eacd6cba38cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'use strict';

const common = require('../common');
const assert = require('assert');
const { AsyncResource, executionAsyncId } = require('async_hooks');

const fn = common.mustCall(AsyncResource.bind(() => {
  return executionAsyncId();
}));

setImmediate(() => {
  const asyncId = executionAsyncId();
  assert.notStrictEqual(asyncId, fn());
});

const asyncResource = new AsyncResource('test');

[1, false, '', {}, []].forEach((i) => {
  assert.throws(() => asyncResource.bind(i), {
    code: 'ERR_INVALID_ARG_TYPE'
  });
});

const fn2 = asyncResource.bind((a, b) => {
  return executionAsyncId();
});

assert.strictEqual(fn2.asyncResource, asyncResource);
assert.strictEqual(fn2.length, 2);

setImmediate(() => {
  const asyncId = executionAsyncId();
  assert.strictEqual(asyncResource.asyncId(), fn2());
  assert.notStrictEqual(asyncId, fn2());
});