0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-process-simple.js
Felix Geisendörfer 530328f12b CommonJS testing for node.js
Refactored test suite to use the assert module for testing rather than
mjsunit.
2009-12-05 01:05:16 +01:00

35 lines
742 B
JavaScript

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));
assert.equal(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 () {
assert.equal(0, exit_status);
assert.equal("hello world", response);
});