mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
742 B
34 lines
742 B
process.mixin(require("./common"));
|
|
|
|
var cat = process.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);
|
|
});
|
|
|