summaryrefslogtreecommitdiffstats
path: root/test/issue-803.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-21 20:56:19 +0000
commit0b6210cd37b68b94252cb798598b12974a20e1c1 (patch)
treee371686554a877842d95aa94f100bee552ff2a8e /test/issue-803.js
parentInitial commit. (diff)
downloadnode-undici-0b6210cd37b68b94252cb798598b12974a20e1c1.tar.xz
node-undici-0b6210cd37b68b94252cb798598b12974a20e1c1.zip
Adding upstream version 5.28.2+dfsg1+~cs23.11.12.3.upstream/5.28.2+dfsg1+_cs23.11.12.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/issue-803.js')
-rw-r--r--test/issue-803.js47
1 files changed, 47 insertions, 0 deletions
diff --git a/test/issue-803.js b/test/issue-803.js
new file mode 100644
index 0000000..70f64cc
--- /dev/null
+++ b/test/issue-803.js
@@ -0,0 +1,47 @@
+'use strict'
+
+const { test } = require('tap')
+const { Client } = require('..')
+const { createServer } = require('http')
+const EE = require('events')
+
+test('https://github.com/nodejs/undici/issues/803', (t) => {
+ t.plan(2)
+
+ const SIZE = 5900373096
+
+ const server = createServer(async (req, res) => {
+ res.setHeader('content-length', SIZE)
+ let pos = 0
+ while (pos < SIZE) {
+ const len = Math.min(SIZE - pos, 65536)
+ if (!res.write(Buffer.allocUnsafe(len))) {
+ await EE.once(res, 'drain')
+ }
+ pos += len
+ }
+
+ res.end()
+ })
+ t.teardown(server.close.bind(server))
+
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.close.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'GET'
+ }, (err, data) => {
+ t.error(err)
+
+ let pos = 0
+ data.body.on('data', (buf) => {
+ pos += buf.length
+ })
+ data.body.on('end', () => {
+ t.equal(pos, SIZE)
+ })
+ })
+ })
+})