forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add test-http2-large-file sequential test
Refs: nodejs#19141
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
'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(); | ||
})); |