Files
node-v0.x-archive/test/mjsunit/test-process-simple.js
Ryan ad9d683f9f API: rename node.Process to node.ChildProcess
This is to avoid confusion with the global "process" object, especially for
the instances of node.Process.
2009-08-26 22:36:45 +02:00

35 lines
726 B
JavaScript

include("mjsunit.js");
var cat = node.createChildProcess("cat");
var response = "";
var exit_status = -1;
cat.addListener("output", function (chunk) {
puts("stdout: " + JSON.stringify(chunk));
if (chunk) {
response += chunk;
if (response === "hello world") {
puts("closing cat");
cat.close();
}
}
});
cat.addListener("error", function (chunk) {
puts("stderr: " + JSON.stringify(chunk));
assertEquals(null, chunk);
});
cat.addListener("exit", function (status) {
puts("exit event");
exit_status = status;
});
cat.write("hello");
cat.write(" ");
cat.write("world");
process.addListener("exit", function () {
assertEquals(0, exit_status);
assertEquals("hello world", response);
});