blob: 8c2828e432d66845aca84cce4e4ddd33c446523d (
plain)
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
|
#!/bin/bash
[ $# -ne 1 ] && { echo "Usage: $0 <run | break | verbose | reset>"; exit 1; }
##### Arguments #####
wai=$(dirname $(readlink -f $0))
out=$(mktemp)
[ "$1" == "break" ] && int=1 || int=0
[ "$1" == "verbose" ] && verbose=1 || verbose=0
[ "$1" == "reset" ] && reset=1 || reset=0
#####################
##### Utils Functions #####
passed(){
echo -e "$1 ===> \e[32mpassed :)\e[0m"
}
fail(){
echo -e "$1 ===> \e[5m\e[31mfail :(\e[0m"
}
clean(){
rm ${out}
}
##################### #####
##### Run Integration Tests #####
nb_pass=0
nb_fail=0
for test in $(find ${wai} -type f -name "test-*.sh")
do
test_name=$(basename $test)
expectations="${wai}/${test_name%.*}.out"
if [ $reset -eq 1 ]
then
bash ${test} > "${out}" 2>&1 # Run Test
cat "${out}" > "${expectations}"
continue
else
bash ${test} > "${out}" 2>&1 # Run Test
fi
diff_out=$(diff "${out}" "${expectations}")
if [ ! -z "${diff_out}" ]
then
fail "${test_name}"
nb_fail=$(( nb_fail + 1 ))
if [ $int -eq 1 ] || [ $verbose -eq 1 ]
then
echo "========== Diff =========="
echo -e "${diff_out}"
if [ $verbose -eq 0 ]
then
clean
exit 1
fi
fi
else
nb_pass=$(( nb_pass + 1 ))
passed "${test_name}"
fi
done
clean
#################################
if [ $reset -eq 0 ]
then
echo -e "\n===== STATS ====="
echo "${nb_pass} pass"
echo "${nb_fail} fails"
[ ${nb_fail} -gt 0 ] && exit 1
else
echo "Reset done."
fi
|