You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
1.1 KiB

include("mjsunit");
var port = 12123;
var N = 100;
var count = 0;
var server;
function Ponger (socket) {
this.encoding = "UTF8";
this.onConnect = function () {
puts("got socket.");
};
this.onReceive = function (data) {
assertTrue(count <= N);
stdout.print ("-");
if (/QUIT/.exec(data)) {
socket.disconnect();
//server.close();
} else if (/PING/.exec(data)) {
socket.send("PONG");
}
};
}
function Pinger (socket) {
this.encoding = "UTF8";
this.onConnect = function () {
socket.send("PING");
};
this.onReceive = function (data) {
stdout.print(".");
assertEquals("PONG", data);
setTimeout(function() {
count += 1;
if (count < N) {
socket.send("PING");
} else {
stdout.write("\n");
socket.send("QUIT\n");
socket.disconnect();
}
}, 10);
};
this.onDisconnect = function () {
puts("socket close.");
assertEquals(N, count);
server.close();
};
}
function onLoad() {
server = new TCPServer(Ponger);
server.listen(port);
var client = new TCPConnection(Pinger);
client.connect(port);
}