forked from heketi/heketi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·116 lines (105 loc) · 2.4 KB
/
test.sh
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#!/bin/bash
# main test runner for heketi
# Executes all executable scripts under tests dir
# in sorted order.
FAILURES=()
vecho () {
if [[ "${verbose}" = "yes" ]] ; then
echo "$*"
fi
}
run_test() {
cmd="${1}"
vecho "-- Running: ${tname} --"
"${cmd}"
sts=$?
if [[ ${sts} -ne 0 ]]; then
vecho "failed ${cmd} [${sts}]"
FAILURES+=("${cmd}")
if [[ "${exitfirst}" = "yes" ]]; then
exit 1
fi
fi
}
summary() {
if [[ ${#FAILURES[@]} -gt 0 ]]; then
echo "ERROR: failing tests:"
for i in "${!FAILURES[@]}"; do
echo " ${FAILURES[i]}"
done
exit 1
else
echo "all tests passed"
exit 0
fi
}
show_help() {
echo "$0 [options]"
echo " Options:"
echo " -c|--coverage TYPE Run tests with given coverage type"
echo " -v|--verbose Print verbose output"
echo " -x|--exitfirst Exit on first test failure"
echo " -h|--help Display help"
echo ""
echo " Coverage Types:"
echo " html - Generate html files (one per package) in the"
echo " coverage directory."
echo " stdout - Print coverage information to the console."
echo " summary - Generate ONLY a packagecover.out to record"
echo " coverage stats for all tests run.*"
echo " * All modes generate the package cover information,"
echo " summary mode disables all additional output."
}
CLI="$(getopt -o c:xvh --long coverage:,exitfirst,verbose,help -n "$0" -- "$@")"
eval set -- "${CLI}"
while true ; do
case "$1" in
-c|--coverage)
coverage="$2"
case ${coverage} in
stdout|html|summary);;
*)
echo "error: invalid coverage type ${coverage}."
echo " need one of: stdout, html, summary"
exit 2
;;
esac
shift
shift
;;
-x|--exitfirst)
exitfirst=yes
shift
;;
-v|--verbose)
verbose=yes
shift
;;
-h|--help)
show_help
exit 0
;;
--)
shift
break
;;
*)
echo "unknown option" >&2
exit 2
;;
esac
done
trap summary EXIT
SCRIPT_DIR="$(cd "$(dirname "${0}")" && pwd)"
# environment vars exported for test scripts
# (this way test scripts dont need cli parsing, we do it here)
export HEKETI_TEST_EXITFIRST=${exitfirst}
export HEKETI_TEST_SCRIPT_DIR="${SCRIPT_DIR}"
export HEKETI_TEST_COVERAGE=${coverage}
cd "${SCRIPT_DIR}" || exit 1
for tname in $(ls tests | sort) ; do
tpath="./tests/${tname}"
if [[ ${tpath} =~ .*\.sh$ && -f ${tpath} && -x ${tpath} ]]; then
run_test "${tpath}"
fi
done