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.
 
 
 
 
 
 

36 lines
1.1 KiB

'use strict';
// Testing to send an handle twice to the parent process.
const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
const net = require('net');
const workers = {
toStart: 1
};
if (cluster.isMaster) {
for (let i = 0; i < workers.toStart; ++i) {
const worker = cluster.fork();
worker.on('exit', common.mustCall(function(code, signal) {
assert.strictEqual(code, 0, 'Worker exited with an error code');
assert.strictEqual(signal, null, 'Worker exited by a signal');
}));
}
} else {
const server = net.createServer(function(socket) {
process.send('send-handle-1', socket);
process.send('send-handle-2', socket);
});
server.listen(common.PORT, function() {
const client = net.connect({ host: 'localhost', port: common.PORT });
client.on('close', common.mustCall(() => { cluster.worker.disconnect(); }));
setTimeout(function() { client.end(); }, 50);
}).on('error', function(e) {
console.error(e);
common.fail('server.listen failed');
cluster.worker.disconnect();
});
}