node/test/parallel/test-net-write-slow.js
cjihrig ff1efa6087 test: use const for all require() calls
PR-URL: https://github.com/nodejs/node/pull/10550
Reviewed-By: Rich Trott <rtrott@gmail.com>
2017-01-02 18:28:18 -05:00

43 lines
966 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const net = require('net');
var SIZE = 2E5;
var N = 10;
var flushed = 0;
var received = 0;
var buf = Buffer.alloc(SIZE, 'a');
var server = net.createServer(function(socket) {
socket.setNoDelay();
socket.setTimeout(9999);
socket.on('timeout', function() {
common.fail(`flushed: ${flushed}, received: ${received}/${SIZE * N}`);
});
for (var i = 0; i < N; ++i) {
socket.write(buf, function() {
++flushed;
if (flushed === N) {
socket.setTimeout(0);
}
});
}
socket.end();
}).listen(0, common.mustCall(function() {
var conn = net.connect(this.address().port);
conn.on('data', function(buf) {
received += buf.length;
conn.pause();
setTimeout(function() {
conn.resume();
}, 20);
});
conn.on('end', common.mustCall(function() {
server.close();
assert.strictEqual(received, SIZE * N);
}));
}));