mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 09:02:40 +00:00

In preparation for a lint rule that will enforce assert.deepStrictEqual() over assert.deepEqual(), change tests and benchmarks accordingly. For tests and benchmarks that are testing or benchmarking assert.deepEqual() itself, apply a comment to ignore the upcoming rule. PR-URL: https://github.com/nodejs/node/pull/6213 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
58 lines
960 B
JavaScript
58 lines
960 B
JavaScript
'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.deepStrictEqual(messages[0], messages[1]);
|
|
|
|
cluster.worker.once('error', function(e) {
|
|
assert.equal(e, 'HI');
|
|
process.exit(OK);
|
|
});
|
|
|
|
process.emit('error', 'HI');
|
|
}
|