1<testcase>
2<info>
3<keywords>
4HTTP
5HTTP 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">
13HTTP/1.1 200 OK
14Date: Thu, 09 Nov 2010 14:49:00 GMT
15Content-Length: 4
16Connection: close
17Content-Type: text/html
18
19hej
20</data>
21</reply>
22
23#
24# Client-side
25<client>
26<server>
27http
28</server>
29 <name>
30HTTP GET -w remote_ip and -w remote_port
31 </name>
32 <command>
33http://%HOSTIP:%HTTPPORT/1223 -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<strip>
41^User-Agent:.*
42</strip>
43<protocol>
44GET /1223 HTTP/1.1
45Host: %HOSTIP:%HTTPPORT
46Accept: */*
47
48</protocol>
49<stdout>
50HTTP/1.1 200 OK
51Date: Thu, 09 Nov 2010 14:49:00 GMT
52Content-Length: 4
53Connection: close
54Content-Type: text/html
55
56hej
57IP %HOSTIP and PORT %HTTPPORT
58</stdout>
59</verify>
60</testcase>
61