test: dynamic port in cluster worker disconnect
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>
This commit is contained in:
parent
825d3909ab
commit
a2843f2cf9
@ -2,19 +2,32 @@
|
||||
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) {
|
||||
server.listen(common.PORT);
|
||||
const worker = cluster.fork();
|
||||
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 {
|
||||
server.listen(common.PORT);
|
||||
server.on('error', common.mustCall((e) => {
|
||||
cluster.worker.disconnect();
|
||||
process.on('message', common.mustCall((msg) => {
|
||||
assert(msg.port);
|
||||
|
||||
server.listen(msg.port);
|
||||
server.on('error', common.mustCall((e) => {
|
||||
cluster.worker.disconnect();
|
||||
}));
|
||||
}));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user