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

30 lines
598 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 13:18:30 +02:00
process.addListener("output", function (s) {
puts("stdout: " + JSON.stringify(s));
if (s) output += s;
2009-06-27 20:40:43 +02:00
});
process.addListener("exit", function (c) {
puts("exit: " + c);
assertEquals(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);
2009-08-26 18:22:00 +02:00
assertTrue(result.length > 1);
assertEquals("\n", result[result.length-1]);
});
process.addListener("exit", function () {
assertTrue(pwd_called);
});