diff options
author | Patrick Monnerat <patrick@monnerat.net> | 2020-04-18 16:50:20 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-04-19 20:52:48 +0200 |
commit | d7471c136901e1955547a20d7bfa126d47d81b56 (patch) | |
tree | 2e0d68157313e764482a187b7b48379ffe09a538 /tests | |
parent | 7e53974603079a9522acdb10f3b4de499ffa6e4d (diff) | |
download | curl-d7471c136901e1955547a20d7bfa126d47d81b56.tar.gz |
mime: properly check Content-Type even if it has parameters
New test 669 checks this fix is effective.
Fixes #5256
Closes #5258
Reported-by: thanhchungbtc on github
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/Makefile.inc | 2 | ||||
-rw-r--r-- | tests/data/test669 | 64 |
2 files changed, 65 insertions, 1 deletions
diff --git a/tests/data/Makefile.inc b/tests/data/Makefile.inc index aa2883929..aabe1e6d9 100644 --- a/tests/data/Makefile.inc +++ b/tests/data/Makefile.inc @@ -87,7 +87,7 @@ test626 test627 test628 test629 test630 test631 test632 test633 test634 \ test635 test636 test637 test638 test639 test640 test641 test642 \ test643 test644 test645 test646 test647 test648 test649 test650 test651 \ test652 test653 test654 test655 test656 test658 test659 test660 test661 \ -test662 test663 test664 test665 test666 test667 test668 \ +test662 test663 test664 test665 test666 test667 test668 test669 \ test670 test671 test672 test673 \ \ test700 test701 test702 test703 test704 test705 test706 test707 test708 \ diff --git a/tests/data/test669 b/tests/data/test669 new file mode 100644 index 000000000..aaae2c51d --- /dev/null +++ b/tests/data/test669 @@ -0,0 +1,64 @@ +<testcase> +<info> +<keywords> +HTTP +HTTP POST +HTTP MIME POST +HTTP FORMPOST +</keywords> +</info> +# Server-side +<reply> +<data> +HTTP/1.0 200 OK swsclose +Date: Thu, 09 Nov 2010 14:49:00 GMT +Server: test-server/fake + +blablabla + +</data> +</reply> + +# Client-side +<client> +<server> +http +</server> + <name> +HTTP custom Content-Type with parameter + </name> + <command> +http://%HOSTIP:%HTTPPORT/we/want/669 -H 'Content-type: multipart/form-data; charset=utf-8' -F name=daniel -F tool=curl +</command> +</file> +</client> + +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<strippart> +s/^--------------------------[a-z0-9]*/------------------------------/ +s/boundary=------------------------[a-z0-9]*/boundary=----------------------------/ +</strippart> +<protocol> +POST /we/want/669 HTTP/1.1
+User-Agent: curl/7.10.4 (i686-pc-linux-gnu) libcurl/7.10.4 OpenSSL/0.9.7a ipv6 zlib/1.1.3
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+Content-Length: 242
+Content-Type: multipart/form-data; charset=utf-8; boundary=----------------------------
+
+------------------------------
+Content-Disposition: form-data; name="name"
+
+daniel
+------------------------------
+Content-Disposition: form-data; name="tool"
+
+curl
+--------------------------------
+</protocol> +</verify> +</testcase> |