summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-unbound-socket-proxy.js
blob: 74ca0169446afb1f551b625c6bd51fb9f32d56f7 (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
'use strict';

const common = require('../common');
if (!common.hasCrypto)
  common.skip('missing crypto');
const assert = require('assert');
const http2 = require('http2');
const net = require('net');

const server = http2.createServer();
server.on('stream', common.mustCall((stream) => {
  stream.respond();
  stream.end('ok');
}));

server.listen(0, common.mustCall(() => {
  const client = http2.connect(`http://localhost:${server.address().port}`);
  const socket = client.socket;
  const req = client.request();
  req.resume();
  req.on('close', common.mustCall(() => {
    client.close();
    server.close();

    // Tests to make sure accessing the socket proxy fails with an
    // informative error.
    setImmediate(common.mustCall(() => {
      assert.throws(() => {
        socket.example; // eslint-disable-line no-unused-expressions
      }, {
        code: 'ERR_HTTP2_SOCKET_UNBOUND'
      });
      assert.throws(() => {
        socket.example = 1;
      }, {
        code: 'ERR_HTTP2_SOCKET_UNBOUND'
      });
      assert.throws(() => {
        // eslint-disable-next-line no-unused-expressions
        socket instanceof net.Socket;
      }, {
        code: 'ERR_HTTP2_SOCKET_UNBOUND'
      });
    }));
  }));
}));