mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
c29aff3ac7
Refs: https://github.com/nodejs/node/issues/19141 PR-URL: https://github.com/nodejs/node/pull/22254 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: George Adams <george.adams@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
// Test to ensure sending a large stream with a large initial window size works
|
|
// See: https://github.com/nodejs/node/issues/19141
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const http2 = require('http2');
|
|
|
|
const server = http2.createServer({ settings: { initialWindowSize: 6553500 } });
|
|
server.on('stream', (stream) => {
|
|
stream.resume();
|
|
stream.respond();
|
|
stream.end('ok');
|
|
});
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
let remaining = 1e8;
|
|
const chunk = 1e6;
|
|
const client = http2.connect(`http://localhost:${server.address().port}`,
|
|
{ settings: { initialWindowSize: 6553500 } });
|
|
const request = client.request({ ':method': 'POST' });
|
|
function writeChunk() {
|
|
if (remaining > 0) {
|
|
remaining -= chunk;
|
|
request.write(Buffer.alloc(chunk, 'a'), writeChunk);
|
|
} else {
|
|
request.end();
|
|
}
|
|
}
|
|
writeChunk();
|
|
request.on('close', common.mustCall(() => {
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
request.resume();
|
|
}));
|