summaryrefslogtreecommitdiff
path: root/test/parallel/test-https-agent-servername.js
blob: aa3f75894b8e649eec52705ce4105c327211d6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'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);
  });
});