node/test/parallel/test-cluster-disconnect-suicide-race.js
Rich Trott 0634311a9a test: move cluster tests to parallel
Two cluster tests have recently changed so that they are no longer
resource intensive. Move them back to parallel.

Ref: https://github.com/nodejs/node/pull/4736
Ref: https://github.com/nodejs/node/pull/4739
PR-URL: https://github.com/nodejs/node/pull/4774
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2016-01-21 13:17:12 -08:00

28 lines
615 B
JavaScript

'use strict';
// Test should fail in Node.js 5.4.1 and pass in later versions.
const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
if (cluster.isMaster) {
cluster.on('exit', (worker, code) => {
assert.strictEqual(code, 0, 'worker exited with error');
});
return cluster.fork();
}
var eventFired = false;
cluster.worker.disconnect();
process.nextTick(common.mustCall(() => {
assert.strictEqual(eventFired, false, 'disconnect event should wait for ack');
}));
cluster.worker.on('disconnect', common.mustCall(() => {
eventFired = true;
}));