diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-20 10:34:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-20 11:14:56 +0100 |
commit | ab18027d6ccd7e3a0915eeb8710fdf30be085407 (patch) | |
tree | 261a779be807bd9bcc1a7fe7b091d046fa8deedc /tests/data/test431 | |
parent | 4e0b4fee4aea25da850327e068f307e6dc5200f2 (diff) |
tests: add test 430, 431 and 432 to verify the --config fix
Verify the fixes in 4e0b4fee4
Diffstat (limited to 'tests/data/test431')
-rw-r--r-- | tests/data/test431 | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/tests/data/test431 b/tests/data/test431 new file mode 100644 index 000000000..48a1b20a1 --- /dev/null +++ b/tests/data/test431 @@ -0,0 +1,95 @@ +<testcase> +# Derived from on https://github.com/curl/curl/issues/5120 +<info> +<keywords> +--next +--config +POST +</keywords> +</info> + +# +# Server-side +<reply> +<data1> +HTTP/1.1 200 OK +Content-Length: 6 +Content-Type: text/1 + +-foo- +</data1> +<data2> +HTTP/1.1 200 OK +Content-Length: 6 +Content-Type: text/2 + +-foo- +</data2> +<data3> +HTTP/1.1 200 OK +Content-Length: 6 +Content-Type: text/3 + +-foo- +</data3> +</reply> + +# +# Client-side +<client> +<file1 name="log/config431-a"> +--next +url = %HOSTIP:%HTTPPORT/4310001 +header = "a: a" +data = "a" +</file1> +<file2 name="log/config431-b"> +--next +url = %HOSTIP:%HTTPPORT/4310002 +header = "b: b" +data = "b" +</file2> + +<server> +http +</server> + <name> +Two -K uses with --next and then one on cmdline + </name> + <command> +-K log/config431-a -K log/config431-b --next -d c %HOSTIP:%HTTPPORT/4310003 -H "c: c" +</command> +</client> + +# +# Verify data after the test has been "shot" +<verify> +<strip> +^User-Agent:.* +</strip> +<protocol nonewline="yes"> +POST /4310001 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+a: a
+Content-Length: 1
+Content-Type: application/x-www-form-urlencoded
+
+aPOST /4310002 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+b: b
+Content-Length: 1
+Content-Type: application/x-www-form-urlencoded
+
+bPOST /4310003 HTTP/1.1
+Host: %HOSTIP:%HTTPPORT
+Accept: */*
+c: c
+Content-Length: 1
+Content-Type: application/x-www-form-urlencoded
+
+c +</protocol> +</verify> +</testcase> |