mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.1 KiB
91 lines
2.1 KiB
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
|
|
const tls = require('tls');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
let finished = 0;
|
|
|
|
function filenamePEM(n) {
|
|
return path.join(common.fixturesDir, 'keys', n + '.pem');
|
|
}
|
|
|
|
function loadPEM(n) {
|
|
return fs.readFileSync(filenamePEM(n));
|
|
}
|
|
|
|
const testCases = [
|
|
{ // agent8 is signed by fake-startcom-root with notBefore of
|
|
// Oct 20 23:59:59 2016 GMT. It passes StartCom/WoSign check.
|
|
serverOpts: {
|
|
key: loadPEM('agent8-key'),
|
|
cert: loadPEM('agent8-cert')
|
|
},
|
|
clientOpts: {
|
|
ca: loadPEM('fake-startcom-root-cert'),
|
|
port: undefined,
|
|
rejectUnauthorized: true
|
|
},
|
|
errorCode: 'CERT_OK'
|
|
},
|
|
{ // agent9 is signed by fake-startcom-root with notBefore of
|
|
// Oct 21 00:00:01 2016 GMT. It fails StartCom/WoSign check.
|
|
serverOpts: {
|
|
key: loadPEM('agent9-key'),
|
|
cert: loadPEM('agent9-cert')
|
|
},
|
|
clientOpts: {
|
|
ca: loadPEM('fake-startcom-root-cert'),
|
|
port: undefined,
|
|
rejectUnauthorized: true
|
|
},
|
|
errorCode: 'CERT_REVOKED'
|
|
}
|
|
];
|
|
|
|
|
|
function runNextTest(server, tindex) {
|
|
server.close(function() {
|
|
finished++;
|
|
runTest(tindex + 1);
|
|
});
|
|
}
|
|
|
|
|
|
function runTest(tindex) {
|
|
const tcase = testCases[tindex];
|
|
|
|
if (!tcase) return;
|
|
|
|
const server = tls.createServer(tcase.serverOpts, function(s) {
|
|
s.resume();
|
|
}).listen(0, function() {
|
|
tcase.clientOpts.port = this.address().port;
|
|
const client = tls.connect(tcase.clientOpts);
|
|
client.on('error', function(e) {
|
|
assert.strictEqual(e.code, tcase.errorCode);
|
|
runNextTest(server, tindex);
|
|
});
|
|
|
|
client.on('secureConnect', function() {
|
|
// agent8 can pass StartCom/WoSign check so that the secureConnect
|
|
// is established.
|
|
assert.strictEqual(tcase.errorCode, 'CERT_OK');
|
|
client.end();
|
|
runNextTest(server, tindex);
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
runTest(0);
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(finished, testCases.length);
|
|
});
|
|
|