mirror of
https://github.com/curl/curl.git
synced 2026-04-12 00:11:42 +08:00
To formalize they are now XML-compliant (with some asterisks.) Also to help syntax highlighters work on them to make their content more readable. Also: - Delete empty comment decorations. - GHA/checksrc: simplify XML check. - runtests: fail to load test data with XML prolog missing. Follow-up tobfe6eb1c06#19927 Follow-up to87ba80a6dfCloses #19946
61 lines
930 B
XML
61 lines
930 B
XML
<?xml version="1.0" encoding="US-ASCII"?>
|
|
<testcase>
|
|
<info>
|
|
<keywords>
|
|
HTTP
|
|
HTTP GET
|
|
HTTP proxy
|
|
</keywords>
|
|
</info>
|
|
# Server-side
|
|
<reply>
|
|
<data>
|
|
HTTP/1.1 200 OK
|
|
Server: test-server/fake
|
|
Content-Length: 5
|
|
|
|
bing
|
|
</data>
|
|
<data1>
|
|
HTTP/1.1 200 OK
|
|
Server: test-server/fake
|
|
Content-Length: 6
|
|
|
|
wrong
|
|
</data1>
|
|
</reply>
|
|
|
|
# Client-side
|
|
<client>
|
|
<server>
|
|
http
|
|
https
|
|
</server>
|
|
<features>
|
|
proxy
|
|
</features>
|
|
<name>
|
|
HTTP GET same URL - different proxy ports
|
|
</name>
|
|
<command>
|
|
http://%HOSTIP:%HTTPPORT/%TESTNUMBER -x %HOSTIP:%HTTPPORT --next http://%HOSTIP:%HTTPPORT/%TESTNUMBER00001 -x %HOSTIP:%HTTPSPORT
|
|
</command>
|
|
</client>
|
|
|
|
# Verify data after the test has been "shot"
|
|
<verify>
|
|
# the second request meant to fail
|
|
<errorcode>
|
|
56
|
|
</errorcode>
|
|
<protocol crlf="headers">
|
|
GET http://%HOSTIP:%HTTPPORT/%TESTNUMBER HTTP/1.1
|
|
Host: %HOSTIP:%HTTPPORT
|
|
User-Agent: curl/%VERSION
|
|
Accept: */*
|
|
Proxy-Connection: Keep-Alive
|
|
|
|
</protocol>
|
|
</verify>
|
|
</testcase>
|