mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
a77c330c32
Creates two new internal modules (child_process and socket_list) for better readability. Exposes the ChildProcess constructor from the child_process module so one can now `require(‘child_process’).ChildProcess` Fixes: https://github.com/nodejs/io.js/issues/1751 PR-URL: https://github.com/nodejs/io.js/pull/1760 Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
31 lines
958 B
JavaScript
31 lines
958 B
JavaScript
'use strict';
|
|
// Flags: --expose_internals
|
|
|
|
var assert = require('assert');
|
|
var common = require('../common');
|
|
var _validateStdio = require('internal/child_process')._validateStdio;
|
|
|
|
// should throw if string and not ignore, pipe, or inherit
|
|
assert.throws(function() {
|
|
_validateStdio('foo');
|
|
}, /Incorrect value of stdio option/);
|
|
|
|
// should throw if not a string or array
|
|
assert.throws(function() {
|
|
_validateStdio(600);
|
|
}, /Incorrect value of stdio option/);
|
|
|
|
// should populate stdio with undefined if len < 3
|
|
var stdio1 = [];
|
|
var result = _validateStdio(stdio1, false);
|
|
assert.equal(stdio1.length, 3);
|
|
assert.equal(result.hasOwnProperty('stdio'), true);
|
|
assert.equal(result.hasOwnProperty('ipc'), true);
|
|
assert.equal(result.hasOwnProperty('ipcFd'), true);
|
|
|
|
// should throw if stdio has ipc and sync is true
|
|
var stdio2 = ['ipc', 'ipc', 'ipc'];
|
|
assert.throws(function() {
|
|
_validateStdio(stdio2, true);
|
|
}, /You cannot use IPC with synchronous forks/);
|