summaryrefslogtreecommitdiffstats
path: root/test/request-timeout2.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/request-timeout2.js48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/request-timeout2.js b/test/request-timeout2.js
new file mode 100644
index 0000000..53943fb
--- /dev/null
+++ b/test/request-timeout2.js
@@ -0,0 +1,48 @@
+'use strict'
+
+const { test } = require('tap')
+const { Client } = require('..')
+const { createServer } = require('http')
+const { Readable } = require('stream')
+
+test('request timeout with slow readable body', (t) => {
+ t.plan(1)
+
+ const server = createServer(async (req, res) => {
+ let str = ''
+ for await (const x of req) {
+ str += x
+ }
+ res.end(str)
+ })
+ t.teardown(server.close.bind(server))
+
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`, { headersTimeout: 50 })
+ t.teardown(client.close.bind(client))
+
+ const body = new Readable({
+ read () {
+ if (this._reading) {
+ return
+ }
+ this._reading = true
+
+ this.push('asd')
+ setTimeout(() => {
+ this.push('asd')
+ this.push(null)
+ }, 2e3)
+ }
+ })
+ client.request({
+ path: '/',
+ method: 'POST',
+ headersTimeout: 1e3,
+ body
+ }, async (err, response) => {
+ t.error(err)
+ await response.body.dump()
+ })
+ })
+})