test1223 (884B)
1 <testcase> 2 <info> 3 <keywords> 4 HTTP 5 HTTP GET 6 </keywords> 7 </info> 8 9 # 10 # disable data check since it gets sent to stdout and is verified there 11 <reply> 12 <data nocheck="yes"> 13 HTTP/1.1 200 OK 14 Date: Tue, 09 Nov 2010 14:49:00 GMT 15 Content-Length: 4 16 Connection: close 17 Content-Type: text/html 18 19 hej 20 </data> 21 </reply> 22 23 # 24 # Client-side 25 <client> 26 <server> 27 http 28 </server> 29 <name> 30 HTTP GET -w remote_ip and -w remote_port 31 </name> 32 <command> 33 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w 'IP %{remote_ip} and PORT %{remote_port}\n' 34 </command> 35 </client> 36 37 # 38 # Verify data after the test has been "shot" 39 <verify> 40 <protocol> 41 GET /%TESTNUMBER HTTP/1.1 42 Host: %HOSTIP:%HTTPPORT 43 User-Agent: curl/%VERSION 44 Accept: */* 45 46 </protocol> 47 <stdout> 48 HTTP/1.1 200 OK 49 Date: Tue, 09 Nov 2010 14:49:00 GMT 50 Content-Length: 4 51 Connection: close 52 Content-Type: text/html 53 54 hej 55 IP %HOSTIP and PORT %HTTPPORT 56 </stdout> 57 </verify> 58 </testcase>