summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-connect-tls-with-delay.js
blob: 0b3753ae38364206c2b4b6e4e12351d1d8db5010 (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
40
41
42
43
44
45
46
47
48
49
50
// Flags: --expose-internals
'use strict';
const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');

const http2 = require('http2');
const tls = require('tls');
const fixtures = require('../common/fixtures');

const serverOptions = {
  key: fixtures.readKey('agent1-key.pem'),
  cert: fixtures.readKey('agent1-cert.pem')
};

const server = http2.createSecureServer(serverOptions, (req, res) => {
  res.end();
});

server.listen(0, '127.0.0.1', common.mustCall(() => {
  const options = {
    ALPNProtocols: ['h2'],
    host: '127.0.0.1',
    servername: 'localhost',
    port: server.address().port,
    rejectUnauthorized: false
  };

  const socket = tls.connect(options, async () => {
    socket.once('readable', () => {
      const client = http2.connect(
        'https://localhost:' + server.address().port,
        { ...options, createConnection: () => socket }
      );

      client.once('remoteSettings', common.mustCall(() => {
        const req = client.request({
          ':path': '/'
        });
        req.on('data', () => req.resume());
        req.on('end', common.mustCall(() => {
          client.close();
          req.close();
          server.close();
        }));
        req.end();
      }));
    });
  });
}));