mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 18:29:06 +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>
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
'use strict';
|
|
// Create an ssl server. First connection, validate that not resume.
|
|
// Cache session and close connection. Use session on second connection.
|
|
// ASSERT resumption.
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
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/agent2-key.pem'),
|
|
cert: fs.readFileSync(common.fixturesDir + '/keys/agent2-cert.pem')
|
|
};
|
|
|
|
// create server
|
|
var server = https.createServer(options, common.mustCall(function(req, res) {
|
|
res.end('Goodbye');
|
|
}, 2));
|
|
|
|
// start listening
|
|
server.listen(0, function() {
|
|
|
|
var session1 = null;
|
|
var client1 = tls.connect({
|
|
port: this.address().port,
|
|
rejectUnauthorized: false
|
|
}, function() {
|
|
console.log('connect1');
|
|
assert.ok(!client1.isSessionReused(), 'Session *should not* be reused.');
|
|
session1 = client1.getSession();
|
|
client1.write('GET / HTTP/1.0\r\n' +
|
|
'Server: 127.0.0.1\r\n' +
|
|
'\r\n');
|
|
});
|
|
|
|
client1.on('close', function() {
|
|
console.log('close1');
|
|
|
|
var opts = {
|
|
port: server.address().port,
|
|
rejectUnauthorized: false,
|
|
session: session1
|
|
};
|
|
|
|
var client2 = tls.connect(opts, function() {
|
|
console.log('connect2');
|
|
assert.ok(client2.isSessionReused(), 'Session *should* be reused.');
|
|
client2.write('GET / HTTP/1.0\r\n' +
|
|
'Server: 127.0.0.1\r\n' +
|
|
'\r\n');
|
|
});
|
|
|
|
client2.on('close', function() {
|
|
console.log('close2');
|
|
server.close();
|
|
});
|
|
});
|
|
});
|