Many of the tests use variables to track when callback functions are invoked or events are emitted. These variables are then asserted on process exit. This commit replaces this pattern in straightforward cases with common.mustCall(). This makes the tests easier to reason about, leads to a net reduction in lines of code, and uncovered a few bugs in tests. This commit also replaces some callbacks that should never be called with common.fail(). PR-URL: https://github.com/nodejs/node/pull/7753 Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
43 lines
978 B
JavaScript
43 lines
978 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
var net = require('net');
|
|
|
|
var SIZE = 2E5;
|
|
var N = 10;
|
|
var flushed = 0;
|
|
var received = 0;
|
|
var buf = new Buffer(SIZE);
|
|
buf.fill(0x61); // '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);
|
|
}));
|
|
}));
|