0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-tcp-pingpong-delay.js
Ryan Dahl 8185e1fd25 Remove include() add node.mixin()
include() should not be used by libraries because it will pollute the global
namespace. To discourage this behavior and bring Node more in-line with
the current CommonJS module system, include() is removed.

Small scripts like unit tests often times do want to pollute the global
namespace for ease. To avoid the boiler plate code of

  var x = require("/x.js");
  var foo = x.foo;
  var bar = x.bar;

The function node.mixin() is stolen from jQuery's jQuery.extend. So that it
can be written:

  node.mixin(require("/x.js"));

Reference:
http://docs.jquery.com/Utilities/jQuery.extend
http://groups.google.com/group/nodejs/browse_thread/thread/f9ac83e5c11e7e87
2009-10-05 15:46:31 +02:00

92 lines
2.1 KiB
JavaScript

node.mixin(require("common.js"));
tcp = require("/tcp.js");
var tests_run = 0;
function pingPongTest (port, host, on_complete) {
var N = 100;
var DELAY = 1;
var count = 0;
var client_closed = false;
var server = tcp.createServer(function (socket) {
socket.setEncoding("utf8");
socket.addListener("receive", function (data) {
puts(data);
assertEquals("PING", data);
assertEquals("open", socket.readyState);
assertTrue(count <= N);
setTimeout(function () {
assertEquals("open", socket.readyState);
socket.send("PONG");
}, DELAY);
});
socket.addListener("timeout", function () {
debug("server-side timeout!!");
assertFalse(true);
});
socket.addListener("eof", function () {
puts("server-side socket EOF");
assertEquals("writeOnly", socket.readyState);
socket.close();
});
socket.addListener("close", function (had_error) {
puts("server-side socket close");
assertFalse(had_error);
assertEquals("closed", socket.readyState);
socket.server.close();
});
});
server.listen(port, host);
var client = tcp.createConnection(port, host);
client.setEncoding("utf8");
client.addListener("connect", function () {
assertEquals("open", client.readyState);
client.send("PING");
});
client.addListener("receive", function (data) {
puts(data);
assertEquals("PONG", data);
assertEquals("open", client.readyState);
setTimeout(function () {
assertEquals("open", client.readyState);
if (count++ < N) {
client.send("PING");
} else {
puts("closing client");
client.close();
client_closed = true;
}
}, DELAY);
});
client.addListener("timeout", function () {
debug("client-side timeout!!");
assertFalse(true);
});
client.addListener("close", function () {
puts("client close");
assertEquals(N+1, count);
assertTrue(client_closed);
if (on_complete) on_complete();
tests_run += 1;
});
}
pingPongTest(21988);
process.addListener("exit", function () {
assertEquals(1, tests_run);
});