@@ -28,11 +28,14 @@ const assert = require('assert');
28
28
const { spawn } = require ( 'child_process' ) ;
29
29
30
30
// Spawns 'pwd' with given options, then test
31
+ // - whether the child pid is undefined or number,
31
32
// - whether the exit code equals expectCode,
32
33
// - optionally whether the trimmed stdout result matches expectData
33
- function testCwd ( options , expectCode = 0 , expectData ) {
34
+ function testCwd ( options , expectPidType , expectCode = 0 , expectData ) {
34
35
const child = spawn ( ...common . pwdCommand , options ) ;
35
36
37
+ assert . strictEqual ( typeof child . pid , expectPidType ) ;
38
+
36
39
child . stdout . setEncoding ( 'utf8' ) ;
37
40
38
41
// No need to assert callback since `data` is asserted.
@@ -57,18 +60,18 @@ function testCwd(options, expectCode = 0, expectData) {
57
60
58
61
// Assume does-not-exist doesn't exist, expect exitCode=-1 and errno=ENOENT
59
62
{
60
- testCwd ( { cwd : 'does-not-exist' } , - 1 )
63
+ testCwd ( { cwd : 'does-not-exist' } , 'undefined' , - 1 )
61
64
. on ( 'error' , common . mustCall ( function ( e ) {
62
65
assert . strictEqual ( e . code , 'ENOENT' ) ;
63
66
} ) ) ;
64
67
}
65
68
66
69
// 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 ) ;
68
71
const shouldExistDir = common . isWindows ? process . env . windir : '/dev' ;
69
- testCwd ( { cwd : shouldExistDir } , 0 , shouldExistDir ) ;
72
+ testCwd ( { cwd : shouldExistDir } , 'number' , 0 , shouldExistDir ) ;
70
73
71
74
// 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' ) ;
0 commit comments