blob: 99c0dd4017558ec2e0eb4f1444320b720961d44a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
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) {
socket.addListener("Connect", function () {
socket.send("hello\r\n");
});
socket.addListener("EOF", function () {
socket.close();
});
socket.addListener("Disconnect", function (had_error) {
//puts("server had_error: " + JSON.stringify(had_error));
assertFalse(had_error);
});
});
server.listen(port);
var client = new node.tcp.Connection();
client.setEncoding("UTF8");
client.addListener("Connect", function () {
});
client.addListener("Receive", function (chunk) {
client_recv_count += 1;
assertEquals("hello\r\n", chunk);
client.fullClose();
});
client.addListener("Disconnect", function (had_error) {
assertFalse(had_error);
if (disconnect_count++ < N)
client.connect(port); // reconnect
else
server.close();
});
client.connect(port);
}
function onExit () {
assertEquals(N+1, disconnect_count);
assertEquals(N+1, client_recv_count);
}
|