From: Daniel Stenberg Date: Sat, 16 Jan 2021 22:22:04 +0000 (+0100) Subject: test410: verify HTTPS GET with a 49K request header X-Git-Tag: curl-7_75_0~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11b2dd86d38b54c85f2361e1603c2d6d395ddf92;p=thirdparty%2Fcurl.git test410: verify HTTPS GET with a 49K request header skip test 410 for mesalink in the CI as it otherwise hangs "forever" --- diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 26d5aaaf04..050eb0fdd0 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -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 diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index c2bc009a50..660f80668c 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 0000000000..c6470c1844 --- /dev/null +++ b/tests/data/test410 @@ -0,0 +1,52 @@ + + + +HTTPS +HTTP GET + + + +# +# Server-side + + +HTTP/1.1 200 OK +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake +Content-Length: 7 + +MooMoo + + + +# +# Client-side + + +SSL + + +https + + +HTTPS GET with very long request header + +# 14 characters repeated 3500 times makes 49000 bytes + +-k https://%HOSTIP:%HTTPSPORT/410 -H "Long: %repeat[3500 x header content]%" + + + +# +# Verify data after the test has been "shot" + + +GET /410 HTTP/1.1 +Host: %HOSTIP:%HTTPSPORT +User-Agent: curl/%VERSION +Accept: */* +Long: %repeat[3500 x header content]% + + + +