0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-25 08:19:38 +01:00
nodejs/test/parallel/test-child-process-exec-env.js

39 lines
989 B
JavaScript
Raw Normal View History

2010-12-05 00:20:34 +01:00
var common = require('../common');
var assert = require('assert');
var exec = require('child_process').exec;
2010-12-05 00:20:34 +01:00
var success_count = 0;
var error_count = 0;
var response = '';
var child;
2010-07-09 15:05:54 +02:00
function after(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 != '');
}
}
2010-07-09 15:05:54 +02:00
if (process.platform !== 'win32') {
child = exec('/usr/bin/env', { env: { 'HELLO': 'WORLD' } }, after);
} else {
child = exec('set', { env: { 'HELLO': 'WORLD' } }, after);
}
2010-07-09 15:05:54 +02:00
child.stdout.setEncoding('utf8');
child.stdout.on('data', function(chunk) {
2010-07-09 15:05:54 +02:00
response += chunk;
});
process.on('exit', function() {
console.log('response: ', response);
2010-07-09 15:05:54 +02:00
assert.equal(1, success_count);
assert.equal(0, error_count);
assert.ok(response.indexOf('HELLO=WORLD') >= 0);
});