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