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
Rich Trott 44efd66132 test: replace deprecated util.debug() calls
common.debug() is just util.debug() and emits a deprecation notice. Per
docs, use console.error() instead.

PR-URL: https://github.com/nodejs/node/pull/3082
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
2015-09-28 11:15:06 -07:00

70 lines
1.4 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var net = require('net');
var N = 200;
var recv = '', chars_recved = 0;
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);
});
server.on('listening', function() {
var client = net.createConnection(common.PORT);
client.setEncoding('ascii');
client.on('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.on('end', function() {
server.close();
client.end();
});
});
server.listen(common.PORT);
process.on('exit', function() {
assert.equal(N, recv.length);
console.error('Exit');
});