Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions test/sequential/test-http2-large-file.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

// Test to ensure sending a large stream with a large initial window size works
// Test sending a large stream with a large initial window size.
// See: https://github.com/nodejs/node/issues/19141

const common = require('../common');
Expand All @@ -18,14 +18,15 @@ server.on('stream', (stream) => {

server.listen(0, common.mustCall(() => {
let remaining = 1e8;
const chunk = 1e6;
const chunkLength = 1e6;
const chunk = Buffer.alloc(chunkLength, 'a');
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);
remaining -= chunkLength;
request.write(chunk, writeChunk);
} else {
request.end();
}
Expand Down