mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 07:27:32 +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>
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var options = {
|
|
key: fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem')),
|
|
cert: fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))
|
|
};
|
|
|
|
var server = tls.createServer(options, common.mustCall(function(socket) {
|
|
socket.on('data', function(data) {
|
|
console.error(data.toString());
|
|
assert.equal(data, 'ok');
|
|
});
|
|
}, 3)).listen(0, function() {
|
|
unauthorized();
|
|
});
|
|
|
|
function unauthorized() {
|
|
var socket = tls.connect({
|
|
port: server.address().port,
|
|
servername: 'localhost',
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
assert(!socket.authorized);
|
|
socket.end();
|
|
rejectUnauthorized();
|
|
});
|
|
socket.on('error', common.fail);
|
|
socket.write('ok');
|
|
}
|
|
|
|
function rejectUnauthorized() {
|
|
var socket = tls.connect(server.address().port, {
|
|
servername: 'localhost'
|
|
}, common.fail);
|
|
socket.on('error', function(err) {
|
|
console.error(err);
|
|
authorized();
|
|
});
|
|
socket.write('ng');
|
|
}
|
|
|
|
function authorized() {
|
|
var socket = tls.connect(server.address().port, {
|
|
ca: [fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'))],
|
|
servername: 'localhost'
|
|
}, function() {
|
|
assert(socket.authorized);
|
|
socket.end();
|
|
server.close();
|
|
});
|
|
socket.on('error', common.fail);
|
|
socket.write('ok');
|
|
}
|