forked from django-cms/django-filer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtests.sh
executable file
·124 lines (101 loc) · 2.81 KB
/
runtests.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
117
118
119
120
121
122
123
124
#!/bin/bash
# TODO: currently the $suite, $failfast and --with-coverage are ignored
find . -name '*.pyc' -delete
cd tests
sigfile=.buildoutsig
args=("$@")
num_args=${#args[@]}
index=0
reuse_env=true
disable_coverage=true
django=13
python="python" # to ensure this script works if no python option is specified
while [ "$index" -lt "$num_args" ]
do
case "${args[$index]}" in
"-f"|"--failfast")
failfast="--failfast"
;;
"-r"|"--rebuild-env")
reuse_env=false
;;
"-c"|"--with-coverage")
disable_coverage=false
;;
"-d"|"--django")
let "index = $index + 1"
django="${args[$index]}"
;;
"-p"|"--python")
let "index = $index + 1"
python="${args[$index]}"
;;
"-h"|"--help")
echo ""
echo "usage:"
echo " runtests.sh"
echo " or runtests.sh [testcase]"
echo " or runtests.sh [flags] [testcase]"
echo ""
echo "flags:"
echo " -f, --failfast - abort at first failing test"
echo " -c, --with-coverage - enables coverage"
echo " -r, --rebuild-env - run buildout before the tests"
echo " -d, --django <version> - run tests against a django version, options: 124, 125, 13 or trunk"
echo " -p, --python /path/to/python - python version to use to run the tests"
echo " -h, --help - display this help"
exit 1
;;
*)
suite="filer.${args[$index]}"
esac
let "index = $index + 1"
done
echo "using python at: $python"
sig="py:$python;dj:$django$"
oldsig="nosig"
if [ -f $sigfile ]; then
oldsig=`cat $sigfile`
fi
if [ "$oldsig" != "$sig" ]; then
reuse_env=false
fi
echo $sig > $sigfile
if [ $reuse_env == false ]; then
echo "setting up test environment (this might take a while)..."
$python bootstrap.py
if [ $? != 0 ]; then
echo "bootstrap.py failed"
exit 1
fi
./bin/buildout -c "django-$django.cfg"
./bin/buildout -c "django-$django.cfg"
if [ $? != 0 ]; then
echo "bin/buildout failed"
exit 1
fi
else
echo "reusing current buildout environment"
fi
if [ "$failfast" ]; then
echo "--failfast supplied, not using xmlrunner."
fi
if [ ! "$suite" ]; then
suite="filer"
echo "Running complete filer testsuite."
else
echo "Running filer test $suite."
fi
if [ $disable_coverage == false ]; then
./bin/coverage run --rcfile=.coveragerc project/manage.py test $suite $failfast
retcode=$?
echo "Post test actions..."
./bin/coverage xml
./bin/coverage html
else
./bin/django jenkins
retcode=$?
fi
cd ..
echo "done"
exit $retcode