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.
57 lines
1.3 KiB
57 lines
1.3 KiB
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
return;
|
|
}
|
|
const https = require('https');
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const options = {
|
|
key: fs.readFileSync(path.join(common.fixturesDir, 'keys/agent3-key.pem')),
|
|
cert: fs.readFileSync(path.join(common.fixturesDir, 'keys/agent3-cert.pem'))
|
|
};
|
|
|
|
const server = https.createServer(options, common.mustCall(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end();
|
|
req.resume();
|
|
})).listen(0, function() {
|
|
authorized();
|
|
});
|
|
|
|
function authorized() {
|
|
const req = https.request({
|
|
port: server.address().port,
|
|
rejectUnauthorized: true,
|
|
ca: [fs.readFileSync(path.join(common.fixturesDir, 'keys/ca2-cert.pem'))]
|
|
}, common.fail);
|
|
req.on('error', function(err) {
|
|
override();
|
|
});
|
|
req.end();
|
|
}
|
|
|
|
function override() {
|
|
const options = {
|
|
port: server.address().port,
|
|
rejectUnauthorized: true,
|
|
ca: [fs.readFileSync(path.join(common.fixturesDir, 'keys/ca2-cert.pem'))],
|
|
checkServerIdentity: function(host, cert) {
|
|
return false;
|
|
}
|
|
};
|
|
options.agent = new https.Agent(options);
|
|
const req = https.request(options, function(res) {
|
|
assert(req.socket.authorized);
|
|
server.close();
|
|
});
|
|
req.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
req.end();
|
|
}
|
|
|