mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var os = require('os');
|
|
var util = require('util');
|
|
|
|
var spawnSync = require('child_process').spawnSync;
|
|
|
|
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' });
|
|
common.checkSpawnSyncRet(ret);
|
|
break;
|
|
case '2':
|
|
ret = spawnSync(process.execPath, args, {
|
|
stdio: ['inherit', 'inherit', 'inherit']
|
|
});
|
|
common.checkSpawnSyncRet(ret);
|
|
break;
|
|
}
|
|
process.exit(0);
|
|
return;
|
|
}
|
|
|
|
|
|
function verifyBufOutput(ret) {
|
|
common.checkSpawnSyncRet(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);
|
|
|
|
common.checkSpawnSyncRet(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);
|
|
|
|
common.checkSpawnSyncRet(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' });
|
|
|
|
common.checkSpawnSyncRet(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);
|