summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-send-returns-boolean.js
blob: 941a2da645f958e0873fe29174cd79e823f57a32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'use strict';
const common = require('../common');
const assert = require('assert');
const path = require('path');
const net = require('net');
const fork = require('child_process').fork;
const spawn = require('child_process').spawn;

const emptyFile = path.join(common.fixturesDir, 'empty.js');

const n = fork(emptyFile);

const rv = n.send({ hello: 'world' });
assert.strictEqual(rv, true);

const spawnOptions = { stdio: ['pipe', 'pipe', 'pipe', 'ipc'] };
const s = spawn(process.execPath, [emptyFile], spawnOptions);
var handle = null;
s.on('exit', function() {
  handle.close();
});

net.createServer(common.fail).listen(0, function() {
  handle = this._handle;
  assert.strictEqual(s.send('one', handle), true);
  assert.strictEqual(s.send('two', handle), true);
  assert.strictEqual(s.send('three'), false);
  assert.strictEqual(s.send('four'), false);
});