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
68 lines
908 B
Plaintext
68 lines
908 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
CURLPAUSE_RECV
|
|
chunked Transfer-Encoding
|
|
Trailer:
|
|
DELAY
|
|
</keywords>
|
|
</info>
|
|
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
HTTP/1.1 200 OK swsclose
|
|
Transfer-Encoding: chunked
|
|
Trailer: MyCoolTrailerHeader
|
|
|
|
4
|
|
data
|
|
5
|
|
d474
|
|
|
|
0
|
|
MyCoolTrailerHeader: amazingtrailer
|
|
|
|
</data>
|
|
<datacheck>
|
|
HTTP/1.1 200 OK swsclose
|
|
Transfer-Encoding: chunked
|
|
Trailer: MyCoolTrailerHeader
|
|
|
|
Got 4 bytes but pausing!
|
|
datad474
|
|
MyCoolTrailerHeader: amazingtrailer
|
|
</datacheck>
|
|
<servercmd>
|
|
writedelay: 10
|
|
</servercmd>
|
|
</reply>
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
</server>
|
|
<tool>
|
|
lib%TESTNUMBER
|
|
</tool>
|
|
<name>
|
|
chunked with trailers and pausing the receive
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/%TESTNUMBER
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<protocol>
|
|
GET /%TESTNUMBER HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
Accept: */*
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|