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

30 lines
547 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) {
if (s) output += s;
2009-06-28 02:40:43 +08:00
});
2009-06-29 19:18:30 +08:00
process.addListener("exit", function(c) {
assertEquals(0, c);
callback(output);
pwd_called = true;
2009-06-28 02:40:43 +08:00
});
}
function onLoad () {
pwd(function (result) {
print(result);
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
}
function onExit () {
assertTrue(pwd_called);
}