mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

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>
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var http = require('http');
|
|
|
|
var CRLF = '\r\n';
|
|
|
|
var server = http.createServer();
|
|
server.on('upgrade', function(req, socket, head) {
|
|
socket.write('HTTP/1.1 101 Ok' + CRLF +
|
|
'Connection: Upgrade' + CRLF +
|
|
'Upgrade: Test' + CRLF + CRLF + 'head');
|
|
socket.on('end', function() {
|
|
socket.end();
|
|
});
|
|
});
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
|
|
function upgradeRequest(fn) {
|
|
console.log('req');
|
|
var header = { 'Connection': 'Upgrade', 'Upgrade': 'Test' };
|
|
var request = http.request({
|
|
port: server.address().port,
|
|
headers: header
|
|
});
|
|
var wasUpgrade = false;
|
|
|
|
function onUpgrade(res, socket, head) {
|
|
console.log('client upgraded');
|
|
wasUpgrade = true;
|
|
|
|
request.removeListener('upgrade', onUpgrade);
|
|
socket.end();
|
|
}
|
|
request.on('upgrade', onUpgrade);
|
|
|
|
function onEnd() {
|
|
console.log('client end');
|
|
request.removeListener('end', onEnd);
|
|
if (!wasUpgrade) {
|
|
throw new Error('hasn\'t received upgrade event');
|
|
} else {
|
|
fn && process.nextTick(fn);
|
|
}
|
|
}
|
|
request.on('close', onEnd);
|
|
|
|
request.write('head');
|
|
|
|
}
|
|
|
|
upgradeRequest(common.mustCall(function() {
|
|
upgradeRequest(common.mustCall(function() {
|
|
// Test pass
|
|
console.log('Pass!');
|
|
server.close();
|
|
}));
|
|
}));
|
|
}));
|