mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d56f03caeb
PR-URL: https://github.com/nodejs/node/pull/16016 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Refael Ackermann <refack@gmail.com>
39 lines
802 B
JavaScript
39 lines
802 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const https = require('https');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const options = {
|
|
key: fixtures.readKey('agent1-key.pem'),
|
|
cert: fixtures.readKey('agent1-cert.pem'),
|
|
ca: fixtures.readKey('ca1-cert.pem')
|
|
};
|
|
|
|
|
|
const server = https.Server(options, function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('hello world\n');
|
|
});
|
|
|
|
|
|
server.listen(0, function() {
|
|
https.get({
|
|
path: '/',
|
|
port: this.address().port,
|
|
rejectUnauthorized: true,
|
|
servername: 'agent1',
|
|
ca: options.ca
|
|
}, function(res) {
|
|
res.resume();
|
|
console.log(res.statusCode);
|
|
server.close();
|
|
}).on('error', function(e) {
|
|
console.log(e.message);
|
|
process.exit(1);
|
|
});
|
|
});
|