summaryrefslogtreecommitdiffstats
path: root/test/stream-compat.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/stream-compat.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/stream-compat.js')
-rw-r--r--test/stream-compat.js75
1 files changed, 75 insertions, 0 deletions
diff --git a/test/stream-compat.js b/test/stream-compat.js
new file mode 100644
index 0000000..71d2410
--- /dev/null
+++ b/test/stream-compat.js
@@ -0,0 +1,75 @@
+'use strict'
+
+const { test } = require('tap')
+const { Client } = require('..')
+const { createServer } = require('http')
+const { Readable } = require('stream')
+const EE = require('events')
+
+test('stream body without destroy', (t) => {
+ t.plan(2)
+
+ const server = createServer((req, res) => {
+ res.end()
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ const signal = new EE()
+ const body = new Readable({ read () {} })
+ body.destroy = undefined
+ body.on('error', (err) => {
+ t.ok(err)
+ })
+ client.request({
+ path: '/',
+ method: 'PUT',
+ signal,
+ body
+ }, (err, data) => {
+ t.ok(err)
+ })
+ signal.emit('abort')
+ })
+})
+
+test('IncomingMessage', (t) => {
+ t.plan(2)
+
+ const server = createServer((req, res) => {
+ res.end()
+ })
+ t.teardown(server.close.bind(server))
+
+ server.listen(0, () => {
+ const proxyClient = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(proxyClient.destroy.bind(proxyClient))
+
+ const proxy = createServer((req, res) => {
+ proxyClient.request({
+ path: '/',
+ method: 'PUT',
+ body: req
+ }, (err, data) => {
+ t.error(err)
+ data.body.pipe(res)
+ })
+ })
+ t.teardown(proxy.close.bind(proxy))
+
+ proxy.listen(0, () => {
+ const client = new Client(`http://localhost:${proxy.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'PUT',
+ body: 'hello world'
+ }, (err, data) => {
+ t.error(err)
+ })
+ })
+ })
+})