summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-client-socket-destroy.js
blob: 2cc6ef1e4ea4a82c152ab8984a74e2e481d30ac8 (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
// Flags: --expose-internals

'use strict';

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

const body =
  '<html><head></head><body><h1>this is some data</h2></body></html>';

const server = h2.createServer();

// We use the lower-level API here
server.on('stream', common.mustCall((stream) => {
  stream.on('aborted', common.mustCall());
  stream.on('close', common.mustCall());
  stream.respond();
  stream.write(body);
  // Purposefully do not end()
}));

server.listen(0, common.mustCall(function() {
  const client = h2.connect(`http://localhost:${this.address().port}`);
  const req = client.request();

  req.on('response', common.mustCall(() => {
    // Send a premature socket close
    client[kSocket].destroy();
  }));

  req.resume();
  req.on('end', common.mustCall());
  req.on('close', common.mustCall(() => server.close()));

  // On the client, the close event must call
  client.on('close', common.mustCall());
}));