-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathrun_tests
More file actions
executable file
·134 lines (116 loc) · 3.33 KB
/
run_tests
File metadata and controls
executable file
·134 lines (116 loc) · 3.33 KB
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
125
126
127
128
129
130
131
132
133
134
#!/usr/bin/env bash
#./run_tests -- -c nose.cfg
echo "This script will be remove, use : tox -epy27 tests/units"
exit 1
function usage {
echo "Usage: $0 [OPTION]..."
echo "Run Tempest test suite"
echo ""
echo " -V, --virtual-env Always use virtualenv. Install automatically if not present"
echo " -N, --no-virtual-env Don't use virtualenv. Run tests in local environment"
echo " -n, --no-site-packages Isolate the virtualenv from the global Python environment"
echo " -f, --force Force a clean re-build of the virtual environment. Useful when dependencies have been added."
echo " -u, --update Update the virtual environment with any newer package versions"
echo " -p, --pep8 Just run pep8"
echo " -h, --help Print this usage message"
echo " -F, --functional Functional tests only"
echo " -U, --unit Unit tests only"
echo " -- [NOSEOPTIONS] After the first '--' you can pass arbitrary arguments to nosetests "
}
venv=.venv
with_venv=tools/with_venv.sh
always_venv=0
never_venv=0
no_site_packages=0
force=0
update=0
noseargs=""
wrapper=""
do_pep8=0
do_unit=0
do_functional=0
if ! options=$(getopt -o VNnFUfuph -l force,update,virtual-env,no-virtual-env,no-site-packages,functional,unit,pep8,help -- "$@")
then
# parse error
usage
exit 1
fi
eval set -- $options
first_uu=yes
while [ $# -gt 0 ]; do
case "$1" in
-V|--virtual-env) always_venv=1; never_venv=0;;
-N|--no-virtual-env) always_venv=0; never_venv=1;;
-n|--no-site-packages) no_site_packages=1;;
-h|--help) usage; exit;;
-p|--pep8) let do_pep8=1;;
-U|--unit) let do_unit=1;;
-F|--functional) let do_functional=1;;
-f|--force) force=1;;
-u|--update) update=1;;
--) [ "yes" == "$first_uu" ] || noseargs="$noseargs $1"; first_uu=no ;;
*) noseargs="$noseargs $1"
esac
shift
done
cd `dirname "$0"`
if [ $no_site_packages -eq 1 ]; then
installvenvopts="--no-site-packages"
fi
NOSETESTS="nosetests $noseargs"
FUNCTIONAL=tests/functional
UNIT=tests/units
function run_unit_tests {
${wrapper} $NOSETESTS $UNIT
}
function run_functional_tests {
${wrapper} $NOSETESTS $FUNCTIONAL
}
function run_pep8 {
echo "Running pep8 ..."
${wrapper} flake8
}
if [ $never_venv -eq 0 ]; then
# Remove the virtual environment if --force used
if [ $force -eq 1 ]; then
echo "Cleaning virtualenv..."
rm -rf ${venv}
fi
if [ $update -eq 1 ]; then
echo "Updating virtualenv..."
python tools/install_venv.py $installvenvopts
fi
if [ -e ${venv} ]; then
wrapper="${with_venv}"
else
if [ $always_venv -eq 1 ]; then
# Automatically install the virtualenv
python tools/install_venv.py $installvenvopts
wrapper="${with_venv}"
else
echo -e "No virtual environment found...create one? (Y/n) \c"
read use_ve
if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then
# Install the virtualenv and run the test suite in it
python tools/install_venv.py $installvenvopts
wrapper=${with_venv}
fi
fi
fi
fi
if [ $do_pep8 -eq 1 ]; then
run_pep8
exit
fi
if [ $do_unit -eq 1 ]; then
run_unit_tests
exit
fi
if [ $do_functional -eq 1 ]; then
run_functional_tests
exit
fi
run_unit_tests
run_functional_tests
retval=$?
exit $retval