Skip to content

Commit

Permalink
test: test sending over a closed IPC channel
Browse files Browse the repository at this point in the history
This commit adds a test that attempts to send data over an IPC
channel once it has been closed.

PR-URL: #8160
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Claudio Rodriguez <cjrodr@yahoo.com>
  • Loading branch information
cjihrig authored and evanlucas committed Aug 24, 2016
1 parent 15bd489 commit 498238f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions test/parallel/test-child-process-send-after-close.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const cp = require('child_process');
const path = require('path');
const fixture = path.join(common.fixturesDir, 'empty.js');
const child = cp.fork(fixture);

child.on('close', common.mustCall((code, signal) => {
assert.strictEqual(code, 0);
assert.strictEqual(signal, null);

function testError(err) {
assert.strictEqual(err.message, 'channel closed');
}

child.on('error', common.mustCall(testError));

{
const result = child.send('ping');
assert.strictEqual(result, false);
}

{
const result = child.send('pong', common.mustCall(testError));
assert.strictEqual(result, false);
}
}));

0 comments on commit 498238f

Please sign in to comment.