0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/pummel/test-net-pause.js

67 lines
1.5 KiB
JavaScript
Raw Normal View History

2010-08-11 02:37:30 +02:00
var common = require("../common");
var assert = common.assert;
var net = require("net");
var N = 200;
var recv = "", chars_recved = 0;
2010-03-10 01:27:49 +01:00
server = net.createServer(function (connection) {
function write (j) {
if (j >= N) {
connection.end();
return;
}
setTimeout(function () {
connection.write("C");
write(j+1);
}, 10);
}
write(0);
});
2010-08-11 02:37:30 +02:00
server.on('listening', function(){
client = net.createConnection(common.PORT);
client.setEncoding("ascii");
client.addListener("data", function (d) {
common.print(d);
2010-08-11 02:37:30 +02:00
recv += d;
});
setTimeout(function () {
2010-08-11 02:37:30 +02:00
chars_recved = recv.length;
console.log("pause at: " + chars_recved);
assert.equal(true, chars_recved > 1);
client.pause();
setTimeout(function () {
2010-08-11 02:37:30 +02:00
console.log("resume at: " + chars_recved);
assert.equal(chars_recved, recv.length);
client.resume();
setTimeout(function () {
2010-08-11 02:37:30 +02:00
chars_recved = recv.length;
console.log("pause at: " + chars_recved);
client.pause();
setTimeout(function () {
console.log("resume at: " + chars_recved);
assert.equal(chars_recved, recv.length);
client.resume();
}, 500);
}, 500);
}, 500);
}, 500);
2010-08-11 02:37:30 +02:00
client.addListener("end", function () {
server.close();
client.end();
});
});
2010-08-11 02:37:30 +02:00
server.listen(common.PORT);
process.addListener("exit", function () {
assert.equal(N, recv.length);
common.debug("Exit");
});