nodejs/test/parallel/test-child-process-env.js

65 lines
2.1 KiB
JavaScript
Raw Normal View History

// 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.
'use strict';
const common = require('../common');
const assert = require('assert');
const os = require('os');
2010-03-17 14:00:17 -07:00
const spawn = require('child_process').spawn;
const env = {
'HELLO': 'WORLD',
'UNDEFINED': undefined,
'NULL': null,
'EMPTY': ''
};
Object.setPrototypeOf(env, {
'FOO': 'BAR'
});
let child;
if (common.isWindows) {
child = spawn('cmd.exe', ['/c', 'set'],
Object.assign({}, process.env, { env }));
2011-08-01 13:43:38 -07:00
} else {
child = spawn('/usr/bin/env', [],
Object.assign({}, process.env, { env }));
2011-08-01 13:43:38 -07:00
}
2010-03-17 14:00:17 -07:00
let response = '';
2010-03-03 10:45:58 -08:00
2010-03-17 14:00:17 -07:00
child.stdout.setEncoding('utf8');
child.stdout.on('data', function(chunk) {
console.log(`stdout: ${chunk}`);
2010-03-17 14:00:17 -07:00
response += chunk;
2010-03-03 10:45:58 -08:00
});
process.on('exit', function() {
assert.ok(response.includes('HELLO=WORLD'));
assert.ok(response.includes('FOO=BAR'));
assert.ok(!response.includes('UNDEFINED=undefined'));
assert.ok(response.includes('NULL=null'));
assert.ok(response.includes(`EMPTY=${os.EOL}`));
2010-03-03 10:45:58 -08:00
});