mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
3fd80c7b59
The threee tags `<name>`, `</name>` and `<command>` were frequently used with a leading space that this removes. The reason this habbit is so widespread in testcases is probably that they have been copy and pasted. Hence, fixing them all now might curb this practice from now on. Closes #12028
96 lines
1.5 KiB
Plaintext
96 lines
1.5 KiB
Plaintext
<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="%LOGDIR/config%TESTNUMBER-a">
|
|
--next
|
|
url = %HOSTIP:%HTTPPORT/%TESTNUMBER0001
|
|
header = "a: a"
|
|
data = "a"
|
|
</file1>
|
|
<file2 name="%LOGDIR/config%TESTNUMBER-b">
|
|
--next
|
|
url = %HOSTIP:%HTTPPORT/%TESTNUMBER0002
|
|
header = "b: b"
|
|
data = "b"
|
|
</file2>
|
|
|
|
<server>
|
|
http
|
|
</server>
|
|
<name>
|
|
Two -K uses with --next and then one on cmdline
|
|
</name>
|
|
<command>
|
|
-K %LOGDIR/config%TESTNUMBER-a -K %LOGDIR/config%TESTNUMBER-b --next -d c %HOSTIP:%HTTPPORT/%TESTNUMBER0003 -H "c: c"
|
|
</command>
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol nonewline="yes">
|
|
POST /%TESTNUMBER0001 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
a: a
|
|
Content-Length: 1
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
aPOST /%TESTNUMBER0002 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
b: b
|
|
Content-Length: 1
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
bPOST /%TESTNUMBER0003 HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
c: c
|
|
Content-Length: 1
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
c
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|