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-buffering.js

45 lines
928 B
JavaScript
Raw Normal View History

2010-12-05 00:20:34 +01:00
var common = require('../common');
var assert = require('assert');
2010-03-17 22:00:17 +01:00
var spawn = require('child_process').spawn;
var pwd_called = false;
var childClosed = false;
var childExited = false;
function pwd(callback) {
var output = '';
var child = common.spawnPwd();
2010-03-17 22:00:17 +01:00
child.stdout.setEncoding('utf8');
child.stdout.on('data', function(s) {
console.log('stdout: ' + JSON.stringify(s));
2010-03-17 22:00:17 +01:00
output += s;
2009-06-27 20:40:43 +02:00
});
2010-03-17 22:00:17 +01:00
child.on('exit', function(c) {
console.log('exit: ' + c);
assert.equal(0, c);
childExited = true;
});
child.on('close', function () {
callback(output);
pwd_called = true;
childClosed = true;
2009-06-27 20:40:43 +02:00
});
}
pwd(function(result) {
2010-10-12 01:09:02 +02:00
console.dir(result);
assert.equal(true, result.length > 1);
assert.equal('\n', result[result.length - 1]);
2009-08-26 18:22:00 +02:00
});
process.on('exit', function() {
assert.equal(true, pwd_called);
assert.equal(true, childExited);
assert.equal(true, childClosed);
});