blob: 3a2bd94e19653d7f2ae2f8dc749abb718472331a [file] [log] [blame]
Attila Fazekas5abb2532012-12-04 11:30:49 +01001#!/usr/bin/env bash
Justin Shepherd0d9bbd12011-08-11 12:57:44 -05002
3function usage {
Jay Pipesf38eaac2012-06-21 13:37:35 -04004 echo "Usage: $0 [OPTION]..."
5 echo "Run Tempest test suite"
Justin Shepherd0d9bbd12011-08-11 12:57:44 -05006 echo ""
Matthew Treinish8e937d72012-12-14 11:11:41 -05007 echo " -V, --virtual-env Always use virtualenv. Install automatically if not present"
8 echo " -N, --no-virtual-env Don't use virtualenv. Run tests in local environment"
Andrea Frittoli1cfbc4a2013-01-31 19:44:10 +00009 echo " -n, --no-site-packages Isolate the virtualenv from the global Python environment"
Matthew Treinish8e937d72012-12-14 11:11:41 -050010 echo " -f, --force Force a clean re-build of the virtual environment. Useful when dependencies have been added."
Jay Pipesf38eaac2012-06-21 13:37:35 -040011 echo " -s, --smoke Only run smoke tests"
Jay Pipes051075a2012-04-28 17:39:37 -040012 echo " -w, --whitebox Only run whitebox tests"
Matthew Treinishd15705b2012-10-16 14:04:48 -040013 echo " -c, --nova-coverage Enable Nova coverage collection"
Attila Fazekasa63a9992013-02-14 16:44:37 +010014 echo " -C, --config Config file location"
Jay Pipesf38eaac2012-06-21 13:37:35 -040015 echo " -p, --pep8 Just run pep8"
Justin Shepherd0d9bbd12011-08-11 12:57:44 -050016 echo " -h, --help Print this usage message"
Sean Dague14a60152012-12-13 15:59:40 -050017 echo " -d, --debug Debug this script -- set -o xtrace"
18 echo " -S, --stdout Don't capture stdout"
Attila Fazekasa63a9992013-02-14 16:44:37 +010019 echo " -- [NOSEOPTIONS] After the first '--' you can pass arbitrary arguments to nosetests "
Justin Shepherd0d9bbd12011-08-11 12:57:44 -050020}
21
Sean Dague422af972012-11-16 07:30:43 -050022noseargs=""
Jay Pipesf38eaac2012-06-21 13:37:35 -040023just_pep8=0
Matthew Treinish8e937d72012-12-14 11:11:41 -050024venv=.venv
25with_venv=tools/with_venv.sh
26always_venv=0
27never_venv=0
28no_site_packages=0
29force=0
30wrapper=""
Matthew Treinishd15705b2012-10-16 14:04:48 -040031nova_coverage=0
Attila Fazekasa63a9992013-02-14 16:44:37 +010032config_file=""
33
34if ! options=$(getopt -o VNnfswcphdsC: -l virtual-env,no-virtual-env,no-site-packages,force,smoke,whitebox,nova-coverage,pep8,help,debug,stdout,config: -- "$@")
35then
36 # parse error
37 usage
38 exit 1
39fi
40
41eval set -- $options
42first_uu=yes
43while [ $# -gt 0 ]; do
44 case "$1" in
45 -h|--help) usage; exit;;
46 -V|--virtual-env) always_venv=1; never_venv=0;;
47 -N|--no-virtual-env) always_venv=0; never_venv=1;;
48 -n|--no-site-packages) no_site_packages=1;;
49 -f|--force) force=1;;
50 -d|--debug) set -o xtrace;;
51 -c|--nova-coverage) let nova_coverage=1;;
52 -C|--config) config_file=$2; shift;;
53 -p|--pep8) let just_pep8=1;;
54 -s|--smoke) noseargs="$noseargs --attr=type=smoke";;
55 -w|--whitebox) noseargs="$noseargs --attr=type=whitebox";;
56 -S|--stdout) noseargs="$noseargs -s";;
57 --) [ "yes" == "$first_uu" ] || noseargs="$noseargs $1"; first_uu=no ;;
58 *) noseargs="$noseargs $1"
59 esac
60 shift
61done
62
63if [ -n "$config_file" ]; then
64 config_file=`readlink -f "$config_file"`
65 export TEMPEST_CONFIG_DIR=`dirname "$config_file"`
66 export TEMPEST_CONFIG=`basename "$config_file"`
67fi
68
69cd `dirname "$0"`
Jay Pipesf38eaac2012-06-21 13:37:35 -040070
71export NOSE_WITH_OPENSTACK=1
72export NOSE_OPENSTACK_COLOR=1
73export NOSE_OPENSTACK_RED=15.00
74export NOSE_OPENSTACK_YELLOW=3.00
75export NOSE_OPENSTACK_SHOW_ELAPSED=1
76export NOSE_OPENSTACK_STDOUT=1
77
Matthew Treinish8e937d72012-12-14 11:11:41 -050078if [ $no_site_packages -eq 1 ]; then
79 installvenvopts="--no-site-packages"
80fi
Sean Dague422af972012-11-16 07:30:43 -050081
82# only add tempest default if we don't specify a test
83if [[ "x$noseargs" =~ "tempest" ]]; then
84 noseargs="$noseargs"
85else
86 noseargs="$noseargs tempest"
87fi
88
Justin Shepherd0d9bbd12011-08-11 12:57:44 -050089function run_tests {
Matthew Treinish8e937d72012-12-14 11:11:41 -050090 ${wrapper} $NOSETESTS
Justin Shepherd0d9bbd12011-08-11 12:57:44 -050091}
92
Jay Pipesf38eaac2012-06-21 13:37:35 -040093function run_pep8 {
94 echo "Running pep8 ..."
Matthew Treinish8b372892012-12-07 17:13:16 -050095 srcfiles="`find tempest -type f -name "*.py"`"
96 srcfiles+=" `find tools -type f -name "*.py"`"
Sean Daguef237ccb2013-01-04 15:19:14 -050097 srcfiles+=" `find stress -type f -name "*.py"`"
Matthew Treinish8b372892012-12-07 17:13:16 -050098 srcfiles+=" setup.py"
99
Sean Daguef237ccb2013-01-04 15:19:14 -0500100 ignore='--ignore=E121,E122,E125,E126'
Sean Dague14a60152012-12-13 15:59:40 -0500101
Sean Dague97449cc2013-01-04 14:38:26 -0500102 ${wrapper} python tools/hacking.py ${ignore} ${srcfiles}
Jay Pipesf38eaac2012-06-21 13:37:35 -0400103}
104
Matthew Treinishd15705b2012-10-16 14:04:48 -0400105function run_coverage_start {
106 echo "Starting nova-coverage"
107 ${wrapper} python tools/tempest_coverage.py -c start
108}
109
110function run_coverage_report {
111 echo "Generating nova-coverage report"
112 ${wrapper} python tools/tempest_coverage.py -c report
113}
114
Jay Pipesf38eaac2012-06-21 13:37:35 -0400115NOSETESTS="nosetests $noseargs"
116
Matthew Treinish8e937d72012-12-14 11:11:41 -0500117if [ $never_venv -eq 0 ]
118then
119 # Remove the virtual environment if --force used
120 if [ $force -eq 1 ]; then
121 echo "Cleaning virtualenv..."
122 rm -rf ${venv}
123 fi
124 if [ -e ${venv} ]; then
125 wrapper="${with_venv}"
126 else
127 if [ $always_venv -eq 1 ]; then
128 # Automatically install the virtualenv
129 python tools/install_venv.py $installvenvopts
130 wrapper="${with_venv}"
131 else
132 echo -e "No virtual environment found...create one? (Y/n) \c"
133 read use_ve
134 if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then
135 # Install the virtualenv and run the test suite in it
136 python tools/install_venv.py $installvenvopts
137 wrapper=${with_venv}
138 fi
139 fi
140 fi
141fi
142
Matthew Treinish0cc26b62013-01-03 18:07:09 -0500143if [ $just_pep8 -eq 1 ]; then
144 run_pep8
145 exit
146fi
147
Matthew Treinishd15705b2012-10-16 14:04:48 -0400148if [ $nova_coverage -eq 1 ]; then
149 run_coverage_start
150fi
151
152run_tests
153
154if [ $nova_coverage -eq 1 ]; then
155 run_coverage_report
156fi
Jay Pipesf38eaac2012-06-21 13:37:35 -0400157
158if [ -z "$noseargs" ]; then
159 run_pep8
160fi