summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-compat-serverrequest-headers.js
blob: 2028e672a7f173564094be6e0a92823c95e2ff02 (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
'use strict';

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

{
  // Http2ServerRequest should have header helpers

  const server = h2.createServer();
  server.listen(0, common.mustCall(function() {
    const port = server.address().port;
    server.once('request', common.mustCall(function(request, response) {
      const expected = {
        ':path': '/foobar',
        ':method': 'GET',
        ':scheme': 'http',
        ':authority': `localhost:${port}`,
        'foo-bar': 'abc123'
      };

      assert.strictEqual(request.path, undefined);
      assert.strictEqual(request.method, expected[':method']);
      assert.strictEqual(request.scheme, expected[':scheme']);
      assert.strictEqual(request.url, expected[':path']);
      assert.strictEqual(request.authority, expected[':authority']);

      const headers = request.headers;
      for (const [name, value] of Object.entries(expected)) {
        assert.strictEqual(headers[name], value);
      }

      const rawHeaders = request.rawHeaders;
      for (const [name, value] of Object.entries(expected)) {
        const position = rawHeaders.indexOf(name);
        assert.notStrictEqual(position, -1);
        assert.strictEqual(rawHeaders[position + 1], value);
      }

      request.url = '/one';
      assert.strictEqual(request.url, '/one');

      // Third-party plugins for packages like express use query params to
      // change the request method
      request.method = 'POST';
      assert.strictEqual(request.method, 'POST');
      assert.throws(
        () => request.method = '   ',
        {
          code: 'ERR_INVALID_ARG_VALUE',
          name: 'TypeError',
          message: "The argument 'method' is invalid. Received '   '"
        }
      );
      assert.throws(
        () => request.method = true,
        {
          code: 'ERR_INVALID_ARG_TYPE',
          name: 'TypeError',
          message: 'The "method" argument must be of type string. ' +
                  'Received type boolean (true)'
        }
      );

      response.on('finish', common.mustCall(function() {
        server.close();
      }));
      response.end();
    }));

    const url = `http://localhost:${port}`;
    const client = h2.connect(url, common.mustCall(function() {
      const headers = {
        ':path': '/foobar',
        ':method': 'GET',
        ':scheme': 'http',
        ':authority': `localhost:${port}`,
        'foo-bar': 'abc123'
      };
      const request = client.request(headers);
      request.on('end', common.mustCall(function() {
        client.close();
      }));
      request.end();
      request.resume();
    }));
  }));
}

{
  // Http2ServerRequest should keep pseudo-headers order and after them,
  // in the same order, the others headers

  const server = h2.createServer();
  server.listen(0, common.mustCall(function() {
    const port = server.address().port;
    server.once('request', common.mustCall(function(request, response) {
      const expected = {
        ':path': '/foobar',
        ':method': 'GET',
        ':scheme': 'http',
        ':authority': `localhost:${port}`,
        'foo1': 'abc1',
        'foo2': 'abc2'
      };

      assert.strictEqual(request.path, undefined);
      assert.strictEqual(request.method, expected[':method']);
      assert.strictEqual(request.scheme, expected[':scheme']);
      assert.strictEqual(request.url, expected[':path']);
      assert.strictEqual(request.authority, expected[':authority']);

      const headers = request.headers;
      for (const [name, value] of Object.entries(expected)) {
        assert.strictEqual(headers[name], value);
      }

      const rawHeaders = request.rawHeaders;
      let expectedPosition = 0;
      for (const [name, value] of Object.entries(expected)) {
        const position = rawHeaders.indexOf(name);
        assert.strictEqual(position / 2, expectedPosition);
        assert.strictEqual(rawHeaders[position + 1], value);
        expectedPosition++;
      }

      response.on('finish', common.mustCall(function() {
        server.close();
      }));
      response.end();
    }));

    const url = `http://localhost:${port}`;
    const client = h2.connect(url, common.mustCall(function() {
      const headers = {
        ':path': '/foobar',
        ':method': 'GET',
        'foo1': 'abc1',
        ':scheme': 'http',
        'foo2': 'abc2',
        ':authority': `localhost:${port}`
      };
      const request = client.request(headers);
      request.on('end', common.mustCall(function() {
        client.close();
      }));
      request.end();
      request.resume();
    }));
  }));
}