Skip to content

Commit c554aa1

Browse files
dr-jstargos
authored andcommitted
test,child_process: add check for subProcess.pid
Note: this only add checks for async spawn, as the sync spawn do not return a `subProcess`. PR-URL: #37014 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent f20ce47 commit c554aa1

3 files changed

+22
-12
lines changed

test/parallel/test-child-process-cwd.js

+10-7
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ const assert = require('assert');
2828
const { spawn } = require('child_process');
2929

3030
// Spawns 'pwd' with given options, then test
31+
// - whether the child pid is undefined or number,
3132
// - whether the exit code equals expectCode,
3233
// - optionally whether the trimmed stdout result matches expectData
33-
function testCwd(options, expectCode = 0, expectData) {
34+
function testCwd(options, expectPidType, expectCode = 0, expectData) {
3435
const child = spawn(...common.pwdCommand, options);
3536

37+
assert.strictEqual(typeof child.pid, expectPidType);
38+
3639
child.stdout.setEncoding('utf8');
3740

3841
// No need to assert callback since `data` is asserted.
@@ -57,18 +60,18 @@ function testCwd(options, expectCode = 0, expectData) {
5760

5861
// Assume does-not-exist doesn't exist, expect exitCode=-1 and errno=ENOENT
5962
{
60-
testCwd({ cwd: 'does-not-exist' }, -1)
63+
testCwd({ cwd: 'does-not-exist' }, 'undefined', -1)
6164
.on('error', common.mustCall(function(e) {
6265
assert.strictEqual(e.code, 'ENOENT');
6366
}));
6467
}
6568

6669
// Assume these exist, and 'pwd' gives us the right directory back
67-
testCwd({ cwd: tmpdir.path }, 0, tmpdir.path);
70+
testCwd({ cwd: tmpdir.path }, 'number', 0, tmpdir.path);
6871
const shouldExistDir = common.isWindows ? process.env.windir : '/dev';
69-
testCwd({ cwd: shouldExistDir }, 0, shouldExistDir);
72+
testCwd({ cwd: shouldExistDir }, 'number', 0, shouldExistDir);
7073

7174
// Spawn() shouldn't try to chdir() to invalid arg, so this should just work
72-
testCwd({ cwd: '' });
73-
testCwd({ cwd: undefined });
74-
testCwd({ cwd: null });
75+
testCwd({ cwd: '' }, 'number');
76+
testCwd({ cwd: undefined }, 'number');
77+
testCwd({ cwd: null }, 'number');

test/parallel/test-child-process-exec-error.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,21 @@ const common = require('../common');
2424
const assert = require('assert');
2525
const child_process = require('child_process');
2626

27-
function test(fn, code) {
28-
fn('does-not-exist', common.mustCall(function(err) {
27+
function test(fn, code, expectPidType = 'number') {
28+
const child = fn('does-not-exist', common.mustCall(function(err) {
2929
assert.strictEqual(err.code, code);
3030
assert(err.cmd.includes('does-not-exist'));
3131
}));
32+
33+
assert.strictEqual(typeof child.pid, expectPidType);
3234
}
3335

36+
// With `shell: true`, expect pid (of the shell)
3437
if (common.isWindows) {
35-
test(child_process.exec, 1); // Exit code of cmd.exe
38+
test(child_process.exec, 1, 'number'); // Exit code of cmd.exe
3639
} else {
37-
test(child_process.exec, 127); // Exit code of /bin/sh
40+
test(child_process.exec, 127, 'number'); // Exit code of /bin/sh
3841
}
3942

40-
test(child_process.execFile, 'ENOENT');
43+
// With `shell: false`, expect no pid
44+
test(child_process.execFile, 'ENOENT', 'undefined');

test/parallel/test-child-process-spawn-error.js

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ assert.strictEqual(enoentChild.stdio[0], enoentChild.stdin);
4141
assert.strictEqual(enoentChild.stdio[1], enoentChild.stdout);
4242
assert.strictEqual(enoentChild.stdio[2], enoentChild.stderr);
4343

44+
// Verify pid is not assigned.
45+
assert.strictEqual(enoentChild.pid, undefined);
46+
4447
enoentChild.on('spawn', common.mustNotCall());
4548

4649
enoentChild.on('error', common.mustCall(function(err) {

0 commit comments

Comments
 (0)