node/test/parallel/test-http2-compat-serverresponse-headers-after-destroy.js
Tim Perry 5f9618049b
http2: error for incomplete reads on RST, auto-drain, deprecate aborted
Signed-off-by: Tim Perry <pimterry@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/63249
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
2026-06-01 10:59:19 +00:00

48 lines
1.3 KiB
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const h2 = require('http2');
// Makes sure that Http2ServerResponse setHeader & removeHeader, do not throw
// any errors if the stream was destroyed before headers were sent
const server = h2.createServer();
server.listen(0, common.mustCall(function() {
const port = server.address().port;
server.once('request', common.mustCall(function(request, response) {
response.on('close', common.mustCall(() => {
assert.strictEqual(response.headersSent, false);
response.setHeader('test', 'value');
response.removeHeader('test', 'value');
process.nextTick(() => {
response.setHeader('test', 'value');
response.removeHeader('test', 'value');
server.close();
});
}));
response.destroy();
}));
const url = `http://localhost:${port}`;
const client = h2.connect(url, common.mustCall(function() {
const headers = {
':path': '/',
':method': 'GET',
':scheme': 'http',
':authority': `localhost:${port}`
};
const request = client.request(headers);
request.on('error', () => {});
request.on('close', common.mustCall(function() {
client.close();
}));
request.end();
request.resume();
}));
}));