node/test/simple/test-process-buffering.js

30 lines
615 B
JavaScript
Raw Normal View History

require("../common");
var pwd_called = false;
function pwd (callback) {
var output = "";
var child = process.createChildProcess("pwd");
child.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
2009-06-28 02:40:43 +08:00
});
child.addListener("exit", function (c) {
puts("exit: " + c);
assert.equal(0, c);
callback(output);
pwd_called = true;
2009-06-28 02:40:43 +08:00
});
}
2009-08-27 00:22:00 +08:00
pwd(function (result) {
2009-08-27 04:03:19 +08:00
p(result);
assert.equal(true, result.length > 1);
assert.equal("\n", result[result.length-1]);
2009-08-27 00:22:00 +08:00
});
process.addListener("exit", function () {
assert.equal(true, pwd_called);
});