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.

69 lines
1.5 KiB

var common = require('../common');
var assert = require('assert');
var net = require('net');
14 years ago
var N = 200;
var recv = '', chars_recved = 0;
14 years ago
var 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);
});
14 years ago
server.on('listening', function() {
14 years ago
var 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');
});