summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-server-shutdown-redundant.js
blob: f47a0d2c951c86d6658e807b56bcbaf54c1d1335 (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
'use strict';

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

const server = http2.createServer();

server.on('stream', common.mustCall((stream) => {
  const session = stream.session;
  session.goaway(1);
  session.goaway(2);
  stream.session.on('close', common.mustCall(() => {
    common.expectsError(
      () => session.goaway(3),
      {
        code: 'ERR_HTTP2_INVALID_SESSION',
        type: Error
      }
    );
  }));
}));

server.listen(0, common.mustCall(() => {
  const client = http2.connect(`http://localhost:${server.address().port}`);
  client.on('error', common.expectsError({
    code: 'ERR_HTTP2_SESSION_ERROR'
  }));

  const req = client.request();
  req.on('error', common.expectsError({
    code: 'ERR_HTTP2_SESSION_ERROR'
  }));
  req.resume();
  req.on('close', common.mustCall(() => {
    server.close();
    client.close();
  }));
}));