mirror of
https://github.com/nodejs/node.git
synced 2025-05-13 10:54: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>
43 lines
901 B
JavaScript
43 lines
901 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
var tls = require('tls');
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var cert = fs.readFileSync(path.join(common.fixturesDir, 'test_cert.pem'));
|
|
var key = fs.readFileSync(path.join(common.fixturesDir, 'test_key.pem'));
|
|
|
|
var server = tls.createServer({
|
|
cert: cert,
|
|
key: key
|
|
}, function(c) {
|
|
// Nop
|
|
setTimeout(function() {
|
|
c.end();
|
|
server.close();
|
|
}, 20);
|
|
}).listen(0, common.mustCall(function() {
|
|
var conn = tls.connect({
|
|
cert: cert,
|
|
key: key,
|
|
rejectUnauthorized: false,
|
|
port: this.address().port
|
|
}, function() {
|
|
setTimeout(function() {
|
|
conn.destroy();
|
|
}, 20);
|
|
});
|
|
|
|
// SSL_write() call's return value, when called 0 bytes, should not be
|
|
// treated as error.
|
|
conn.end('');
|
|
|
|
conn.on('error', common.fail);
|
|
}));
|