node/test/parallel/test-https-agent-servername.js
UjjwalUpadhyay 6363f21faf test: favor arrow functions in callbacks
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>
2018-11-19 13:23:19 -08:00

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);
});
});