summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/monkey/qa/connection_http11_01.htt
blob: f8a32f576de280a77f5c14b70d635598e39eac64 (plain)
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
###############################################################################
# DESCRIPTION
#	Server must not send connection header
#
# AUTHOR
#	Eduardo Silva	<edsiper@gmail.com>
#
# DATE
#	March 17 2010
#
# COMMENTS
#	Do not Expect 'Connection:' from server
###############################################################################


INCLUDE __CONFIG
INCLUDE __MACROS

CLIENT
_REQ $HOST $PORT
__GET / $HTTPVER
__Host: $HOST
__
_EXPECT . "HTTP/1.1 200 OK"
_EXPECT . "!Connection:"
_WAIT
END