summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2021-01-16 23:22:04 +0100
committerDaniel Stenberg <daniel@haxx.se>2021-01-16 23:22:04 +0100
commit96a6bcb5c36c6684611947728092e500a5d71764 (patch)
tree04431b36fc5b2b5bbaf5187b3a906e3d6f85cde5
parentc701498e6e895c74adfed2787b9573048b4e6adc (diff)
downloadcurl-96a6bcb5c36c6684611947728092e500a5d71764.tar.gz
test410: verify HTTPS GET with a 49K request header
-rw-r--r--tests/data/Makefile.inc2
-rw-r--r--tests/data/test41052
2 files changed, 53 insertions, 1 deletions
diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc
index c2bc009a5..660f80668 100644
--- a/tests/data/Makefile.inc
+++ b/tests/data/Makefile.inc
@@ -64,7 +64,7 @@ test359 \
test393 test394 test395 test396 test397 \
\
test400 test401 test402 test403 test404 test405 test406 test407 test408 \
-test409 \
+test409 test410 \
\
test430 test431 test432 test433 test434 \
\
diff --git a/tests/data/test410 b/tests/data/test410
new file mode 100644
index 000000000..c6470c184
--- /dev/null
+++ b/tests/data/test410
@@ -0,0 +1,52 @@
+<testcase>
+<info>
+<keywords>
+HTTPS
+HTTP GET
+</keywords>
+</info>
+
+#
+# Server-side
+<reply>
+<data>
+HTTP/1.1 200 OK
+Date: Thu, 09 Nov 2010 14:49:00 GMT
+Server: test-server/fake
+Content-Length: 7
+
+MooMoo
+</data>
+</reply>
+
+#
+# Client-side
+<client>
+<features>
+SSL
+</features>
+<server>
+https
+</server>
+ <name>
+HTTPS GET with very long request header
+ </name>
+# 14 characters repeated 3500 times makes 49000 bytes
+ <command>
+-k https://%HOSTIP:%HTTPSPORT/410 -H "Long: %repeat[3500 x header content]%"
+</command>
+</client>
+
+#
+# Verify data after the test has been "shot"
+<verify>
+<protocol>
+GET /410 HTTP/1.1
+Host: %HOSTIP:%HTTPSPORT
+User-Agent: curl/%VERSION
+Accept: */*
+Long: %repeat[3500 x header content]%
+
+</protocol>
+</verify>
+</testcase>