-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtests.sh
executable file
·68 lines (51 loc) · 1.68 KB
/
tests.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
#!/bin/bash
run_test() {
echo -ne "Running test \\e[33m\"$(echo "$1" | sed -E "s/.*\\/(.*)\\//\\1/")\"\\e[0m... "
expected_status_code="$(perl -p -e 'BEGIN{undef $/;} s/^--STATUS-CODE--\n(\d+)\n.*$/$1/s' "${1}test")"
expected_output="$(echo -e "$(perl -p -e 'BEGIN{undef $/;} s/^.*--OUTPUT--\n(.*)\n$/$1/s' "${1}test")")"
cd "${1}files" || return 3
output=$(../../../check-trailing-whitespaces)
status_code="$?"
cd "$OLDPWD" || return 3
if [ "${status_code}" != "${expected_status_code}" ]
then
echo -e "\\e[31mFailing asserting that status code ${status_code} matches expected status code ${expected_status_code}:\\e[0m"
return 3
fi
if [ "${output}" != "${expected_output}" ]
then
echo -e "\\e[31mFailing asserting that output matches expected output:\\e[0m"
diff -u <(echo "${expected_output}" ) <(echo "${output}")
return 3
fi
echo -e "\\e[32mOK\\e[0m"
return 0
}
# setup
# Git does not allow to track a .git directory so we copy .svn
rm -rf tests/default_ignored_paths/files/.git tests/default_ignored_paths/files/directory/.git
cp -r tests/default_ignored_paths/files/.svn tests/default_ignored_paths/files/.git
cp -r tests/default_ignored_paths/files/directory/.svn tests/default_ignored_paths/files/directory/.git
# run tests
i=0
failures=0
for test_case in "$(dirname "$(realpath "$0")")"/*/
do
if [ "$i" -gt 0 ]
then
echo
fi
if ! run_test "${test_case}"
then
((++failures))
fi
((++i))
done
# clean
rm -rf tests/default_ignored_paths/files/.git tests/default_ignored_paths/files/directory/.git
# exit
if [ "${failures}" -ne 0 ]
then
exit 3
fi
exit 0