summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-options-max-headers-exceeds-nghttp2.js
blob: df3aefff11e7adb0bf7d826a8918df515140194a (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Flags: --expose-internals
'use strict';

const common = require('../common');
if (!common.hasCrypto) common.skip('missing crypto');
const h2 = require('http2');
const assert = require('assert');
const { ServerHttp2Session } = require('internal/http2/core');

const server = h2.createServer();

server.on('stream', common.mustNotCall());
server.on('error', common.mustNotCall());

server.listen(0, common.mustCall(() => {

  // Setting the maxSendHeaderBlockLength > nghttp2 threshold
  // cause a 'sessionError' and no memory leak when session destroy
  const options = {
    maxSendHeaderBlockLength: 100000
  };

  const client = h2.connect(`http://localhost:${server.address().port}`,
                            options);
  client.on('error', common.expectsError({
    code: 'ERR_HTTP2_SESSION_ERROR',
    name: 'Error',
    message: 'Session closed with error code 9'
  }));

  const req = client.request({
    // Greater than 65536 bytes
    'test-header': 'A'.repeat(90000)
  });
  req.on('response', common.mustNotCall());

  req.on('close', common.mustCall(() => {
    client.close();
    server.close();
  }));

  req.on('error', common.expectsError({
    code: 'ERR_HTTP2_SESSION_ERROR',
    name: 'Error',
    message: 'Session closed with error code 9'
  }));
  req.end();
}));

{
  const options = {
    maxSendHeaderBlockLength: 100000,
  };

  const server = h2.createServer(options);

  server.on('error', common.mustNotCall());
  server.on(
    'session',
    common.mustCall((session) => {
      assert.strictEqual(session instanceof ServerHttp2Session, true);
    }),
  );
  server.on(
    'stream',
    common.mustCall((stream) => {
      stream.additionalHeaders({
        // Greater than 65536 bytes
        'test-header': 'A'.repeat(90000),
      });
      stream.respond();
      stream.end();
    }),
  );

  server.on(
    'sessionError',
    common.mustCall((err, session) => {
      assert.strictEqual(err.code, 'ERR_HTTP2_SESSION_ERROR');
      assert.strictEqual(err.name, 'Error');
      assert.strictEqual(err.message, 'Session closed with error code 9');
      assert.strictEqual(session instanceof ServerHttp2Session, true);
      server.close();
    }),
  );

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

      const req = client.request();
      req.on('response', common.mustNotCall());
      req.on('error', common.mustNotCall());
      req.end();
    }),
  );
}