-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add child_process customFds test
This commit adds a test for spawn()'s deprecated customFds option. PR-URL: #9307 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
|
||
// Verify that customFds is used if stdio is not provided. | ||
{ | ||
const msg = 'child_process: options.customFds option is deprecated. ' + | ||
'Use options.stdio instead.'; | ||
common.expectWarning('DeprecationWarning', msg); | ||
|
||
const customFds = [-1, process.stdout.fd, process.stderr.fd]; | ||
const child = common.spawnSyncPwd({ customFds }); | ||
|
||
assert.deepStrictEqual(child.options.customFds, customFds); | ||
assert.deepStrictEqual(child.options.stdio, [ | ||
{ type: 'pipe', readable: true, writable: false }, | ||
{ type: 'fd', fd: process.stdout.fd }, | ||
{ type: 'fd', fd: process.stderr.fd } | ||
]); | ||
} | ||
|
||
// Verify that customFds is ignored when stdio is present. | ||
{ | ||
const customFds = [0, 1, 2]; | ||
const child = common.spawnSyncPwd({ customFds, stdio: 'pipe' }); | ||
|
||
assert.deepStrictEqual(child.options.customFds, customFds); | ||
assert.deepStrictEqual(child.options.stdio, [ | ||
{ type: 'pipe', readable: true, writable: false }, | ||
{ type: 'pipe', readable: false, writable: true }, | ||
{ type: 'pipe', readable: false, writable: true } | ||
]); | ||
} |