Browse Source

add error listener to test-net-pingpong

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
462a8f8652
  1. 10
      test/simple/test-net-pingpong.js

10
test/simple/test-net-pingpong.js

@ -35,7 +35,12 @@ function pingPongTest (port, host) {
socket.close();
});
socket.addListener("error", function (e) {
throw e;
});
socket.addListener("close", function () {
puts('server socket closed');
assert.equal(false, socket.writable);
assert.equal(false, socket.readable);
socket.server.close();
@ -78,10 +83,15 @@ function pingPongTest (port, host) {
});
client.addListener("close", function () {
puts('client closed');
assert.equal(N+1, count);
assert.equal(true, sent_final_ping);
tests_run += 1;
});
client.addListener("error", function (e) {
throw e;
});
});
server.listen(port, host);

Loading…
Cancel
Save