mirror of https://github.com/lukechilds/node.git
Browse Source
This implements the user-facing APIs that lets one run a child process and block until it exits. Logic shared with the async counterpart of each function was refactored to enable code reuse. Docs and tests are included.v0.11.12-release
6 changed files with 687 additions and 80 deletions
@ -0,0 +1,82 @@ |
|||
// Copyright Joyent, Inc. and other Node contributors.
|
|||
//
|
|||
// Permission is hereby granted, free of charge, to any person obtaining a
|
|||
// copy of this software and associated documentation files (the
|
|||
// "Software"), to deal in the Software without restriction, including
|
|||
// without limitation the rights to use, copy, modify, merge, publish,
|
|||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|||
// persons to whom the Software is furnished to do so, subject to the
|
|||
// following conditions:
|
|||
//
|
|||
// The above copyright notice and this permission notice shall be included
|
|||
// in all copies or substantial portions of the Software.
|
|||
//
|
|||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
|||
var common = require('../common'); |
|||
var assert = require('assert'); |
|||
var util = require('util'); |
|||
var os = require('os'); |
|||
|
|||
var execSync = require('child_process').execSync; |
|||
var execFileSync = require('child_process').execFileSync; |
|||
|
|||
var TIMER = 200; |
|||
var SLEEP = 1000; |
|||
|
|||
var start = Date.now(); |
|||
var err; |
|||
var caught = false; |
|||
try |
|||
{ |
|||
var cmd = util.format('%s -e "setTimeout(function(){}, %d);"', |
|||
process.execPath, SLEEP); |
|||
var ret = execSync(cmd, {timeout: TIMER}); |
|||
} catch (e) { |
|||
caught = true; |
|||
assert.strictEqual(e.errno, 'ETIMEDOUT'); |
|||
err = e; |
|||
} finally { |
|||
assert.strictEqual(ret, undefined, 'we should not have a return value'); |
|||
assert.strictEqual(caught, true, 'execSync should throw'); |
|||
var end = Date.now() - start; |
|||
assert(end < SLEEP); |
|||
assert(err.status > 128 || err.signal); |
|||
} |
|||
|
|||
assert.throws(function() { |
|||
execSync('iamabadcommand'); |
|||
}, /Command failed: iamabadcommand/); |
|||
|
|||
var msg = 'foobar'; |
|||
var msgBuf = new Buffer(msg + '\n'); |
|||
|
|||
// console.log ends every line with just '\n', even on Windows.
|
|||
cmd = util.format('%s -e "console.log(\'%s\');"', process.execPath, msg); |
|||
|
|||
var ret = execSync(cmd); |
|||
|
|||
assert.strictEqual(ret.length, msgBuf.length); |
|||
assert.deepEqual(ret, msgBuf, 'execSync result buffer should match'); |
|||
|
|||
ret = execSync(cmd, { encoding: 'utf8' }); |
|||
|
|||
assert.strictEqual(ret, msg + '\n', 'execSync encoding result should match'); |
|||
|
|||
var args = [ |
|||
'-e', |
|||
util.format('console.log("%s");', msg) |
|||
]; |
|||
ret = execFileSync(process.execPath, args); |
|||
|
|||
assert.deepEqual(ret, msgBuf); |
|||
|
|||
ret = execFileSync(process.execPath, args, { encoding: 'utf8' }); |
|||
|
|||
assert.strictEqual(ret, msg + '\n', 'execFileSync encoding result should match'); |
@ -0,0 +1,124 @@ |
|||
// Copyright Joyent, Inc. and other Node contributors.
|
|||
//
|
|||
// Permission is hereby granted, free of charge, to any person obtaining a
|
|||
// copy of this software and associated documentation files (the
|
|||
// "Software"), to deal in the Software without restriction, including
|
|||
// without limitation the rights to use, copy, modify, merge, publish,
|
|||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|||
// persons to whom the Software is furnished to do so, subject to the
|
|||
// following conditions:
|
|||
//
|
|||
// The above copyright notice and this permission notice shall be included
|
|||
// in all copies or substantial portions of the Software.
|
|||
//
|
|||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
|||
var common = require('../common'); |
|||
var assert = require('assert'); |
|||
var os = require('os'); |
|||
var util = require('util'); |
|||
|
|||
var spawnSync = require('child_process').spawnSync; |
|||
|
|||
function checkRet(ret) { |
|||
assert.strictEqual(ret.status, 0); |
|||
assert.strictEqual(ret.error, undefined); |
|||
} |
|||
|
|||
var msgOut = 'this is stdout'; |
|||
var msgErr = 'this is stderr'; |
|||
|
|||
// this is actually not os.EOL?
|
|||
var msgOutBuf = new Buffer(msgOut + '\n'); |
|||
var msgErrBuf = new Buffer(msgErr + '\n'); |
|||
|
|||
var args = [ |
|||
'-e', |
|||
util.format('console.log("%s"); console.error("%s");', msgOut, msgErr) |
|||
]; |
|||
|
|||
var ret; |
|||
|
|||
|
|||
if (process.argv.indexOf('spawnchild') !== -1) { |
|||
switch (process.argv[3]) { |
|||
case '1': |
|||
ret = spawnSync(process.execPath, args, { stdio: 'inherit' }); |
|||
checkRet(ret); |
|||
break; |
|||
case '2': |
|||
ret = spawnSync(process.execPath, args, { |
|||
stdio: ['inherit', 'inherit', 'inherit'] |
|||
}); |
|||
checkRet(ret); |
|||
break; |
|||
} |
|||
process.exit(0); |
|||
return; |
|||
} |
|||
|
|||
|
|||
function verifyBufOutput(ret) { |
|||
checkRet(ret); |
|||
assert.deepEqual(ret.stdout, msgOutBuf); |
|||
assert.deepEqual(ret.stderr, msgErrBuf); |
|||
} |
|||
|
|||
|
|||
verifyBufOutput(spawnSync(process.execPath, [__filename, 'spawnchild', 1])); |
|||
verifyBufOutput(spawnSync(process.execPath, [__filename, 'spawnchild', 2])); |
|||
|
|||
var options = { |
|||
input: 1234 |
|||
}; |
|||
|
|||
assert.throws(function() { |
|||
spawnSync('cat', [], options); |
|||
}, /TypeError:.*should be Buffer or string not number/); |
|||
|
|||
|
|||
options = { |
|||
input: 'hello world' |
|||
}; |
|||
|
|||
ret = spawnSync('cat', [], options); |
|||
|
|||
checkRet(ret); |
|||
assert.strictEqual(ret.stdout.toString('utf8'), options.input); |
|||
assert.strictEqual(ret.stderr.toString('utf8'), ''); |
|||
|
|||
options = { |
|||
input: new Buffer('hello world') |
|||
}; |
|||
|
|||
ret = spawnSync('cat', [], options); |
|||
|
|||
checkRet(ret); |
|||
assert.deepEqual(ret.stdout, options.input); |
|||
assert.deepEqual(ret.stderr, new Buffer('')); |
|||
|
|||
verifyBufOutput(spawnSync(process.execPath, args)); |
|||
|
|||
ret = spawnSync(process.execPath, args, { encoding: 'utf8' }); |
|||
|
|||
checkRet(ret); |
|||
assert.strictEqual(ret.stdout, msgOut + '\n'); |
|||
assert.strictEqual(ret.stderr, msgErr + '\n'); |
|||
|
|||
options = { |
|||
maxBuffer: 1 |
|||
}; |
|||
|
|||
ret = spawnSync(process.execPath, args, options); |
|||
|
|||
assert.ok(ret.error, 'maxBuffer should error'); |
|||
assert.strictEqual(ret.error.errno, 'ENOBUFS'); |
|||
// we can have buffers larger than maxBuffer because underneath we alloc 64k
|
|||
// that matches our read sizes
|
|||
assert.deepEqual(ret.stdout, msgOutBuf); |
@ -0,0 +1,46 @@ |
|||
// Copyright Joyent, Inc. and other Node contributors.
|
|||
//
|
|||
// Permission is hereby granted, free of charge, to any person obtaining a
|
|||
// copy of this software and associated documentation files (the
|
|||
// "Software"), to deal in the Software without restriction, including
|
|||
// without limitation the rights to use, copy, modify, merge, publish,
|
|||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|||
// persons to whom the Software is furnished to do so, subject to the
|
|||
// following conditions:
|
|||
//
|
|||
// The above copyright notice and this permission notice shall be included
|
|||
// in all copies or substantial portions of the Software.
|
|||
//
|
|||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
|||
var common = require('../common'); |
|||
var assert = require('assert'); |
|||
|
|||
var spawnSync = require('child_process').spawnSync; |
|||
|
|||
var TIMER = 200; |
|||
var SLEEP = 1000; |
|||
|
|||
switch (process.argv[2]) { |
|||
case 'child': |
|||
setTimeout(function() { |
|||
console.log('child fired'); |
|||
process.exit(1); |
|||
}, SLEEP); |
|||
break; |
|||
default: |
|||
var start = Date.now(); |
|||
var ret = spawnSync(process.execPath, [__filename, 'child'], {timeout: TIMER}); |
|||
assert.strictEqual(ret.error.errno, 'ETIMEDOUT'); |
|||
console.log(ret); |
|||
var end = Date.now() - start; |
|||
assert(end < SLEEP); |
|||
assert(ret.status > 128 || ret.signal); |
|||
break; |
|||
} |
@ -0,0 +1,52 @@ |
|||
// Copyright Joyent, Inc. and other Node contributors.
|
|||
//
|
|||
// Permission is hereby granted, free of charge, to any person obtaining a
|
|||
// copy of this software and associated documentation files (the
|
|||
// "Software"), to deal in the Software without restriction, including
|
|||
// without limitation the rights to use, copy, modify, merge, publish,
|
|||
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|||
// persons to whom the Software is furnished to do so, subject to the
|
|||
// following conditions:
|
|||
//
|
|||
// The above copyright notice and this permission notice shall be included
|
|||
// in all copies or substantial portions of the Software.
|
|||
//
|
|||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|||
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||
|
|||
var common = require('../common'); |
|||
var assert = require('assert'); |
|||
|
|||
var spawnSync = require('child_process').spawnSync; |
|||
|
|||
var TIMER = 100; |
|||
var SLEEP = 1000; |
|||
|
|||
var start = Date.now(); |
|||
var timeout = 0; |
|||
|
|||
setTimeout(function() { |
|||
console.log('timer fired'); |
|||
timeout = Date.now(); |
|||
}, TIMER); |
|||
|
|||
console.log('sleep started'); |
|||
var ret = spawnSync('sleep', ['1']); |
|||
console.log('sleep exited'); |
|||
|
|||
process.on('exit', function() { |
|||
assert.strictEqual(ret.status, 0); |
|||
|
|||
var delta = Date.now() - start; |
|||
|
|||
var expected_timeout = start + TIMER; |
|||
var tdlta = timeout - expected_timeout; |
|||
|
|||
assert(delta > SLEEP); |
|||
assert(tdlta > TIMER && tdlta < SLEEP); |
|||
}); |
Loading…
Reference in new issue