2010-12-05 00:20:34 +01:00
|
|
|
var common = require('../common');
|
2010-12-05 20:15:30 +01:00
|
|
|
var assert = require('assert');
|
2010-10-11 23:04:09 +02:00
|
|
|
var exec = require('child_process').exec;
|
2010-12-05 00:20:34 +01:00
|
|
|
var success_count = 0;
|
|
|
|
var error_count = 0;
|
2010-12-05 20:15:30 +01:00
|
|
|
var response = '';
|
2011-08-05 10:03:38 +02:00
|
|
|
var child;
|
2010-07-09 15:05:54 +02:00
|
|
|
|
2011-08-01 01:24:29 +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
|
|
|
|
2011-08-05 10:03:38 +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
|
|
|
|
2011-08-01 01:24:29 +02:00
|
|
|
child.stdout.setEncoding('utf8');
|
2011-10-15 01:08:36 +02:00
|
|
|
child.stdout.on('data', function(chunk) {
|
2010-07-09 15:05:54 +02:00
|
|
|
response += chunk;
|
|
|
|
});
|
|
|
|
|
2011-10-15 01:08:36 +02:00
|
|
|
process.on('exit', function() {
|
2011-10-05 00:08:18 +02:00
|
|
|
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);
|
|
|
|
});
|