summaryrefslogtreecommitdiffstats
path: root/test/http-100.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/http-100.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/http-100.js')
-rw-r--r--test/http-100.js141
1 files changed, 141 insertions, 0 deletions
diff --git a/test/http-100.js b/test/http-100.js
new file mode 100644
index 0000000..1662a8d
--- /dev/null
+++ b/test/http-100.js
@@ -0,0 +1,141 @@
+'use strict'
+
+const { test } = require('tap')
+const { Client } = require('..')
+const { createServer } = require('http')
+const net = require('net')
+
+test('ignore informational response', (t) => {
+ t.plan(2)
+
+ const server = createServer((req, res) => {
+ res.writeProcessing()
+ req.pipe(res)
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'POST',
+ body: 'hello'
+ }, (err, response) => {
+ t.error(err)
+ const bufs = []
+ response.body.on('data', (buf) => {
+ bufs.push(buf)
+ })
+ response.body.on('end', () => {
+ t.equal('hello', Buffer.concat(bufs).toString('utf8'))
+ })
+ })
+ })
+})
+
+test('error 103 body', (t) => {
+ t.plan(2)
+
+ const server = net.createServer((socket) => {
+ socket.write('HTTP/1.1 103 Early Hints\r\n')
+ socket.write('Content-Length: 1\r\n')
+ socket.write('\r\n')
+ socket.write('a\r\n')
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'GET'
+ }, (err) => {
+ t.equal(err.code, 'HPE_INVALID_CONSTANT')
+ })
+ client.on('disconnect', () => {
+ t.pass()
+ })
+ })
+})
+
+test('error 100 body', (t) => {
+ t.plan(2)
+
+ const server = net.createServer((socket) => {
+ socket.write('HTTP/1.1 100 Early Hints\r\n')
+ socket.write('\r\n')
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'GET'
+ }, (err) => {
+ t.equal(err.message, 'bad response')
+ })
+ client.on('disconnect', () => {
+ t.pass()
+ })
+ })
+})
+
+test('error 101 upgrade', (t) => {
+ t.plan(2)
+
+ const server = net.createServer((socket) => {
+ socket.write('HTTP/1.1 101 Switching Protocols\r\nUpgrade: example/1\r\nConnection: Upgrade\r\n')
+ socket.write('\r\n')
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`)
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'GET'
+ }, (err) => {
+ t.equal(err.message, 'bad upgrade')
+ })
+ client.on('disconnect', () => {
+ t.pass()
+ })
+ })
+})
+
+test('1xx response without timeouts', t => {
+ t.plan(2)
+
+ const server = createServer((req, res) => {
+ res.writeProcessing()
+ setTimeout(() => req.pipe(res), 2000)
+ })
+ t.teardown(server.close.bind(server))
+ server.listen(0, () => {
+ const client = new Client(`http://localhost:${server.address().port}`, {
+ bodyTimeout: 0,
+ headersTimeout: 0
+ })
+ t.teardown(client.destroy.bind(client))
+
+ client.request({
+ path: '/',
+ method: 'POST',
+ body: 'hello'
+ }, (err, response) => {
+ t.error(err)
+ const bufs = []
+ response.body.on('data', (buf) => {
+ bufs.push(buf)
+ })
+ response.body.on('end', () => {
+ t.equal('hello', Buffer.concat(bufs).toString('utf8'))
+ })
+ })
+ })
+})