mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
56 lines
918 B
JavaScript
56 lines
918 B
JavaScript
var assert = require('assert');
|
|
var cluster = require('cluster');
|
|
|
|
var OK = 2;
|
|
|
|
if (cluster.isMaster) {
|
|
|
|
var worker = cluster.fork();
|
|
|
|
worker.on('exit', function(code) {
|
|
assert.equal(code, OK);
|
|
process.exit(0);
|
|
});
|
|
|
|
worker.send('SOME MESSAGE');
|
|
|
|
return;
|
|
}
|
|
|
|
// Messages sent to a worker will be emitted on both the process object and the
|
|
// process.worker object.
|
|
|
|
assert(cluster.isWorker);
|
|
|
|
var sawProcess;
|
|
var sawWorker;
|
|
|
|
process.on('message', function(m) {
|
|
assert(!sawProcess);
|
|
sawProcess = true;
|
|
check(m);
|
|
});
|
|
|
|
cluster.worker.on('message', function(m) {
|
|
assert(!sawWorker);
|
|
sawWorker = true;
|
|
check(m);
|
|
});
|
|
|
|
var messages = [];
|
|
|
|
function check(m) {
|
|
messages.push(m);
|
|
|
|
if (messages.length < 2) return;
|
|
|
|
assert.deepEqual(messages[0], messages[1]);
|
|
|
|
cluster.worker.once('error', function(e) {
|
|
assert.equal(e, 'HI');
|
|
process.exit(OK);
|
|
});
|
|
|
|
process.emit('error', 'HI');
|
|
}
|