mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 21:58:48 +02:00
test: use mustCall() for simple flow tracking
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>
This commit is contained in:
parent
59741a9bee
commit
04b4d15b39
213 changed files with 1101 additions and 2882 deletions
|
@ -1,52 +1,44 @@
|
|||
'use strict';
|
||||
require('../common');
|
||||
const common = require('../common');
|
||||
var assert = require('assert');
|
||||
var http = require('http');
|
||||
|
||||
var N = 1024;
|
||||
var bytesReceived = 0;
|
||||
var server_req_complete = false;
|
||||
var client_res_complete = false;
|
||||
|
||||
var server = http.createServer(function(req, res) {
|
||||
var server = http.createServer(common.mustCall(function(req, res) {
|
||||
assert.equal('POST', req.method);
|
||||
|
||||
var bytesReceived = 0;
|
||||
|
||||
req.on('data', function(chunk) {
|
||||
bytesReceived += chunk.length;
|
||||
});
|
||||
|
||||
req.on('end', function() {
|
||||
server_req_complete = true;
|
||||
req.on('end', common.mustCall(function() {
|
||||
assert.strictEqual(N, bytesReceived);
|
||||
console.log('request complete from server');
|
||||
res.writeHead(200, {'Content-Type': 'text/plain'});
|
||||
res.write('hello\n');
|
||||
res.end();
|
||||
});
|
||||
});
|
||||
}));
|
||||
}));
|
||||
server.listen(0);
|
||||
|
||||
server.on('listening', function() {
|
||||
server.on('listening', common.mustCall(function() {
|
||||
var req = http.request({
|
||||
port: this.address().port,
|
||||
method: 'POST',
|
||||
path: '/'
|
||||
}, function(res) {
|
||||
}, common.mustCall(function(res) {
|
||||
res.setEncoding('utf8');
|
||||
res.on('data', function(chunk) {
|
||||
console.log(chunk);
|
||||
});
|
||||
res.on('end', function() {
|
||||
client_res_complete = true;
|
||||
res.on('end', common.mustCall(function() {
|
||||
server.close();
|
||||
});
|
||||
});
|
||||
}));
|
||||
}));
|
||||
|
||||
req.write(Buffer.allocUnsafe(N));
|
||||
req.end();
|
||||
});
|
||||
|
||||
process.on('exit', function() {
|
||||
assert.equal(N, bytesReceived);
|
||||
assert.equal(true, server_req_complete);
|
||||
assert.equal(true, client_res_complete);
|
||||
});
|
||||
}));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue