summaryrefslogtreecommitdiff
path: root/test/parallel/test-http2-stream-client.js
blob: 89a571b27efc222e85f27b09cec7942b18e09fe5 (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
'use strict';

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

const server = http2.createServer();
server.on('stream', common.mustCall((stream) => {
  assert.strictEqual(stream.aborted, false);
  const insp = util.inspect(stream);
  assert.match(insp, /Http2Stream {/);
  assert.match(insp, / {2}state:/);
  assert.match(insp, / {2}readableState:/);
  assert.match(insp, / {2}writableState:/);
  stream.end('ok');
}));
server.listen(0, common.mustCall(() => {
  const client = http2.connect(`http://localhost:${server.address().port}`);
  const req = client.request();
  req.resume();
  req.on('close', common.mustCall(() => {
    client.close();
    server.close();
  }));
}));