mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
954 B
57 lines
954 B
'use strict';
|
|
require('../common');
|
|
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');
|
|
}
|
|
|