summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-compat-serverresponse-headers-after-destroy.js
blob: fc97a70f42d956263ae60fb5310e5e80c4df2d85 (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
'use strict';

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

// Makes sure that Http2ServerResponse setHeader & removeHeader, do not throw
// any errors if the stream was destroyed before headers were sent

const server = h2.createServer();
server.listen(0, common.mustCall(function() {
  const port = server.address().port;
  server.once('request', common.mustCall(function(request, response) {
    response.on('finish', common.mustCall(() => {
      assert.strictEqual(response.headersSent, false);
      response.setHeader('test', 'value');
      response.removeHeader('test', 'value');

      process.nextTick(() => {
        response.setHeader('test', 'value');
        response.removeHeader('test', 'value');

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

    response.destroy();
  }));

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