summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-compat-write-head-destroyed.js
blob: 842bf0e9abffb092d1fe6ccab738118ef6060ee3 (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
'use strict';

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

// Check that writeHead, write and end do not crash in compatibility mode

const server = http2.createServer(common.mustCall((req, res) => {
  // Destroy the stream first
  req.stream.destroy();

  res.writeHead(200);
  res.write('hello ');
  res.end('world');
}));

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

  const req = client.request();
  req.on('response', common.mustNotCall());
  req.on('close', common.mustCall((arg) => {
    client.close();
    server.close();
  }));
  req.resume();
}));