mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

PR-URL: https://github.com/nodejs/node/pull/24425 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
40 lines
832 B
JavaScript
40 lines
832 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
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, (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
|
|
}, (res) => {
|
|
res.resume();
|
|
assert.strictEqual(res.statusCode, 200);
|
|
server.close();
|
|
}).on('error', (e) => {
|
|
console.log(e.message);
|
|
process.exit(1);
|
|
});
|
|
});
|