mirror of https://github.com/nodejs/node.git
47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
// This test ensures that the built-in HTTP/2 diagnostics channels are reporting
|
|
// the diagnostics messages for the 'http2.client.stream.error' channel when
|
|
// an error occurs during the processing of a ClientHttp2Stream.
|
|
|
|
const assert = require('assert');
|
|
const dc = require('diagnostics_channel');
|
|
const http2 = require('http2');
|
|
const { Duplex } = require('stream');
|
|
|
|
dc.subscribe('http2.client.stream.error', common.mustCall(({ stream, error }) => {
|
|
// Since ClientHttp2Stream is not exported from any module, this just checks
|
|
// if the stream is an instance of Duplex and the constructor name is
|
|
// 'ClientHttp2Stream'.
|
|
assert.ok(stream instanceof Duplex);
|
|
assert.strictEqual(stream.constructor.name, 'ClientHttp2Stream');
|
|
assert.strictEqual(stream.closed, true);
|
|
assert.strictEqual(stream.destroyed, true);
|
|
|
|
assert.ok(error);
|
|
assert.strictEqual(error.code, 'ABORT_ERR');
|
|
assert.strictEqual(error.name, 'AbortError');
|
|
}));
|
|
|
|
const server = http2.createServer();
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const client = http2.connect(`http://localhost:${port}`);
|
|
|
|
const ac = new AbortController();
|
|
const stream = client.request({}, { signal: ac.signal });
|
|
ac.abort();
|
|
|
|
stream.on('error', common.mustCall((err) => {
|
|
assert.strictEqual(err.code, 'ABORT_ERR');
|
|
assert.strictEqual(err.name, 'AbortError');
|
|
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
}));
|