0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/simple/test-child-process-buffering.js

35 lines
689 B
JavaScript
Raw Normal View History

require("../common");
2010-03-17 22:00:17 +01:00
var spawn = require('child_process').spawn;
var pwd_called = false;
function pwd (callback) {
var output = "";
2010-03-17 22:00:17 +01:00
var child = spawn("pwd");
child.stdout.setEncoding('utf8');
child.stdout.addListener("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.addListener("exit", function (c) {
console.log("exit: " + c);
assert.equal(0, c);
callback(output);
pwd_called = true;
2009-06-27 20:40:43 +02:00
});
}
2009-08-26 18:22:00 +02:00
pwd(function (result) {
2009-08-26 22:03:19 +02:00
p(result);
assert.equal(true, result.length > 1);
assert.equal("\n", result[result.length-1]);
2009-08-26 18:22:00 +02:00
});
process.addListener("exit", function () {
assert.equal(true, pwd_called);
});