|
| 1 | +'use strict'; |
| 2 | +const common = require('../common'); |
| 3 | + |
| 4 | +common.skipIfInspectorDisabled(); |
| 5 | +common.skipIfWorker(); |
| 6 | + |
| 7 | +const assert = require('assert'); |
| 8 | +const kMinPort = 1024; |
| 9 | +const kMaxPort = 65535; |
| 10 | + |
| 11 | +function check(value, expected) { |
| 12 | + process.debugPort = value; |
| 13 | + assert.strictEqual(process.debugPort, expected); |
| 14 | +} |
| 15 | + |
| 16 | +// Expected usage with numbers. |
| 17 | +check(0, 0); |
| 18 | +check(kMinPort, kMinPort); |
| 19 | +check(kMinPort + 1, kMinPort + 1); |
| 20 | +check(kMaxPort - 1, kMaxPort - 1); |
| 21 | +check(kMaxPort, kMaxPort); |
| 22 | + |
| 23 | +// Numeric strings coerce. |
| 24 | +check('0', 0); |
| 25 | +check(`${kMinPort}`, kMinPort); |
| 26 | +check(`${kMinPort + 1}`, kMinPort + 1); |
| 27 | +check(`${kMaxPort - 1}`, kMaxPort - 1); |
| 28 | +check(`${kMaxPort}`, kMaxPort); |
| 29 | + |
| 30 | +// Most other values are coerced to 0. |
| 31 | +check('', 0); |
| 32 | +check(false, 0); |
| 33 | +check(NaN, 0); |
| 34 | +check(Infinity, 0); |
| 35 | +check(-Infinity, 0); |
| 36 | +check(function() {}, 0); |
| 37 | +check({}, 0); |
| 38 | +check([], 0); |
| 39 | + |
| 40 | +// Symbols do not coerce. |
| 41 | +assert.throws(() => { |
| 42 | + process.debugPort = Symbol(); |
| 43 | +}, /^TypeError: Cannot convert a Symbol value to a number$/); |
| 44 | + |
| 45 | +// Verify port bounds checking. |
| 46 | +[ |
| 47 | + true, |
| 48 | + -1, |
| 49 | + 1, |
| 50 | + kMinPort - 1, |
| 51 | + kMaxPort + 1, |
| 52 | + '-1', |
| 53 | + '1', |
| 54 | + `${kMinPort - 1}`, |
| 55 | + `${kMaxPort + 1}`, |
| 56 | +].forEach((value) => { |
| 57 | + assert.throws(() => { |
| 58 | + process.debugPort = value; |
| 59 | + }, /^RangeError: process\.debugPort must be 0 or in range 1024 to 65535$/); |
| 60 | +}); |
0 commit comments