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

32 lines
610 B
JavaScript
Raw Normal View History

include("mjsunit.js");
var pwd_called = false;
function pwd (callback) {
var output = "";
var process = node.createProcess("pwd");
2009-06-29 19:18:30 +08:00
process.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
2009-06-28 02:40:43 +08:00
});
process.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(0, c);
callback(output);
pwd_called = true;
2009-06-28 02:40:43 +08:00
});
}
function onLoad () {
pwd(function (result) {
p(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
}
function onExit () {
assertTrue(pwd_called);
}