mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 22:40:57 +00:00

PR-URL: https://github.com/nodejs/node/pull/29886 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
36 lines
937 B
JavaScript
36 lines
937 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const h2 = require('http2');
|
|
|
|
// Errors should not be reported both in Http2ServerRequest
|
|
// and Http2ServerResponse
|
|
|
|
let expected = null;
|
|
|
|
const server = h2.createServer(common.mustCall(function(req, res) {
|
|
res.stream.on('error', common.mustCall());
|
|
req.on('error', common.mustNotCall());
|
|
res.on('error', common.mustNotCall());
|
|
req.on('aborted', common.mustCall());
|
|
res.on('aborted', common.mustNotCall());
|
|
|
|
res.write('hello');
|
|
|
|
expected = new Error('kaboom');
|
|
res.stream.destroy(expected);
|
|
server.close();
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(function() {
|
|
const url = `http://localhost:${server.address().port}`;
|
|
const client = h2.connect(url, common.mustCall(() => {
|
|
const request = client.request();
|
|
request.on('data', common.mustCall((chunk) => {
|
|
client.destroy();
|
|
}));
|
|
}));
|
|
}));
|