diff options
author | Patrick Monnerat <patrick@monnerat.net> | 2017-10-29 13:57:16 +0100 |
---|---|---|
committer | monnerat <monnerat@users.noreply.github.com> | 2017-10-29 16:23:06 +0100 |
commit | f82f952d2f941f756ce95e970c139e051daa8a8d (patch) | |
tree | 5f75903469ba777830541d1d1fcc33f3d264ec50 /tests | |
parent | 7ee59512f875604eb468fb6f3d26e39290f781c9 (diff) | |
download | curl-f82f952d2f941f756ce95e970c139e051daa8a8d.tar.gz |
cli tool: in -F option arg, comma is a delimiter for files only
Also upgrade test 1133 to cover this case and clarify man page about
form data quoting.
Bug: https://github.com/curl/curl/issues/2022
Reported-By: omau on github
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/test1133 | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/tests/data/test1133 b/tests/data/test1133 index 2238b9c07..b8ed56b2d 100644 --- a/tests/data/test1133 +++ b/tests/data/test1133 @@ -23,10 +23,10 @@ blablabla http </server> <name> -HTTP RFC1867-type formposting with filename contains ',', ';', '"' +HTTP RFC1867-type formposting with filename/data contains ',', ';', '"' </name> <command> -http://%HOSTIP:%HTTPPORT/we/want/1133 -F "file=@\"log/test1133,a\\\"nd;.txt\";type=mo/foo;filename=\"faker,and;.txt\"" -F 'file2=@"log/test1133,a\"nd;.txt"' -F 'file3=@"log/test1133,a\"nd;.txt";type=m/f,"log/test1133,a\"nd;.txt"' +http://%HOSTIP:%HTTPPORT/we/want/1133 -F "file=@\"log/test1133,a\\\"nd;.txt\";type=mo/foo;filename=\"faker,and;.txt\"" -F 'file2=@"log/test1133,a\"nd;.txt"' -F 'file3=@"log/test1133,a\"nd;.txt";type=m/f,"log/test1133,a\"nd;.txt"' -F a="{\"field1\":\"value1\",\"field2\":\"value2\"}" -F 'b=" \\value1;type=\"whatever\" "; type=text/foo; charset=utf-8 ; filename=param_b' </command> # We create this file before the command is invoked! <file name=log/test1133,a"nd;.txt> @@ -47,7 +47,8 @@ POST /we/want/1133 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: 969
+Content-Length: 1270
+Expect: 100-continue
Content-Type: multipart/form-data; boundary=----------------------------24e78000bd32
------------------------------24e78000bd32
@@ -89,6 +90,13 @@ bar foo +Content-Disposition: form-data; name="a"
+
+{"field1":"value1","field2":"value2"}
+Content-Disposition: form-data; name="b"; filename="param_b"
+Content-Type: text/foo; charset=utf-8
+
+ \value1;type="whatever"
------------------------------24e78000bd32--
</protocol> </verify> |