PR-URL: https://github.com/nodejs/node/pull/15837 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const assert = require('assert');
|
|
const https = require('https');
|
|
|
|
const options = {
|
|
key: fixtures.readSync('test_key.pem'),
|
|
cert: fixtures.readSync('test_cert.pem')
|
|
};
|
|
|
|
const server = https.createServer(options, common.mustCall(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end();
|
|
req.resume();
|
|
}, 2)).listen(0, function() {
|
|
unauthorized();
|
|
});
|
|
|
|
function unauthorized() {
|
|
const req = https.request({
|
|
port: server.address().port,
|
|
rejectUnauthorized: false
|
|
}, function(res) {
|
|
assert(!req.socket.authorized);
|
|
res.resume();
|
|
rejectUnauthorized();
|
|
});
|
|
req.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
req.end();
|
|
}
|
|
|
|
function rejectUnauthorized() {
|
|
const options = {
|
|
port: server.address().port
|
|
};
|
|
options.agent = new https.Agent(options);
|
|
const req = https.request(options, common.mustNotCall());
|
|
req.on('error', function(err) {
|
|
authorized();
|
|
});
|
|
req.end();
|
|
}
|
|
|
|
function authorized() {
|
|
const options = {
|
|
port: server.address().port,
|
|
ca: [fixtures.readSync('test_cert.pem')]
|
|
};
|
|
options.agent = new https.Agent(options);
|
|
const req = https.request(options, function(res) {
|
|
res.resume();
|
|
assert(req.socket.authorized);
|
|
server.close();
|
|
});
|
|
req.on('error', common.mustNotCall());
|
|
req.end();
|
|
}
|