summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-max-concurrent-streams.js
blob: be101720dc478b17d06d41f3e4aa3450aeef1405 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Flags: --expose-http2
'use strict';

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

const {
  HTTP2_HEADER_METHOD,
  HTTP2_HEADER_STATUS,
  HTTP2_HEADER_PATH,
  HTTP2_METHOD_POST
} = h2.constants;

// Only allow one stream to be open at a time
const server = h2.createServer({ settings: { maxConcurrentStreams: 1 } });

// The stream handler must be called only once
server.on('stream', common.mustCall((stream) => {
  stream.respond({ [HTTP2_HEADER_STATUS]: 200 });
  stream.end('hello world');
}));
server.listen(0);

server.on('listening', common.mustCall(() => {

  const client = h2.connect(`http://localhost:${server.address().port}`);

  let reqs = 2;
  function onEnd() {
    if (--reqs === 0) {
      server.close();
      client.destroy();
    }
  }

  client.on('remoteSettings', common.mustCall((settings) => {
    assert.strictEqual(settings.maxConcurrentStreams, 1);
  }));

  // This one should go through with no problems
  const req1 = client.request({
    [HTTP2_HEADER_PATH]: '/',
    [HTTP2_HEADER_METHOD]: HTTP2_METHOD_POST
  });
  req1.on('aborted', common.mustNotCall());
  req1.on('response', common.mustCall());
  req1.resume();
  req1.on('end', onEnd);
  req1.end();

  // This one should be aborted
  const req2 = client.request({
    [HTTP2_HEADER_PATH]: '/',
    [HTTP2_HEADER_METHOD]: HTTP2_METHOD_POST
  });
  req2.on('aborted', common.mustCall());
  req2.on('response', common.mustNotCall());
  req2.resume();
  req2.on('end', onEnd);
  req2.on('error', common.mustCall(common.expectsError({
    code: 'ERR_HTTP2_STREAM_ERROR',
    type: Error,
    message: 'Stream closed with error code 7'
  })));

}));