mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
330f25ef82
Make changes so that tests will pass when the comma-dangle settings applied to the rest of the code base are also applied to tests. PR-URL: https://github.com/nodejs/node/pull/37930 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
24 lines
597 B
JavaScript
24 lines
597 B
JavaScript
// Flags: --expose-internals
|
|
'use strict';
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { validatePort } = require('internal/validators');
|
|
|
|
for (let n = 0; n <= 0xFFFF; n++) {
|
|
validatePort(n);
|
|
validatePort(`${n}`);
|
|
validatePort(`0x${n.toString(16)}`);
|
|
validatePort(`0o${n.toString(8)}`);
|
|
validatePort(`0b${n.toString(2)}`);
|
|
}
|
|
|
|
[
|
|
-1, 'a', {}, [], false, true,
|
|
0xFFFF + 1, Infinity, -Infinity, NaN,
|
|
undefined, null, '', ' ', 1.1, '0x',
|
|
'-0x1', '-0o1', '-0b1', '0o', '0b',
|
|
].forEach((i) => assert.throws(() => validatePort(i), {
|
|
code: 'ERR_SOCKET_BAD_PORT'
|
|
}));
|