Attila Fazekas | 5abb253 | 2012-12-04 11:30:49 +0100 | [diff] [blame] | 1 | #!/usr/bin/env bash |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 2 | |
| 3 | function usage { |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 4 | echo "Usage: $0 [OPTION]..." |
Matthew Treinish | 17520e4 | 2014-01-05 13:02:23 -0500 | [diff] [blame] | 5 | echo "Run Tempest unit tests" |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 6 | echo "" |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 7 | 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 Frittoli | 1cfbc4a | 2013-01-31 19:44:10 +0000 | [diff] [blame] | 9 | echo " -n, --no-site-packages Isolate the virtualenv from the global Python environment" |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 10 | echo " -f, --force Force a clean re-build of the virtual environment. Useful when dependencies have been added." |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 11 | echo " -u, --update Update the virtual environment with any newer package versions" |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 12 | echo " -t, --serial Run testr serially" |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 13 | echo " -p, --pep8 Just run pep8" |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 14 | echo " -c, --coverage Generate coverage report" |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 15 | echo " -h, --help Print this usage message" |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 16 | echo " -d, --debug Run tests with testtools instead of testr. This allows you to use PDB" |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 17 | echo " -- [TESTROPTIONS] After the first '--' you can pass arbitrary arguments to testr " |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 18 | } |
| 19 | |
Masayuki Igawa | afb1143 | 2016-06-02 16:09:50 +0900 | [diff] [blame] | 20 | function deprecation_warning { |
| 21 | cat <<EOF |
| 22 | ------------------------------------------------------------------------- |
| 23 | WARNING: run_tests.sh is deprecated and this script will be removed after |
| 24 | the Newton release. All tests should be run through testr/ostestr or tox. |
| 25 | |
| 26 | To run style checks: |
| 27 | |
| 28 | tox -e pep8 |
| 29 | |
| 30 | To run python 2.7 unit tests |
| 31 | |
| 32 | tox -e py27 |
| 33 | |
| 34 | To run unit tests and generate coverage report |
| 35 | |
| 36 | tox -e cover |
| 37 | |
| 38 | To run a subset of any of these tests: |
| 39 | |
| 40 | tox -e py27 someregex |
| 41 | |
| 42 | i.e.: tox -e py27 test_servers |
| 43 | |
| 44 | Additional tox targets are available in tox.ini. For more information |
| 45 | see: |
| 46 | http://docs.openstack.org/project-team-guide/project-setup/python.html |
| 47 | |
| 48 | NOTE: if you want to use testr to run tests, you can instead use: |
| 49 | |
| 50 | OS_TEST_PATH=./tempest/tests testr run |
| 51 | |
| 52 | Documentation on using testr directly can be found at |
| 53 | http://testrepository.readthedocs.org/en/latest/MANUAL.html |
| 54 | ------------------------------------------------------------------------- |
| 55 | EOF |
| 56 | } |
| 57 | |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 58 | testrargs="" |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 59 | just_pep8=0 |
ghanshyam | f5360ff | 2015-06-29 13:32:01 +0900 | [diff] [blame] | 60 | venv=${VENV:-.venv} |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 61 | with_venv=tools/with_venv.sh |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 62 | serial=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 63 | always_venv=0 |
| 64 | never_venv=0 |
| 65 | no_site_packages=0 |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 66 | debug=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 67 | force=0 |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 68 | coverage=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 69 | wrapper="" |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 70 | config_file="" |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 71 | update=0 |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 72 | |
Masayuki Igawa | afb1143 | 2016-06-02 16:09:50 +0900 | [diff] [blame] | 73 | deprecation_warning |
| 74 | |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 75 | if ! options=$(getopt -o VNnfuctphd -l virtual-env,no-virtual-env,no-site-packages,force,update,serial,coverage,pep8,help,debug -- "$@") |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 76 | then |
| 77 | # parse error |
| 78 | usage |
| 79 | exit 1 |
| 80 | fi |
| 81 | |
| 82 | eval set -- $options |
| 83 | first_uu=yes |
| 84 | while [ $# -gt 0 ]; do |
| 85 | case "$1" in |
| 86 | -h|--help) usage; exit;; |
| 87 | -V|--virtual-env) always_venv=1; never_venv=0;; |
| 88 | -N|--no-virtual-env) always_venv=0; never_venv=1;; |
| 89 | -n|--no-site-packages) no_site_packages=1;; |
| 90 | -f|--force) force=1;; |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 91 | -u|--update) update=1;; |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 92 | -d|--debug) debug=1;; |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 93 | -p|--pep8) let just_pep8=1;; |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 94 | -c|--coverage) coverage=1;; |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 95 | -t|--serial) serial=1;; |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 96 | --) [ "yes" == "$first_uu" ] || testrargs="$testrargs $1"; first_uu=no ;; |
Matthew Treinish | a74f5d4 | 2014-02-07 20:25:44 -0500 | [diff] [blame] | 97 | *) testrargs="$testrargs $1";; |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 98 | esac |
| 99 | shift |
| 100 | done |
| 101 | |
Mitsuhiko Yamazaki | 46818aa | 2013-04-18 17:49:17 +0900 | [diff] [blame] | 102 | |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 103 | cd `dirname "$0"` |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 104 | |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 105 | if [ $no_site_packages -eq 1 ]; then |
| 106 | installvenvopts="--no-site-packages" |
| 107 | fi |
Sean Dague | 422af97 | 2012-11-16 07:30:43 -0500 | [diff] [blame] | 108 | |
Matthew Treinish | 87af1bb | 2013-06-17 15:29:10 -0400 | [diff] [blame] | 109 | function testr_init { |
| 110 | if [ ! -d .testrepository ]; then |
| 111 | ${wrapper} testr init |
| 112 | fi |
| 113 | } |
| 114 | |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 115 | function run_tests { |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 116 | testr_init |
| 117 | ${wrapper} find . -type f -name "*.pyc" -delete |
Matthew Treinish | 17520e4 | 2014-01-05 13:02:23 -0500 | [diff] [blame] | 118 | export OS_TEST_PATH=./tempest/tests |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 119 | if [ $debug -eq 1 ]; then |
| 120 | if [ "$testrargs" = "" ]; then |
| 121 | testrargs="discover ./tempest/tests" |
| 122 | fi |
| 123 | ${wrapper} python -m testtools.run $testrargs |
| 124 | return $? |
| 125 | fi |
| 126 | |
Matthew Treinish | 95817e0 | 2014-02-11 19:29:48 +0000 | [diff] [blame] | 127 | if [ $coverage -eq 1 ]; then |
| 128 | ${wrapper} python setup.py test --coverage |
| 129 | return $? |
| 130 | fi |
| 131 | |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 132 | if [ $serial -eq 1 ]; then |
John Warren | 26ce921 | 2015-12-03 13:15:05 -0500 | [diff] [blame] | 133 | ${wrapper} testr run --subunit $testrargs | ${wrapper} subunit-trace -n -f |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 134 | else |
John Warren | 26ce921 | 2015-12-03 13:15:05 -0500 | [diff] [blame] | 135 | ${wrapper} testr run --parallel --subunit $testrargs | ${wrapper} subunit-trace -n -f |
Matthew Treinish | 87af1bb | 2013-06-17 15:29:10 -0400 | [diff] [blame] | 136 | fi |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 137 | } |
| 138 | |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 139 | function run_pep8 { |
Kui Shi | b1b7c71 | 2013-08-23 06:40:05 +0800 | [diff] [blame] | 140 | echo "Running flake8 ..." |
| 141 | if [ $never_venv -eq 1 ]; then |
| 142 | echo "**WARNING**:" >&2 |
| 143 | echo "Running flake8 without virtual env may miss OpenStack HACKING detection" >&2 |
| 144 | fi |
Monty Taylor | b2ca5ca | 2013-04-28 18:00:21 -0700 | [diff] [blame] | 145 | ${wrapper} flake8 |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 146 | } |
| 147 | |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 148 | if [ $never_venv -eq 0 ] |
| 149 | then |
| 150 | # Remove the virtual environment if --force used |
| 151 | if [ $force -eq 1 ]; then |
| 152 | echo "Cleaning virtualenv..." |
| 153 | rm -rf ${venv} |
| 154 | fi |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 155 | if [ $update -eq 1 ]; then |
| 156 | echo "Updating virtualenv..." |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 157 | virtualenv $installvenvopts $venv |
| 158 | $venv/bin/pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 159 | fi |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 160 | if [ -e ${venv} ]; then |
| 161 | wrapper="${with_venv}" |
| 162 | else |
| 163 | if [ $always_venv -eq 1 ]; then |
| 164 | # Automatically install the virtualenv |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 165 | virtualenv $installvenvopts $venv |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 166 | wrapper="${with_venv}" |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 167 | ${wrapper} pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 168 | else |
| 169 | echo -e "No virtual environment found...create one? (Y/n) \c" |
| 170 | read use_ve |
| 171 | if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then |
| 172 | # Install the virtualenv and run the test suite in it |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 173 | virtualenv $installvenvopts $venv |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 174 | wrapper=${with_venv} |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 175 | ${wrapper} pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 176 | fi |
| 177 | fi |
| 178 | fi |
| 179 | fi |
| 180 | |
Matthew Treinish | 0cc26b6 | 2013-01-03 18:07:09 -0500 | [diff] [blame] | 181 | if [ $just_pep8 -eq 1 ]; then |
| 182 | run_pep8 |
| 183 | exit |
| 184 | fi |
| 185 | |
Matthew Treinish | 17520e4 | 2014-01-05 13:02:23 -0500 | [diff] [blame] | 186 | run_tests |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 187 | retval=$? |
Matthew Treinish | d15705b | 2012-10-16 14:04:48 -0400 | [diff] [blame] | 188 | |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 189 | if [ -z "$testrargs" ]; then |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 190 | run_pep8 |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 191 | fi |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 192 | |
| 193 | exit $retval |