summaryrefslogtreecommitdiff
path: root/test/parallel/test-async-hooks-asyncresource-constructor.js
blob: ebd5a4cf646bfdb24a49f6566828162a35cc36fa (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
36
37
38
39
40
'use strict';

// This tests that AsyncResource throws an error if bad parameters are passed

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

// Setup init hook such parameters are validated
async_hooks.createHook({
  init() {}
}).enable();

common.expectsError(() => {
  return new AsyncResource();
}, {
  code: 'ERR_INVALID_ARG_TYPE',
  type: TypeError,
});

common.expectsError(() => {
  new AsyncResource('');
}, {
  code: 'ERR_ASYNC_TYPE',
  type: TypeError,
});

common.expectsError(() => {
  new AsyncResource('type', -4);
}, {
  code: 'ERR_INVALID_ASYNC_ID',
  type: RangeError,
});

common.expectsError(() => {
  new AsyncResource('type', Math.PI);
}, {
  code: 'ERR_INVALID_ASYNC_ID',
  type: RangeError,
});