diff --git a/test/test-process-simple.js b/test/test-process-simple.js new file mode 100644 index 00000000000..b2babfca3a8 --- /dev/null +++ b/test/test-process-simple.js @@ -0,0 +1,26 @@ +include("mjsunit.js"); + +var cat = new node.Process("cat"); + +var response = ""; +var exit_status = -1; + +cat.onOutput = function (chunk) { + if (chunk) response += chunk; + if (response === "hello world") cat.close(); +}; +cat.onError = function (chunk) { + assertEquals(null, chunk); +}; +cat.onExit = function (status) { exit_status = status; }; + +function onLoad () { + cat.write("hello"); + cat.write(" "); + cat.write("world"); +} + +function onExit () { + assertEquals(0, exit_status); + assertEquals("hello world", response); +}