1 |
siliconforks |
114 |
#!/bin/sh |
2 |
|
|
# store-bad-response-headers.sh - test store with bad response headers |
3 |
siliconforks |
427 |
# Copyright (C) 2008, 2009 siliconforks.com |
4 |
siliconforks |
114 |
# |
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 |
siliconforks |
443 |
. ./common.sh |
22 |
siliconforks |
337 |
|
23 |
siliconforks |
130 |
shutdown() { |
24 |
siliconforks |
114 |
wget -q -O- --post-data= "http://127.0.0.1:${server_port}/jscoverage-shutdown" > /dev/null |
25 |
|
|
wait $server_pid |
26 |
|
|
} |
27 |
|
|
|
28 |
siliconforks |
130 |
cleanup() { |
29 |
siliconforks |
114 |
shutdown |
30 |
siliconforks |
126 |
kill -9 $origin_server_pid |
31 |
siliconforks |
114 |
} |
32 |
|
|
|
33 |
|
|
trap 'cleanup' 0 1 2 3 15 |
34 |
|
|
|
35 |
|
|
if [ -z "$VALGRIND" ] |
36 |
|
|
then |
37 |
|
|
delay=0.2 |
38 |
|
|
else |
39 |
|
|
delay=2 |
40 |
|
|
fi |
41 |
|
|
|
42 |
|
|
rm -fr DIR |
43 |
|
|
$VALGRIND jscoverage-server --proxy --report-dir=DIR > OUT 2> ERR & |
44 |
|
|
server_pid=$! |
45 |
|
|
server_port=8080 |
46 |
|
|
./http-server-bad-headers & |
47 |
|
|
origin_server_pid=$! |
48 |
|
|
|
49 |
|
|
sleep $delay |
50 |
|
|
|
51 |
|
|
# server sending malformed headers |
52 |
|
|
cat store.json | sed "s/@PREFIX@/http:\\/\\/127.0.0.1:8000\\//g" > TMP |
53 |
|
|
wget --post-file=TMP -q -O- -e 'http_proxy=http://127.0.0.1:8080/' http://127.0.0.1:8000/jscoverage-store > /dev/null |
54 |
siliconforks |
337 |
json_cmp store-source-urls.expected.json DIR/jscoverage.json |
55 |
siliconforks |
114 |
sort ERR -o ERR |
56 |
siliconforks |
126 |
diff --strip-trailing-cr store-source-urls.expected.err ERR |