mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 07:19:19 +00:00

fork()'s support for .stdio strings in 3268863eb
used a different
TypeError string from spawn, unnecessarily.
PR-URL: https://github.com/nodejs/node/pull/11044
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
28 lines
837 B
JavaScript
28 lines
837 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
// Ensures that child_process.fork can accept string
|
|
// variant of stdio parameter in options object and
|
|
// throws a TypeError when given an unexpected string
|
|
|
|
const assert = require('assert');
|
|
const fork = require('child_process').fork;
|
|
|
|
const childScript = `${common.fixturesDir}/child-process-spawn-node`;
|
|
const errorRegexp = /^TypeError: Incorrect value of stdio option:/;
|
|
const malFormedOpts = {stdio: '33'};
|
|
const payload = {hello: 'world'};
|
|
const stringOpts = {stdio: 'pipe'};
|
|
|
|
assert.throws(() => fork(childScript, malFormedOpts), errorRegexp);
|
|
|
|
const child = fork(childScript, stringOpts);
|
|
|
|
child.on('message', (message) => {
|
|
assert.deepStrictEqual(message, {foo: 'bar'});
|
|
});
|
|
|
|
child.send(payload);
|
|
|
|
child.on('exit', common.mustCall((code) => assert.strictEqual(code, 0)));
|