1 |
siliconforks |
114 |
#!/bin/sh |
2 |
|
|
# store-source-not-found.sh - test store with JavaScript source not found |
3 |
siliconforks |
505 |
# Copyright (C) 2008, 2009, 2010 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 |
|
|
} |
31 |
|
|
|
32 |
|
|
trap 'cleanup' 0 1 2 3 15 |
33 |
|
|
|
34 |
|
|
rm -fr DIR |
35 |
siliconforks |
610 |
server_port=`perl unused-port.pl` |
36 |
|
|
$VALGRIND jscoverage-server --port=$server_port --report-dir=DIR > OUT 2> ERR & |
37 |
siliconforks |
114 |
server_pid=$! |
38 |
|
|
|
39 |
siliconforks |
610 |
wait_for_server http://127.0.0.1:${server_port}/jscoverage.html |
40 |
siliconforks |
114 |
|
41 |
siliconforks |
610 |
wget --post-file=store-source-not-found.json -q -O- http://127.0.0.1:${server_port}/jscoverage-store > /dev/null |
42 |
siliconforks |
337 |
json_cmp store-source-not-found.expected.json DIR/jscoverage.json |
43 |
siliconforks |
126 |
diff --strip-trailing-cr store-source-not-found.expected.err ERR |