1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
<?xml version="1.0" encoding="US-ASCII"?>
<testcase>
<info>
<keywords>
HTTPS
HTTP GET
</keywords>
</info>
<reply>
<data>
HTTP/1.1 200 OK
Connection: close
Content-Type: text/html
Content-Length: 18
Here's your data.
</data>
</reply>
<proxy-reply>
<data>
HTTP/1.1 200 Connection established
HTTP/1.1 200 OK
Connection: close
Content-Type: text/html
Content-Length: 18
Here's your data.
</data>
</proxy-reply>
<client>
<server>
https
</server>
<name>
Blocked https request followed by unblocked request for the same host which means the connection can't be reused
</name>
<command>
--insecure -s --write-out '%{stderr}%{response_code}\n' https://%HOSTIP:%HTTPSPORT/ads/%TESTNUMBER --output log/curl1.out https://%HOSTIP:%HTTPSPORT/%TESTNUMBER
</command>
</client>
<verify>
<protocol>
GET /%TESTNUMBER HTTP/1.1%CR
Host: %HOSTIP:%HTTPSPORT%CR
User-Agent: curl/%VERSION%CR
Accept: */*%CR
%CR
</protocol>
<stderr>
403
200
</stderr>
</verify>
</testcase>
|