File: test-http2-large-file.js

package info (click to toggle)
nodejs 20.19.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 219,072 kB
  • sloc: cpp: 1,277,408; javascript: 565,332; ansic: 129,476; python: 58,536; sh: 3,841; makefile: 2,725; asm: 1,732; perl: 248; lisp: 222; xml: 42
file content (40 lines) | stat: -rw-r--r-- 1,090 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';

// Test sending a large stream with a large initial window size.
// 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 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 -= chunkLength;
      request.write(chunk, writeChunk);
    } else {
      request.end();
    }
  }
  writeChunk();
  request.on('close', common.mustCall(() => {
    client.close();
    server.close();
  }));
  request.resume();
}));