1INCLUDE $TOP/test/config.htb
2
3CLIENT
4
5_REQ $YOUR_HOST $YOUR_PORT
6__GET /your/path/to/your/resource?your=params HTTP/1.1
7__Host: $YOUR_HOST
8__User-Agent: mozilla
9__
10_EXPECT . "HTTP/1.1 200 OK"
11_EXPECT . "He"
12_EXPECT . "AS1"
13_WAIT
14
15END
16
17SERVER $YOUR_PORT
18
19_RES
20_WAIT
21__HTTP/1.1 200 OK
22__Content-Length: AUTO
23__Content-Type: text/html
24__
25_LOOP 2
26__He
27_END LOOP
28__==AS1 - 0==
29__
30
31END
32
33