mirror of
https://github.com/nodejs/node.git
synced 2025-12-28 07:50:41 +00:00
These would allow inspection of HTTP/2 client stream request bodies. Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/60480 Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
60 lines
1.9 KiB
JavaScript
60 lines
1.9 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.bodyChunkSent' and
|
|
// 'http2.client.stream.bodySent' channels when ClientHttp2Streams bodies are
|
|
// being sent with a single string.
|
|
|
|
const assert = require('assert');
|
|
const dc = require('diagnostics_channel');
|
|
const http2 = require('http2');
|
|
const { Duplex } = require('stream');
|
|
|
|
let bodyChunkSent = false;
|
|
|
|
dc.subscribe('http2.client.stream.bodyChunkSent', common.mustCall(({ stream, writev, data, encoding }) => {
|
|
// Since ClientHttp2Stream is not exported from any module, this just checks
|
|
// if the stream is an instance of Duplex.
|
|
assert.ok(stream instanceof Duplex);
|
|
assert.strictEqual(stream.constructor.name, 'ClientHttp2Stream');
|
|
|
|
assert.strictEqual(writev, false);
|
|
assert.strictEqual(data, 'foo');
|
|
assert.strictEqual(encoding, 'utf8');
|
|
|
|
bodyChunkSent = true;
|
|
}));
|
|
|
|
dc.subscribe('http2.client.stream.bodySent', common.mustCall(({ stream }) => {
|
|
// 'http2.client.stream.bodyChunkSent' must run first.
|
|
assert.ok(bodyChunkSent);
|
|
|
|
// Since ClientHttp2Stream is not exported from any module, this just checks
|
|
// if the stream is an instance of Duplex.
|
|
assert.ok(stream instanceof Duplex);
|
|
assert.strictEqual(stream.constructor.name, 'ClientHttp2Stream');
|
|
}));
|
|
|
|
const server = http2.createServer();
|
|
server.on('stream', common.mustCall((stream) => {
|
|
stream.respond({}, { endStream: true });
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const client = http2.connect(`http://localhost:${port}`);
|
|
|
|
const stream = client.request({ [http2.constants.HTTP2_HEADER_METHOD]: 'POST' });
|
|
stream.write('foo');
|
|
stream.end();
|
|
|
|
stream.on('response', common.mustCall(() => {
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
}, 1));
|