Skip to content

Commit c05e5bf

Browse files
committed
test: remove common.PORT from test-cluster-basic
Use of `common.PORT` in `parallel` tests is not completely safe (because the same port can be previously assigned to another test running in parallel if that test uses port `0` to get an arbitrary available port). Remove `common.PORT` from test-cluster-basic. PR-URL: #12377 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 2841f47 commit c05e5bf

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

test/parallel/test-cluster-basic.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ function forEach(obj, fn) {
3535

3636

3737
if (cluster.isWorker) {
38-
const http = require('http');
39-
http.Server(function() {
40-
41-
}).listen(common.PORT, '127.0.0.1');
38+
require('http').Server(common.noop).listen(0, '127.0.0.1');
4239
} else if (cluster.isMaster) {
4340

4441
const checks = {
@@ -129,11 +126,15 @@ if (cluster.isWorker) {
129126

130127
case 'listening':
131128
assert.strictEqual(arguments.length, 1);
132-
const expect = { address: '127.0.0.1',
133-
port: common.PORT,
134-
addressType: 4,
135-
fd: undefined };
136-
assert.deepStrictEqual(arguments[0], expect);
129+
assert.strictEqual(Object.keys(arguments[0]).length, 4);
130+
assert.strictEqual(arguments[0].address, '127.0.0.1');
131+
assert.strictEqual(arguments[0].addressType, 4);
132+
assert(arguments[0].hasOwnProperty('fd'));
133+
assert.strictEqual(arguments[0].fd, undefined);
134+
const port = arguments[0].port;
135+
assert(Number.isInteger(port));
136+
assert(port >= 1);
137+
assert(port <= 65535);
137138
break;
138139

139140
default:

0 commit comments

Comments
 (0)