blob: 0f9a4799d0642abdfc45f43cde048330c7e2aac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
'use strict';
// Regression test for an integer overflow in inspector.open() when the port
// exceeds the range of an unsigned 16-bit integer.
const common = require('../common');
common.skipIfInspectorDisabled();
common.skipIfWorker();
const assert = require('assert');
const inspector = require('inspector');
assert.throws(() => inspector.open(99999), {
name: 'RangeError',
code: 'ERR_OUT_OF_RANGE',
message: 'The value of "port" is out of range. It must be >= 0 && <= 65535. Received 99999'
});
|