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

Removed common.PORT from test-cluster-message, test-cluster-server-restart-none, test-cluster-server-restart-rr and test-cluster-shared-handle-bind-error to eliminate the possibility that a dynamic port used in another test will collide with common.PORT. PR-URL: https://github.com/nodejs/node/pull/12584 Ref: https://github.com/nodejs/node/issues/12376 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cluster = require('cluster');
|
|
|
|
cluster.schedulingPolicy = cluster.SCHED_NONE;
|
|
|
|
if (cluster.isMaster) {
|
|
const worker1 = cluster.fork();
|
|
worker1.on('listening', common.mustCall(() => {
|
|
const worker2 = cluster.fork();
|
|
worker2.on('exit', (code, signal) => {
|
|
assert.strictEqual(code, 0, 'worker2 did not exit normally');
|
|
assert.strictEqual(signal, null, 'worker2 did not exit normally');
|
|
worker1.disconnect();
|
|
});
|
|
}));
|
|
|
|
worker1.on('exit', common.mustCall((code, signal) => {
|
|
assert.strictEqual(code, 0, 'worker1 did not exit normally');
|
|
assert.strictEqual(signal, null, 'worker1 did not exit normally');
|
|
}));
|
|
} else {
|
|
const net = require('net');
|
|
const server = net.createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
if (cluster.worker.id === 2) {
|
|
server.close(() => {
|
|
server.listen(0, common.mustCall(() => {
|
|
server.close(() => {
|
|
process.disconnect();
|
|
});
|
|
}));
|
|
});
|
|
}
|
|
}));
|
|
}
|