]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
test410: verify HTTPS GET with a 49K request header
authorDaniel Stenberg <daniel@haxx.se>
Sat, 16 Jan 2021 22:22:04 +0000 (23:22 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 18 Jan 2021 15:10:34 +0000 (16:10 +0100)
skip test 410 for mesalink in the CI as it otherwise hangs "forever"

scripts/travis/script.sh
tests/data/Makefile.inc
tests/data/test410 [new file with mode: 0644]

index 26d5aaaf040dbe9254aeb9ed827a88eba561f602..050eb0fdd0a55c39b70f2250102e5b460970c96c 100755 (executable)
@@ -62,7 +62,7 @@ fi
 if [ "$T" = "debug-mesalink" ]; then
   ./configure --enable-debug --enable-werror $C
   make
-  make "TFLAGS=-n !313 !3001" test-nonflaky
+  make "TFLAGS=-n !313 !410 !3001" test-nonflaky
 fi
 
 if [ "$T" = "novalgrind" ]; then
index c2bc009a50948a8e821739deb8c3bef104fe3022..660f80668cea0a469bf553d40d7cca0db854143b 100644 (file)
@@ -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 (file)
index 0000000..c6470c1
--- /dev/null
@@ -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\r
+Host: %HOSTIP:%HTTPSPORT\r
+User-Agent: curl/%VERSION\r
+Accept: */*\r
+Long: %repeat[3500 x header content]%\r
+\r
+</protocol>
+</verify>
+</testcase>