0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-tcp-throttle.js
2009-09-20 18:19:33 +02:00

68 lines
1.3 KiB
JavaScript

include("common.js");
PORT = 20443;
N = 200;
server = node.tcp.createServer(function (connection) {
function send (j) {
if (j >= N) {
connection.close();
return;
}
setTimeout(function () {
connection.send("C");
send(j+1);
}, 10);
}
send(0);
});
server.listen(PORT);
recv = "";
chars_recved = 0;
client = node.tcp.createConnection(PORT);
client.setEncoding("ascii");
client.addListener("receive", function (d) {
print(d);
recv += d;
});
setTimeout(function () {
chars_recved = recv.length;
puts("pause at: " + chars_recved);
assertTrue(chars_recved > 1);
client.readPause();
setTimeout(function () {
puts("resume at: " + chars_recved);
assertEquals(chars_recved, recv.length);
client.readResume();
setTimeout(function () {
chars_recved = recv.length;
puts("pause at: " + chars_recved);
client.readPause();
setTimeout(function () {
puts("resume at: " + chars_recved);
assertEquals(chars_recved, recv.length);
client.readResume();
}, 500);
}, 500);
}, 500);
}, 500);
client.addListener("eof", function () {
server.close();
client.close();
});
process.addListener("exit", function () {
assertEquals(N, recv.length);
node.debug("Exit");
});