mirror of
https://github.com/curl/curl.git
synced 2025-01-12 13:55:11 +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
65 lines
768 B
Plaintext
65 lines
768 B
Plaintext
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
HTTP/2
|
|
HTTPS
|
|
</keywords>
|
|
</info>
|
|
|
|
#
|
|
# Server-side
|
|
<reply>
|
|
<data nocheck="yes">
|
|
HTTP/1.1 200 OK
|
|
Date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
Content-Length: 6
|
|
Connection: close
|
|
Content-Type: text/html
|
|
Funny-head: yesyes
|
|
|
|
-foo-
|
|
</data>
|
|
</reply>
|
|
|
|
#
|
|
# Client-side
|
|
<client>
|
|
<features>
|
|
debug
|
|
h2c
|
|
SSL
|
|
</features>
|
|
<server>
|
|
http
|
|
http/2
|
|
</server>
|
|
<name>
|
|
HTTP/2 GET
|
|
</name>
|
|
<setenv>
|
|
</setenv>
|
|
<command>
|
|
-k --http2 "https://%HOSTIP:%HTTP2TLSPORT/%TESTNUMBER"
|
|
</command>
|
|
|
|
</client>
|
|
|
|
#
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
<stdout crlf="yes">
|
|
HTTP/2 200
|
|
date: Tue, 09 Nov 2010 14:49:00 GMT
|
|
content-length: 6
|
|
content-type: text/html
|
|
funny-head: yesyes
|
|
server: nghttpx
|
|
via: 1.1 nghttpx
|
|
|
|
-foo-
|
|
</stdout>
|
|
</verify>
|
|
</testcase>
|