1// Copyright Joyent, Inc. and other Node contributors. 2// 3// Permission is hereby granted, free of charge, to any person obtaining a 4// copy of this software and associated documentation files (the 5// "Software"), to deal in the Software without restriction, including 6// without limitation the rights to use, copy, modify, merge, publish, 7// distribute, sublicense, and/or sell copies of the Software, and to permit 8// persons to whom the Software is furnished to do so, subject to the 9// following conditions: 10// 11// The above copyright notice and this permission notice shall be included 12// in all copies or substantial portions of the Software. 13// 14// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN 17// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 20// USE OR OTHER DEALINGS IN THE SOFTWARE. 21 22'use strict'; 23// Testing to send an handle twice to the parent process. 24 25const common = require('../common'); 26const assert = require('assert'); 27const cluster = require('cluster'); 28const net = require('net'); 29 30const workers = { 31 toStart: 1 32}; 33 34if (cluster.isMaster) { 35 for (let i = 0; i < workers.toStart; ++i) { 36 const worker = cluster.fork(); 37 worker.on('exit', common.mustCall(function(code, signal) { 38 assert.strictEqual(code, 0, `Worker exited with an error code: ${code}`); 39 assert.strictEqual(signal, null, `Worker exited by a signal: ${signal}`); 40 })); 41 } 42} else { 43 const server = net.createServer(common.mustCall((socket) => { 44 process.send('send-handle-1', socket); 45 process.send('send-handle-2', socket); 46 })); 47 48 server.listen(0, function() { 49 const client = net.connect({ 50 host: 'localhost', 51 port: server.address().port 52 }); 53 client.on('close', common.mustCall(() => { cluster.worker.disconnect(); })); 54 client.on('connect', () => { client.end(); }); 55 }).on('error', function(e) { 56 console.error(e); 57 assert.fail('server.listen failed'); 58 }); 59} 60