mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a2843f2cf9
Remove common.PORT from test-cluster-worker-disconnect-on-error possibility that a dynamic port used in another test will collide with common.PORT. PR-URL: https://github.com/nodejs/node/pull/12457 Ref: https://github.com/nodejs/node/issues/12376 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
34 lines
738 B
JavaScript
34 lines
738 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const http = require('http');
|
|
const cluster = require('cluster');
|
|
const assert = require('assert');
|
|
|
|
cluster.schedulingPolicy = cluster.SCHED_NONE;
|
|
|
|
const server = http.createServer();
|
|
if (cluster.isMaster) {
|
|
let worker;
|
|
|
|
server.listen(0, common.mustCall((error) => {
|
|
assert.ifError(error);
|
|
assert(worker);
|
|
|
|
worker.send({port: server.address().port});
|
|
}));
|
|
|
|
worker = cluster.fork();
|
|
worker.on('exit', common.mustCall(() => {
|
|
server.close();
|
|
}));
|
|
} else {
|
|
process.on('message', common.mustCall((msg) => {
|
|
assert(msg.port);
|
|
|
|
server.listen(msg.port);
|
|
server.on('error', common.mustCall((e) => {
|
|
cluster.worker.disconnect();
|
|
}));
|
|
}));
|
|
}
|