0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/parallel/test-async-hooks-asyncresource-constructor.js
Mithun Sasidharan 146a9b1a8a
test: replace assert.throws w/ common.expectsError
PR-URL: https://github.com/nodejs/node/pull/17483
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-12-08 16:23:32 -05:00

41 lines
792 B
JavaScript

'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,
});