1 |
#!/bin/sh |
2 |
# server-error.sh - test jscoverage-server with invalid options |
3 |
# Copyright (C) 2008, 2009, 2010 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 |
export PATH=.:..:$PATH |
22 |
|
23 |
! jscoverage-server --report-dir > OUT 2> ERR |
24 |
test ! -s OUT |
25 |
test -s ERR |
26 |
|
27 |
! jscoverage-server --document-root > OUT 2> ERR |
28 |
test ! -s OUT |
29 |
test -s ERR |
30 |
|
31 |
! jscoverage-server --document-root DOES-NOT-EXIST > OUT 2> ERR |
32 |
test ! -s OUT |
33 |
test -s ERR |
34 |
|
35 |
touch IS-NOT-DIR |
36 |
! jscoverage-server --document-root IS-NOT-DIR > OUT 2> ERR |
37 |
test ! -s OUT |
38 |
test -s ERR |
39 |
rm -f IS-NOT-DIR |
40 |
|
41 |
! jscoverage-server --ip-address > OUT 2> ERR |
42 |
test ! -s OUT |
43 |
test -s ERR |
44 |
|
45 |
! jscoverage-server --no-instrument > OUT 2> ERR |
46 |
test ! -s OUT |
47 |
test -s ERR |
48 |
|
49 |
! jscoverage-server --port > OUT 2> ERR |
50 |
test ! -s OUT |
51 |
test -s ERR |
52 |
|
53 |
! jscoverage-server --foo > OUT 2> ERR |
54 |
test ! -s OUT |
55 |
test -s ERR |
56 |
|
57 |
! jscoverage-server foo > OUT 2> ERR |
58 |
test ! -s OUT |
59 |
test -s ERR |
60 |
|
61 |
! jscoverage-server --port x > OUT 2> ERR |
62 |
test ! -s OUT |
63 |
test -s ERR |
64 |
|
65 |
! jscoverage-server --port 123456 > OUT 2> ERR |
66 |
test ! -s OUT |
67 |
test -s ERR |
68 |
|
69 |
! jscoverage-server --encoding > OUT 2> ERR |
70 |
test ! -s OUT |
71 |
test -s ERR |