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 | |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 20 | testrargs="" |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 21 | just_pep8=0 |
ghanshyam | f5360ff | 2015-06-29 13:32:01 +0900 | [diff] [blame] | 22 | venv=${VENV:-.venv} |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 23 | with_venv=tools/with_venv.sh |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 24 | serial=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 25 | always_venv=0 |
| 26 | never_venv=0 |
| 27 | no_site_packages=0 |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 28 | debug=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 29 | force=0 |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 30 | coverage=0 |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 31 | wrapper="" |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 32 | config_file="" |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 33 | update=0 |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 34 | |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 35 | 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] | 36 | then |
| 37 | # parse error |
| 38 | usage |
| 39 | exit 1 |
| 40 | fi |
| 41 | |
| 42 | eval set -- $options |
| 43 | first_uu=yes |
| 44 | while [ $# -gt 0 ]; do |
| 45 | case "$1" in |
| 46 | -h|--help) usage; exit;; |
| 47 | -V|--virtual-env) always_venv=1; never_venv=0;; |
| 48 | -N|--no-virtual-env) always_venv=0; never_venv=1;; |
| 49 | -n|--no-site-packages) no_site_packages=1;; |
| 50 | -f|--force) force=1;; |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 51 | -u|--update) update=1;; |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 52 | -d|--debug) debug=1;; |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 53 | -p|--pep8) let just_pep8=1;; |
Matthew Treinish | ab836be | 2014-01-11 14:34:58 -0500 | [diff] [blame] | 54 | -c|--coverage) coverage=1;; |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 55 | -t|--serial) serial=1;; |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 56 | --) [ "yes" == "$first_uu" ] || testrargs="$testrargs $1"; first_uu=no ;; |
Matthew Treinish | a74f5d4 | 2014-02-07 20:25:44 -0500 | [diff] [blame] | 57 | *) testrargs="$testrargs $1";; |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 58 | esac |
| 59 | shift |
| 60 | done |
| 61 | |
Mitsuhiko Yamazaki | 46818aa | 2013-04-18 17:49:17 +0900 | [diff] [blame] | 62 | |
Attila Fazekas | a63a999 | 2013-02-14 16:44:37 +0100 | [diff] [blame] | 63 | cd `dirname "$0"` |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 64 | |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 65 | if [ $no_site_packages -eq 1 ]; then |
| 66 | installvenvopts="--no-site-packages" |
| 67 | fi |
Sean Dague | 422af97 | 2012-11-16 07:30:43 -0500 | [diff] [blame] | 68 | |
Matthew Treinish | 87af1bb | 2013-06-17 15:29:10 -0400 | [diff] [blame] | 69 | function testr_init { |
| 70 | if [ ! -d .testrepository ]; then |
| 71 | ${wrapper} testr init |
| 72 | fi |
| 73 | } |
| 74 | |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 75 | function run_tests { |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 76 | testr_init |
| 77 | ${wrapper} find . -type f -name "*.pyc" -delete |
Matthew Treinish | 17520e4 | 2014-01-05 13:02:23 -0500 | [diff] [blame] | 78 | export OS_TEST_PATH=./tempest/tests |
Matthew Treinish | 1b1eb64 | 2014-01-21 19:38:47 +0000 | [diff] [blame] | 79 | if [ $debug -eq 1 ]; then |
| 80 | if [ "$testrargs" = "" ]; then |
| 81 | testrargs="discover ./tempest/tests" |
| 82 | fi |
| 83 | ${wrapper} python -m testtools.run $testrargs |
| 84 | return $? |
| 85 | fi |
| 86 | |
Matthew Treinish | 95817e0 | 2014-02-11 19:29:48 +0000 | [diff] [blame] | 87 | if [ $coverage -eq 1 ]; then |
| 88 | ${wrapper} python setup.py test --coverage |
| 89 | return $? |
| 90 | fi |
| 91 | |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 92 | if [ $serial -eq 1 ]; then |
John Warren | 26ce921 | 2015-12-03 13:15:05 -0500 | [diff] [blame] | 93 | ${wrapper} testr run --subunit $testrargs | ${wrapper} subunit-trace -n -f |
Matthew Treinish | 49f4036 | 2013-08-27 16:02:53 -0400 | [diff] [blame] | 94 | else |
John Warren | 26ce921 | 2015-12-03 13:15:05 -0500 | [diff] [blame] | 95 | ${wrapper} testr run --parallel --subunit $testrargs | ${wrapper} subunit-trace -n -f |
Matthew Treinish | 87af1bb | 2013-06-17 15:29:10 -0400 | [diff] [blame] | 96 | fi |
Justin Shepherd | 0d9bbd1 | 2011-08-11 12:57:44 -0500 | [diff] [blame] | 97 | } |
| 98 | |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 99 | function run_pep8 { |
Kui Shi | b1b7c71 | 2013-08-23 06:40:05 +0800 | [diff] [blame] | 100 | echo "Running flake8 ..." |
| 101 | if [ $never_venv -eq 1 ]; then |
| 102 | echo "**WARNING**:" >&2 |
| 103 | echo "Running flake8 without virtual env may miss OpenStack HACKING detection" >&2 |
| 104 | fi |
Monty Taylor | b2ca5ca | 2013-04-28 18:00:21 -0700 | [diff] [blame] | 105 | ${wrapper} flake8 |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 106 | } |
| 107 | |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 108 | if [ $never_venv -eq 0 ] |
| 109 | then |
| 110 | # Remove the virtual environment if --force used |
| 111 | if [ $force -eq 1 ]; then |
| 112 | echo "Cleaning virtualenv..." |
| 113 | rm -rf ${venv} |
| 114 | fi |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 115 | if [ $update -eq 1 ]; then |
| 116 | echo "Updating virtualenv..." |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 117 | virtualenv $installvenvopts $venv |
| 118 | $venv/bin/pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8f42d3b | 2013-02-15 13:24:05 -0500 | [diff] [blame] | 119 | fi |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 120 | if [ -e ${venv} ]; then |
| 121 | wrapper="${with_venv}" |
| 122 | else |
| 123 | if [ $always_venv -eq 1 ]; then |
| 124 | # Automatically install the virtualenv |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 125 | virtualenv $installvenvopts $venv |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 126 | wrapper="${with_venv}" |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 127 | ${wrapper} pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 128 | else |
| 129 | echo -e "No virtual environment found...create one? (Y/n) \c" |
| 130 | read use_ve |
| 131 | if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then |
| 132 | # Install the virtualenv and run the test suite in it |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 133 | virtualenv $installvenvopts $venv |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 134 | wrapper=${with_venv} |
Matthew Treinish | 72e8376 | 2016-01-20 20:19:23 -0500 | [diff] [blame] | 135 | ${wrapper} pip install -U -r requirements.txt -r test-requirements.txt |
Matthew Treinish | 8e937d7 | 2012-12-14 11:11:41 -0500 | [diff] [blame] | 136 | fi |
| 137 | fi |
| 138 | fi |
| 139 | fi |
| 140 | |
Matthew Treinish | 0cc26b6 | 2013-01-03 18:07:09 -0500 | [diff] [blame] | 141 | if [ $just_pep8 -eq 1 ]; then |
| 142 | run_pep8 |
| 143 | exit |
| 144 | fi |
| 145 | |
Matthew Treinish | 17520e4 | 2014-01-05 13:02:23 -0500 | [diff] [blame] | 146 | run_tests |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 147 | retval=$? |
Matthew Treinish | d15705b | 2012-10-16 14:04:48 -0400 | [diff] [blame] | 148 | |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 149 | if [ -z "$testrargs" ]; then |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 150 | run_pep8 |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 151 | fi |
Giulio Fidente | 1e50b3b | 2013-06-03 15:00:54 +0200 | [diff] [blame] | 152 | |
| 153 | exit $retval |