0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/mjsunit/test-reconnecting-socket.js

52 lines
1.1 KiB
JavaScript
Raw Normal View History

include("mjsunit.js");
var N = 50;
var port = 8921;
var disconnect_count = 0;
var client_recv_count = 0;
function onLoad () {
var server = node.tcp.createServer(function (socket) {
2009-06-27 20:40:43 +02:00
socket.addListener("Connect", function () {
socket.send("hello\r\n");
2009-06-27 20:40:43 +02:00
});
2009-06-27 20:40:43 +02:00
socket.addListener("EOF", function () {
socket.close();
2009-06-27 20:40:43 +02:00
});
2009-06-27 20:40:43 +02:00
socket.addListener("Disconnect", function (had_error) {
//puts("server had_error: " + JSON.stringify(had_error));
assertFalse(had_error);
2009-06-27 20:40:43 +02:00
});
});
server.listen(port);
var client = new node.tcp.Connection();
client.setEncoding("UTF8");
2009-06-27 20:40:43 +02:00
client.addListener("Connect", function () {
});
2009-06-27 20:40:43 +02:00
client.addListener("Receive", function (chunk) {
client_recv_count += 1;
assertEquals("hello\r\n", chunk);
client.fullClose();
2009-06-27 20:40:43 +02:00
});
2009-06-27 20:40:43 +02:00
client.addListener("Disconnect", function (had_error) {
assertFalse(had_error);
if (disconnect_count++ < N)
client.connect(port); // reconnect
else
server.close();
2009-06-27 20:40:43 +02:00
});
client.connect(port);
}
function onExit () {
assertEquals(N+1, disconnect_count);
assertEquals(N+1, client_recv_count);
}