123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <testcase>
- <info>
- <keywords>
- HTTP
- HTTP GET
- HTTP CONNECT
- HTTP proxy
- proxytunnel
- CURLOPT_CONNECT_TO
- SOCKS5
- </keywords>
- </info>
- #
- # Server-side
- <reply>
- <connect>
- HTTP/1.1 200 Connection established
- </connect>
- <data>
- HTTP/1.1 200 OK
- Date: Tue, 09 Nov 2010 14:49:00 GMT
- Content-Length: 3
- Content-Type: text/plain
- OK
- </data>
- <datacheck>
- HTTP/1.1 200 Connection established
- HTTP/1.1 200 OK
- Date: Tue, 09 Nov 2010 14:49:00 GMT
- Content-Length: 3
- Content-Type: text/plain
- OK
- </datacheck>
- </reply>
- #
- # Client-side
- <client>
- <server>
- http
- http-proxy
- socks5
- </server>
- <name>
- Connect to specific host via SOCKS proxy and HTTP proxy (switch to tunnel mode automatically)
- </name>
- <features>
- proxy
- </features>
- <command>
- http://www.example.com.%TESTNUMBER/%TESTNUMBER --connect-to ::connect.example.com.%TESTNUMBER:%HTTPPORT -x %HOSTIP:%PROXYPORT --preproxy socks5://%HOSTIP:%SOCKSPORT
- </command>
- </client>
- #
- # Verify data after the test has been "shot"
- <verify>
- <proxy>
- CONNECT connect.example.com.%TESTNUMBER:%HTTPPORT HTTP/1.1
- Host: connect.example.com.%TESTNUMBER:%HTTPPORT
- User-Agent: curl/%VERSION
- Proxy-Connection: Keep-Alive
- </proxy>
- <protocol>
- GET /%TESTNUMBER HTTP/1.1
- Host: www.example.com.%TESTNUMBER
- User-Agent: curl/%VERSION
- Accept: */*
- </protocol>
- </verify>
- </testcase>
|