mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 19:08:17 +00:00
added env to child_process.exec
This commit is contained in:
parent
98341daee2
commit
078a48a97b
@ -10,24 +10,26 @@ var spawn = exports.spawn = function (path, args, env, customFds) {
|
||||
return child;
|
||||
};
|
||||
|
||||
exports.exec = function (command /*, options, callback */) {
|
||||
exports.exec = function (command /*, options, callback, env */) {
|
||||
if (arguments.length < 3) {
|
||||
return exports.execFile("/bin/sh", ["-c", command], arguments[1]);
|
||||
} else {
|
||||
} else if (arguments.length < 4) {
|
||||
return exports.execFile("/bin/sh", ["-c", command], arguments[1], arguments[2]);
|
||||
} else {
|
||||
return exports.execFile("/bin/sh", ["-c", command], arguments[1], arguments[2], arguments[3]);
|
||||
}
|
||||
};
|
||||
|
||||
exports.execFile = function (file, args /*, options, callback */) {
|
||||
exports.execFile = function (file, args /*, options, callback, env */) {
|
||||
var options = { encoding: 'utf8'
|
||||
, timeout: 0
|
||||
, maxBuffer: 200*1024
|
||||
, killSignal: 'SIGKILL'
|
||||
};
|
||||
|
||||
var callback = arguments[arguments.length-1];
|
||||
var callback = (arguments.length == 5 ? arguments[3] : arguments[arguments.length-1]);
|
||||
|
||||
if (typeof arguments[2] == 'object') {
|
||||
if (arguments[2] && typeof arguments[2] == 'object') {
|
||||
var keys = Object.keys(options);
|
||||
for (var i = 0; i < keys.length; i++) {
|
||||
var k = keys[i];
|
||||
@ -35,7 +37,7 @@ exports.execFile = function (file, args /*, options, callback */) {
|
||||
}
|
||||
}
|
||||
|
||||
var child = spawn(file, args);
|
||||
var child = arguments[4] ? spawn(file, args, arguments[4]) : spawn(file, args);
|
||||
var stdout = "";
|
||||
var stderr = "";
|
||||
var killed = false;
|
||||
|
31
test/simple/test-child-process-exec-env.js
Normal file
31
test/simple/test-child-process-exec-env.js
Normal file
@ -0,0 +1,31 @@
|
||||
require('../common');
|
||||
var exec = require('child_process').exec,
|
||||
sys = require('sys');
|
||||
success_count = 0;
|
||||
error_count = 0;
|
||||
response = "";
|
||||
|
||||
child = exec('/usr/bin/env', [], function (err, stdout, stderr) {
|
||||
if (err) {
|
||||
error_count++;
|
||||
console.log('error!: ' + err.code);
|
||||
console.log('stdout: ' + JSON.stringify(stdout));
|
||||
console.log('stderr: ' + JSON.stringify(stderr));
|
||||
assert.equal(false, err.killed);
|
||||
} else {
|
||||
success_count++;
|
||||
assert.equal(true, stdout != "");
|
||||
}
|
||||
}, {'HELLO' : 'WORLD'});
|
||||
|
||||
child.stdout.setEncoding('utf8');
|
||||
|
||||
child.stdout.addListener('data', function (chunk) {
|
||||
response += chunk;
|
||||
});
|
||||
|
||||
process.addListener('exit', function () {
|
||||
assert.equal(1, success_count);
|
||||
assert.equal(0, error_count);
|
||||
assert.ok(response.indexOf('HELLO=WORLD') >= 0);
|
||||
});
|
Loading…
Reference in New Issue
Block a user