summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-client-setLocalWindowSize.js
blob: 8e3b57ed0c1a6bea1d02ad346dac94f7a2bb0c00 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
'use strict';

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

const assert = require('assert');
const http2 = require('http2');

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

  const types = {
    boolean: true,
    function: () => {},
    number: 1,
    object: {},
    array: [],
    null: null,
  };

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

    client.on('connect', common.mustCall(() => {
      const outOfRangeNum = 2 ** 32;
      assert.throws(
        () => client.setLocalWindowSize(outOfRangeNum),
        {
          name: 'RangeError',
          code: 'ERR_OUT_OF_RANGE',
          message: 'The value of "windowSize" is out of range.' +
            ' It must be >= 0 && <= 2147483647. Received ' + outOfRangeNum
        }
      );

      // Throw if something other than number is passed to setLocalWindowSize
      Object.entries(types).forEach(([type, value]) => {
        if (type === 'number') {
          return;
        }

        assert.throws(
          () => client.setLocalWindowSize(value),
          {
            name: 'TypeError',
            code: 'ERR_INVALID_ARG_TYPE',
            message: 'The "windowSize" argument must be of type number.' +
                    common.invalidArgTypeHelper(value)
          }
        );
      });

      server.close();
      client.close();
    }));
  }));
}

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

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

    client.on('connect', common.mustCall(() => {
      const windowSize = 2 ** 20;
      const defaultSetting = http2.getDefaultSettings();
      client.setLocalWindowSize(windowSize);

      assert.strictEqual(client.state.effectiveLocalWindowSize, windowSize);
      assert.strictEqual(client.state.localWindowSize, windowSize);
      assert.strictEqual(
        client.state.remoteWindowSize,
        defaultSetting.initialWindowSize
      );

      server.close();
      client.close();
    }));
  }));
}

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

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

    client.on('connect', common.mustCall(() => {
      const windowSize = 20;
      const defaultSetting = http2.getDefaultSettings();
      client.setLocalWindowSize(windowSize);

      assert.strictEqual(client.state.effectiveLocalWindowSize, windowSize);
      assert.strictEqual(
        client.state.localWindowSize,
        defaultSetting.initialWindowSize
      );
      assert.strictEqual(
        client.state.remoteWindowSize,
        defaultSetting.initialWindowSize
      );

      server.close();
      client.close();
    }));
  }));
}