mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 09:02:40 +00:00

Add stricter testing for the isLegalPort method in internal/net. This ensures that odd inputs such as isLegalPort(true) and isLegalPort([1]) aren't acceptable as valid port inputs. PR-URL: https://github.com/nodejs/node/pull/5733 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
'use strict';
|
|
|
|
// Flags: --expose-internals
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const isLegalPort = require('internal/net').isLegalPort;
|
|
|
|
for (var n = 0; n <= 0xFFFF; n++) {
|
|
assert(isLegalPort(n));
|
|
assert(isLegalPort('' + n));
|
|
assert(`0x${n.toString(16)}`);
|
|
assert(`0o${n.toString(8)}`);
|
|
assert(`0b${n.toString(2)}`);
|
|
}
|
|
|
|
const bad = [-1, 'a', {}, [], false, true, 0xFFFF + 1, Infinity,
|
|
-Infinity, NaN, undefined, null, '', ' ', 1.1, '0x',
|
|
'-0x1', '-0o1', '-0b1', '0o', '0b'];
|
|
bad.forEach((i) => assert(!isLegalPort(i)));
|