2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2014-04-14 19:15:57 +02:00
|
|
|
var common = require('../common');
|
|
|
|
|
|
|
|
if (!process.features.tls_ocsp) {
|
2015-07-06 05:24:12 +02:00
|
|
|
console.log('1..0 # Skipped: node compiled without OpenSSL or ' +
|
|
|
|
'with old OpenSSL version.');
|
2014-04-14 19:15:57 +02:00
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
if (!common.opensslCli) {
|
2015-07-06 05:24:12 +02:00
|
|
|
console.log('1..0 # Skipped: node compiled without OpenSSL CLI.');
|
2014-04-14 19:15:57 +02:00
|
|
|
process.exit(0);
|
|
|
|
}
|
|
|
|
|
2015-03-04 02:11:21 +01:00
|
|
|
if (!common.hasCrypto) {
|
|
|
|
console.log('1..0 # Skipped: missing crypto');
|
|
|
|
process.exit();
|
|
|
|
}
|
2014-11-04 17:14:55 +01:00
|
|
|
var tls = require('tls');
|
2015-03-04 02:11:21 +01:00
|
|
|
|
|
|
|
var assert = require('assert');
|
2014-11-04 17:14:55 +01:00
|
|
|
var constants = require('constants');
|
|
|
|
var fs = require('fs');
|
|
|
|
var join = require('path').join;
|
|
|
|
|
2014-04-14 19:15:57 +02:00
|
|
|
test({ response: false }, function() {
|
2014-11-04 17:14:55 +01:00
|
|
|
test({ response: 'hello world' }, function() {
|
|
|
|
test({ ocsp: false });
|
|
|
|
});
|
2014-04-14 19:15:57 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
function test(testOptions, cb) {
|
|
|
|
|
|
|
|
var keyFile = join(common.fixturesDir, 'keys', 'agent1-key.pem');
|
|
|
|
var certFile = join(common.fixturesDir, 'keys', 'agent1-cert.pem');
|
|
|
|
var caFile = join(common.fixturesDir, 'keys', 'ca1-cert.pem');
|
|
|
|
var key = fs.readFileSync(keyFile);
|
|
|
|
var cert = fs.readFileSync(certFile);
|
|
|
|
var ca = fs.readFileSync(caFile);
|
|
|
|
var options = {
|
|
|
|
key: key,
|
|
|
|
cert: cert,
|
|
|
|
ca: [ca]
|
|
|
|
};
|
|
|
|
var requestCount = 0;
|
2014-11-04 17:14:55 +01:00
|
|
|
var clientSecure = 0;
|
2014-04-14 19:15:57 +02:00
|
|
|
var ocspCount = 0;
|
|
|
|
var ocspResponse;
|
|
|
|
var session;
|
|
|
|
|
|
|
|
var server = tls.createServer(options, function(cleartext) {
|
|
|
|
cleartext.on('error', function(er) {
|
|
|
|
// We're ok with getting ECONNRESET in this test, but it's
|
|
|
|
// timing-dependent, and thus unreliable. Any other errors
|
|
|
|
// are just failures, though.
|
|
|
|
if (er.code !== 'ECONNRESET')
|
|
|
|
throw er;
|
|
|
|
});
|
|
|
|
++requestCount;
|
|
|
|
cleartext.end();
|
|
|
|
});
|
|
|
|
server.on('OCSPRequest', function(cert, issuer, callback) {
|
|
|
|
++ocspCount;
|
|
|
|
assert.ok(Buffer.isBuffer(cert));
|
|
|
|
assert.ok(Buffer.isBuffer(issuer));
|
|
|
|
|
|
|
|
// Just to check that async really works there
|
|
|
|
setTimeout(function() {
|
|
|
|
callback(null,
|
|
|
|
testOptions.response ? new Buffer(testOptions.response) : null);
|
|
|
|
}, 100);
|
|
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
|
|
var client = tls.connect({
|
|
|
|
port: common.PORT,
|
2014-11-04 17:14:55 +01:00
|
|
|
requestOCSP: testOptions.ocsp !== false,
|
|
|
|
secureOptions: testOptions.ocsp === false ?
|
|
|
|
constants.SSL_OP_NO_TICKET : 0,
|
2014-04-14 19:15:57 +02:00
|
|
|
rejectUnauthorized: false
|
|
|
|
}, function() {
|
2014-11-04 17:14:55 +01:00
|
|
|
clientSecure++;
|
2014-04-14 19:15:57 +02:00
|
|
|
});
|
|
|
|
client.on('OCSPResponse', function(resp) {
|
|
|
|
ocspResponse = resp;
|
|
|
|
if (resp)
|
|
|
|
client.destroy();
|
|
|
|
});
|
|
|
|
client.on('close', function() {
|
|
|
|
server.close(cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
process.on('exit', function() {
|
2014-11-04 17:14:55 +01:00
|
|
|
if (testOptions.ocsp === false) {
|
|
|
|
assert.equal(requestCount, clientSecure);
|
|
|
|
assert.equal(requestCount, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-14 19:15:57 +02:00
|
|
|
if (testOptions.response) {
|
|
|
|
assert.equal(ocspResponse.toString(), testOptions.response);
|
|
|
|
} else {
|
|
|
|
assert.ok(ocspResponse === null);
|
|
|
|
}
|
|
|
|
assert.equal(requestCount, testOptions.response ? 0 : 1);
|
2014-11-04 17:14:55 +01:00
|
|
|
assert.equal(clientSecure, requestCount);
|
2014-04-14 19:15:57 +02:00
|
|
|
assert.equal(ocspCount, 1);
|
|
|
|
});
|
|
|
|
}
|