mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 05:41:13 +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>
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
'use strict';
|
|
// disable strict server certificate validation by the client
|
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
|
|
|
|
var common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var https = require('https');
|
|
|
|
var tls = require('tls');
|
|
var fs = require('fs');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(common.fixturesDir + '/keys/agent1-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent1-cert.pem')
|
|
};
|
|
|
|
// Force splitting incoming data
|
|
tls.SLAB_BUFFER_SIZE = 1;
|
|
|
|
var server = https.createServer(options);
|
|
server.on('upgrade', common.mustCall(function(req, socket, upgrade) {
|
|
socket.on('data', function(data) {
|
|
throw new Error('Unexpected data: ' + data);
|
|
});
|
|
socket.end('HTTP/1.1 200 Ok\r\n\r\n');
|
|
}));
|
|
|
|
server.listen(0, function() {
|
|
var req = https.request({
|
|
host: '127.0.0.1',
|
|
port: this.address().port,
|
|
agent: false,
|
|
headers: {
|
|
Connection: 'Upgrade',
|
|
Upgrade: 'Websocket'
|
|
}
|
|
}, function() {
|
|
req.socket.destroy();
|
|
server.close();
|
|
});
|
|
|
|
req.end();
|
|
});
|