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
Herbert Vojčík cf2b206a8e More changes to tests so they really work under context module loader.
Plus, getting rid of test/common.js defining things in global.
2010-08-17 08:41:05 -07:00

67 lines
1.5 KiB
JavaScript

var common = require("../common");
var assert = common.assert;
var net = require("net");
var N = 200;
var recv = "", chars_recved = 0;
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);
});
server.on('listening', function(){
client = net.createConnection(common.PORT);
client.setEncoding("ascii");
client.addListener("data", function (d) {
common.print(d);
recv += d;
});
setTimeout(function () {
chars_recved = recv.length;
console.log("pause at: " + chars_recved);
assert.equal(true, chars_recved > 1);
client.pause();
setTimeout(function () {
console.log("resume at: " + chars_recved);
assert.equal(chars_recved, recv.length);
client.resume();
setTimeout(function () {
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);
client.addListener("end", function () {
server.close();
client.end();
});
});
server.listen(common.PORT);
process.addListener("exit", function () {
assert.equal(N, recv.length);
common.debug("Exit");
});