1 |
siliconforks |
251 |
#!/bin/sh |
2 |
|
|
# server-bad-requests.sh - test jscoverage-server with bad requests |
3 |
|
|
# Copyright (C) 2008 siliconforks.com |
4 |
|
|
# |
5 |
|
|
# This program is free software; you can redistribute it and/or modify |
6 |
|
|
# it under the terms of the GNU General Public License as published by |
7 |
|
|
# the Free Software Foundation; either version 2 of the License, or |
8 |
|
|
# (at your option) any later version. |
9 |
|
|
# |
10 |
|
|
# This program is distributed in the hope that it will be useful, |
11 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
|
|
# GNU General Public License for more details. |
14 |
|
|
# |
15 |
|
|
# You should have received a copy of the GNU General Public License along |
16 |
|
|
# with this program; if not, write to the Free Software Foundation, Inc., |
17 |
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
18 |
|
|
|
19 |
|
|
set -e |
20 |
|
|
|
21 |
|
|
shutdown() { |
22 |
|
|
wget -q -O- --post-data= "http://127.0.0.1:${server_port}/jscoverage-shutdown" > /dev/null |
23 |
|
|
wait $server_pid |
24 |
|
|
} |
25 |
|
|
|
26 |
|
|
cleanup() { |
27 |
|
|
shutdown |
28 |
|
|
rm -fr EXPECTED ACTUAL OUT ERR |
29 |
|
|
} |
30 |
|
|
|
31 |
siliconforks |
306 |
bad_request() { |
32 |
|
|
/bin/echo -ne "$1" | $NETCAT 127.0.0.1 $server_port > OUT 2> ERR |
33 |
|
|
echo 'HTTP/1.1 400 Bad Request' > EXPECTED |
34 |
|
|
head -n 1 OUT > ACTUAL |
35 |
|
|
diff --strip-trailing-cr EXPECTED ACTUAL |
36 |
|
|
} |
37 |
|
|
|
38 |
siliconforks |
251 |
trap 'cleanup' 0 1 2 3 15 |
39 |
|
|
|
40 |
|
|
export PATH=.:..:$PATH |
41 |
|
|
|
42 |
|
|
if [ -z "$VALGRIND" ] |
43 |
|
|
then |
44 |
|
|
delay=0.2 |
45 |
|
|
else |
46 |
|
|
delay=2 |
47 |
|
|
fi |
48 |
|
|
|
49 |
siliconforks |
296 |
if which netcat > /dev/null 2> /dev/null |
50 |
siliconforks |
261 |
then |
51 |
|
|
NETCAT=netcat |
52 |
siliconforks |
296 |
elif which nc > /dev/null 2> /dev/null |
53 |
siliconforks |
261 |
then |
54 |
|
|
NETCAT=nc |
55 |
|
|
else |
56 |
siliconforks |
305 |
NETCAT='perl netcat.pl'; |
57 |
siliconforks |
261 |
fi |
58 |
|
|
|
59 |
siliconforks |
306 |
rm -fr EXPECTED ACTUAL OUT ERR |
60 |
|
|
$VALGRIND jscoverage-server --port 8000 > /dev/null 2> /dev/null & |
61 |
|
|
server_pid=$! |
62 |
|
|
server_port=8000 |
63 |
siliconforks |
251 |
|
64 |
siliconforks |
306 |
sleep $delay |
65 |
|
|
|
66 |
siliconforks |
251 |
# send NUL in Request-Line |
67 |
|
|
bad_request 'GET \0000 HTTP/1.1\r\n\r\n' |
68 |
|
|
|
69 |
|
|
# send empty Request-Line |
70 |
|
|
bad_request '\r\n\r\n' |
71 |
|
|
|
72 |
|
|
# send bad Request-Line |
73 |
|
|
bad_request ' \r\n\r\n' |
74 |
|
|
bad_request 'GET\r\n\r\n' |
75 |
|
|
bad_request 'GET \r\n\r\n' |
76 |
|
|
bad_request 'GET \r\n\r\n' |
77 |
|
|
bad_request 'GET /\r\n\r\n' |
78 |
|
|
bad_request 'GET / \r\n\r\n' |
79 |
|
|
|
80 |
|
|
# bad Host header |
81 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nHost: foo:bar\r\n\r\n' |
82 |
|
|
|
83 |
|
|
# NUL in header |
84 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nFoo: \0000\r\n\r\n' |
85 |
|
|
|
86 |
|
|
# missing header |
87 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\n: bar\r\n\r\n' |
88 |
|
|
|
89 |
|
|
# missing header value |
90 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nFoo:\r\n\r\n' |
91 |
|
|
|
92 |
|
|
# bad Transfer-Encoding |
93 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo;\r\n\r\n' |
94 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar\r\n\r\n' |
95 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar = "\r\n\r\n' |
96 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar = "\r\n\r\n' |
97 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar = "\\\0200"\r\n\r\n' |
98 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar = "\0177"\r\n\r\n' |
99 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nTransfer-Encoding: foo; bar = ;\r\n\r\n' |
100 |
|
|
|
101 |
|
|
# bad Content-Length |
102 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nContent-Length: 4294967296\r\n\r\n' |
103 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nContent-Length: 4294967300\r\n\r\n' |
104 |
|
|
bad_request 'GET / HTTP/1.1\r\nConnection: close\r\nContent-Length: foo\r\n\r\n' |