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