summaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-validate-stdio.js
blob: aba43551e82b448885a7b8b5ab6414a135e57804 (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
30
'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/);