20885: Clean up run-tests Python install env
[arvados.git] / build / run-tests.sh
1 #!/bin/bash
2 # Copyright (C) The Arvados Authors. All rights reserved.
3 #
4 # SPDX-License-Identifier: AGPL-3.0
5
6 COLUMNS=80
7 . `dirname "$(readlink -f "$0")"`/run-library.sh
8
9 read -rd "\000" helpmessage <<EOF
10 $(basename $0): Install and test Arvados components.
11
12 Exit non-zero if any tests fail.
13
14 Syntax:
15         $(basename $0) WORKSPACE=/path/to/arvados [options]
16
17 Options:
18
19 --skip FOO     Do not test the FOO component.
20 --skip sanity  Skip initial dev environment sanity checks.
21 --skip install Do not run any install steps. Just run tests.
22                You should provide GOPATH, GEMHOME, and VENVDIR options
23                from a previous invocation if you use this option.
24 --only FOO     Do not test anything except the FOO component.
25 --temp DIR     Install components and dependencies under DIR instead of
26                making a new temporary directory. Implies --leave-temp.
27 --leave-temp   Do not remove GOPATH, virtualenv, and other temp dirs at exit.
28                Instead, show the path to give as --temp to reuse them in
29                subsequent invocations.
30 --repeat N     Repeat each install/test step until it succeeds N times.
31 --retry        Prompt to retry if an install or test suite fails.
32 --only-install Run specific install step
33 --short        Skip (or scale down) some slow tests.
34 --interactive  Set up, then prompt for test/install steps to perform.
35 WORKSPACE=path Arvados source tree to test.
36 CONFIGSRC=path Dir with config.yml file containing PostgreSQL section for use by tests.
37 services/api_test="TEST=test/functional/arvados/v1/collections_controller_test.rb"
38                Restrict apiserver tests to the given file
39 sdk/python_test="--test-suite tests.test_keep_locator"
40                Restrict Python SDK tests to the given class
41 apps/workbench_test="TEST=test/integration/pipeline_instances_test.rb"
42                Restrict Workbench tests to the given file
43 services/githttpd_test="-check.vv"
44                Show all log messages, even when tests pass (also works
45                with services/keepstore_test etc.)
46 ARVADOS_DEBUG=1
47                Print more debug messages
48 envvar=value   Set \$envvar to value. Primarily useful for WORKSPACE,
49                *_test, and other examples shown above.
50
51 Assuming "--skip install" is not given, all components are installed
52 into \$GOPATH, \$VENDIR, and \$GEMHOME before running any tests. Many
53 test suites depend on other components being installed, and installing
54 everything tends to be quicker than debugging dependencies.
55
56 As a special concession to the current CI server config, CONFIGSRC
57 defaults to $HOME/arvados-api-server if that directory exists.
58
59 More information and background:
60
61 https://dev.arvados.org/projects/arvados/wiki/Running_tests
62
63 Available tests:
64
65 apps/workbench (*)
66 apps/workbench_units (*)
67 apps/workbench_functionals (*)
68 apps/workbench_integration (*)
69 apps/workbench_benchmark
70 apps/workbench_profile
71 cmd/arvados-client
72 cmd/arvados-package
73 cmd/arvados-server
74 doc
75 lib/cli
76 lib/cmd
77 lib/controller
78 lib/controller/federation
79 lib/controller/railsproxy
80 lib/controller/router
81 lib/controller/rpc
82 lib/crunchstat
83 lib/crunch-run
84 lib/cloud
85 lib/cloud/azure
86 lib/cloud/cloudtest
87 lib/dispatchcloud
88 lib/dispatchcloud/container
89 lib/dispatchcloud/scheduler
90 lib/dispatchcloud/sshexecutor
91 lib/dispatchcloud/worker
92 lib/mount
93 lib/pam
94 lib/service
95 services/api
96 services/githttpd
97 services/dockercleaner
98 services/fuse
99 services/fuse:py3
100 services/health
101 services/keep-web
102 services/keepproxy
103 services/keepstore
104 services/keep-balance
105 services/login-sync
106 services/crunch-dispatch-local
107 services/crunch-dispatch-slurm
108 services/ws
109 sdk/cli
110 sdk/python
111 sdk/python:py3
112 sdk/ruby-google-api-client
113 sdk/ruby
114 sdk/go/arvados
115 sdk/go/arvadosclient
116 sdk/go/auth
117 sdk/go/dispatch
118 sdk/go/keepclient
119 sdk/go/health
120 sdk/go/httpserver
121 sdk/go/manifest
122 sdk/go/blockdigest
123 sdk/go/asyncbuf
124 sdk/go/stats
125 sdk/go/crunchrunner
126 sdk/cwl:py3
127 sdk/R
128 sdk/java-v2
129 tools/sync-groups
130 tools/crunchstat-summary
131 tools/crunchstat-summary:py3
132 tools/keep-exercise
133 tools/keep-rsync
134 tools/keep-block-check
135
136 (*) apps/workbench is shorthand for apps/workbench_units +
137     apps/workbench_functionals + apps/workbench_integration
138
139 EOF
140
141 # First make sure to remove any ARVADOS_ variables from the calling
142 # environment that could interfere with the tests.
143 unset $(env | cut -d= -f1 | grep \^ARVADOS_)
144
145 # Reset other variables that could affect our [tests'] behavior by
146 # accident.
147 GITDIR=
148 GOPATH=
149 VENVDIR=
150 VENV3DIR=
151 PYTHONPATH=
152 GEMHOME=
153 R_LIBS=
154 export LANG=en_US.UTF-8
155
156 short=
157 only_install=
158 temp=
159 temp_preserve=
160
161 ignore_sigint=
162
163 clear_temp() {
164     if [[ -z "$temp" ]]; then
165         # we did not even get as far as making a temp dir
166         :
167     elif [[ -z "$temp_preserve" ]]; then
168         # Go creates readonly dirs in the module cache, which cause
169         # "rm -rf" to fail unless we chmod first.
170         chmod -R u+w "$temp"
171         rm -rf "$temp"
172     else
173         echo "Leaving behind temp dirs in $temp"
174     fi
175 }
176
177 fatal() {
178     clear_temp
179     echo >&2 "Fatal: $* (encountered in ${FUNCNAME[1]} at ${BASH_SOURCE[1]} line ${BASH_LINENO[0]})"
180     exit 1
181 }
182
183 exit_cleanly() {
184     trap - INT
185     if which create-plot-data-from-log.sh >/dev/null; then
186         create-plot-data-from-log.sh $BUILD_NUMBER "$WORKSPACE/apps/workbench/log/test.log" "$WORKSPACE/apps/workbench/log/"
187     fi
188     rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
189     stop_services
190     rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
191     report_outcomes
192     clear_temp
193     exit ${#failures}
194 }
195
196 sanity_checks() {
197     [[ -n "${skip[sanity]}" ]] && return 0
198     ( [[ -n "$WORKSPACE" ]] && [[ -d "$WORKSPACE/services" ]] ) \
199         || fatal "WORKSPACE environment variable not set to a source directory (see: $0 --help)"
200     [[ -z "$CONFIGSRC" ]] || [[ -s "$CONFIGSRC/config.yml" ]] \
201         || fatal "CONFIGSRC is $CONFIGSRC but '$CONFIGSRC/config.yml' is empty or not found (see: $0 --help)"
202     echo Checking dependencies:
203     echo "locale: ${LANG}"
204     [[ "$(locale charmap)" = "UTF-8" ]] \
205         || fatal "Locale '${LANG}' is broken/missing. Try: echo ${LANG} | sudo tee -a /etc/locale.gen && sudo locale-gen"
206     echo -n 'ruby: '
207     ruby -v \
208         || fatal "No ruby. Install >=2.1.9 (using rbenv, rvm, or source)"
209     echo -n 'go: '
210     go version \
211         || fatal "No go binary. See http://golang.org/doc/install"
212     [[ $(go version) =~ go1.([0-9]+) ]] && [[ ${BASH_REMATCH[1]} -ge 12 ]] \
213         || fatal "Go >= 1.12 required. See http://golang.org/doc/install"
214     echo -n 'gcc: '
215     gcc --version | egrep ^gcc \
216         || fatal "No gcc. Try: apt-get install build-essential"
217     echo -n 'fuse.h: '
218     find /usr/include -path '*fuse/fuse.h' | egrep --max-count=1 . \
219         || fatal "No fuse/fuse.h. Try: apt-get install libfuse-dev"
220     echo -n 'gnutls.h: '
221     find /usr/include -path '*gnutls/gnutls.h' | egrep --max-count=1 . \
222         || fatal "No gnutls/gnutls.h. Try: apt-get install libgnutls28-dev"
223     echo -n 'virtualenv: '
224     python3 -m venv -h | egrep --max-count=1 . \
225         || fatal "No virtualenv. Try: apt-get install python3-venv"
226     echo -n 'Python3 pyconfig.h: '
227     find /usr/include -path '*/python3*/pyconfig.h' | egrep --max-count=1 . \
228         || fatal "No Python3 pyconfig.h. Try: apt-get install python3-dev"
229     which netstat \
230         || fatal "No netstat. Try: apt-get install net-tools"
231     echo -n 'nginx: '
232     PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" nginx -v \
233         || fatal "No nginx. Try: apt-get install nginx"
234     echo -n 'gitolite: '
235     which gitolite \
236         || fatal "No gitolite. Try: apt-get install gitolite3"
237     echo -n 'npm: '
238     npm --version \
239         || fatal "No npm. Try: wget -O- https://nodejs.org/dist/v10.23.1/node-v10.23.1-linux-x64.tar.xz | sudo tar -C /usr/local -xJf - && sudo ln -s ../node-v10.23.1-linux-x64/bin/{node,npm} /usr/local/bin/"
240     echo -n 'cadaver: '
241     cadaver --version | grep -w cadaver \
242           || fatal "No cadaver. Try: apt-get install cadaver"
243     echo -n 'libattr1 xattr.h: '
244     find /usr/include -path '*/attr/xattr.h' | egrep --max-count=1 . \
245         || fatal "No libattr1 xattr.h. Try: apt-get install libattr1-dev"
246     echo -n 'libcurl curl.h: '
247     find /usr/include -path '*/curl/curl.h' | egrep --max-count=1 . \
248         || fatal "No libcurl curl.h. Try: apt-get install libcurl4-gnutls-dev"
249     echo -n 'libpq libpq-fe.h: '
250     find /usr/include -path '*/postgresql/libpq-fe.h' | egrep --max-count=1 . \
251         || fatal "No libpq libpq-fe.h. Try: apt-get install libpq-dev"
252     echo -n 'libpam pam_appl.h: '
253     find /usr/include -path '*/security/pam_appl.h' | egrep --max-count=1 . \
254         || fatal "No libpam pam_appl.h. Try: apt-get install libpam0g-dev"
255     echo -n 'postgresql: '
256     psql --version || fatal "No postgresql. Try: apt-get install postgresql postgresql-client-common"
257     echo -n 'phantomjs: '
258     phantomjs --version || fatal "No phantomjs. Try: apt-get install phantomjs"
259     echo -n 'xvfb: '
260     which Xvfb || fatal "No xvfb. Try: apt-get install xvfb"
261     echo -n 'graphviz: '
262     dot -V || fatal "No graphviz. Try: apt-get install graphviz"
263     echo -n 'geckodriver: '
264     geckodriver --version | grep ^geckodriver || echo "No geckodriver. Try: arvados-server install"
265     echo -n 'singularity: '
266     singularity --version || fatal "No singularity. Try: arvados-server install"
267     echo -n 'docker client: '
268     docker --version || echo "No docker client. Try: arvados-server install"
269     echo -n 'docker server: '
270     docker info --format='{{.ServerVersion}}' || echo "No docker server. Try: arvados-server install"
271
272     if [[ "$NEED_SDK_R" = true ]]; then
273       # R SDK stuff
274       echo -n 'R: '
275       which Rscript || fatal "No Rscript. Try: apt-get install r-base"
276       echo -n 'testthat: '
277       Rscript -e "library('testthat')" || fatal "No testthat. Try: apt-get install r-cran-testthat"
278       # needed for roxygen2, needed for devtools, needed for R sdk
279       pkg-config --exists libxml-2.0 || fatal "No libxml2. Try: apt-get install libxml2-dev"
280       # needed for pkgdown, builds R SDK doc pages
281       which pandoc || fatal "No pandoc. Try: apt-get install pandoc"
282     fi
283     echo 'procs with /dev/fuse open:'
284     find /proc/*/fd -lname /dev/fuse 2>/dev/null | cut -d/ -f3 | xargs --no-run-if-empty ps -lywww
285     echo 'grep fuse /proc/self/mountinfo:'
286     grep fuse /proc/self/mountinfo
287 }
288
289 rotate_logfile() {
290   # i.e.  rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
291   # $BUILD_NUMBER is set by Jenkins if this script is being called as part of a Jenkins run
292   if [[ -f "$1/$2" ]]; then
293     THEDATE=`date +%Y%m%d%H%M%S`
294     mv "$1/$2" "$1/$THEDATE-$BUILD_NUMBER-$2"
295     gzip "$1/$THEDATE-$BUILD_NUMBER-$2"
296   fi
297 }
298
299 declare -a failures
300 declare -A skip
301 declare -A only
302 declare -A testargs
303 skip[apps/workbench_profile]=1
304
305 while [[ -n "$1" ]]
306 do
307     arg="$1"; shift
308     case "$arg" in
309         --help)
310             echo >&2 "$helpmessage"
311             echo >&2
312             exit 1
313             ;;
314         --skip)
315             skip[$1]=1; shift
316             ;;
317         --only)
318             only[$1]=1; skip[$1]=""; shift
319             ;;
320         --short)
321             short=1
322             ;;
323         --interactive)
324             interactive=1
325             ;;
326         --skip-install)
327             skip[install]=1
328             ;;
329         --only-install)
330             only_install="$1"; shift
331             ;;
332         --temp)
333             temp="$1"; shift
334             temp_preserve=1
335             ;;
336         --leave-temp)
337             temp_preserve=1
338             ;;
339         --repeat)
340             repeat=$((${1}+0)); shift
341             ;;
342         --retry)
343             retry=1
344             ;;
345         *_test=*)
346             suite="${arg%%_test=*}"
347             args="${arg#*=}"
348             testargs["$suite"]="$args"
349             ;;
350         *=*)
351             eval export $(echo $arg | cut -d= -f1)=\"$(echo $arg | cut -d= -f2-)\"
352             ;;
353         *)
354             echo >&2 "$0: Unrecognized option: '$arg'. Try: $0 --help"
355             exit 1
356             ;;
357     esac
358 done
359
360 # R SDK installation is very slow (~360s in a clean environment) and only
361 # required when testing it. Skip that step if it is not needed.
362 NEED_SDK_R=true
363
364 if [[ ${#only[@]} -ne 0 ]] &&
365    [[ -z "${only['sdk/R']}" && -z "${only['doc']}" ]]; then
366   NEED_SDK_R=false
367 fi
368
369 if [[ ${skip["sdk/R"]} == 1 && ${skip["doc"]} == 1 ]]; then
370   NEED_SDK_R=false
371 fi
372
373 if [[ $NEED_SDK_R == false ]]; then
374         echo "R SDK not needed, it will not be installed."
375 fi
376
377 checkpidfile() {
378     svc="$1"
379     pid="$(cat "$WORKSPACE/tmp/${svc}.pid")"
380     if [[ -z "$pid" ]] || ! kill -0 "$pid"; then
381         tail $WORKSPACE/tmp/${1}*.log
382         echo "${svc} pid ${pid} not running"
383         return 1
384     fi
385     echo "${svc} pid ${pid} ok"
386 }
387
388 checkhealth() {
389     svc="$1"
390     base=$("${VENV3DIR}/bin/python3" -c "import yaml; print(list(yaml.safe_load(open('$ARVADOS_CONFIG','r'))['Clusters']['zzzzz']['Services']['$1']['InternalURLs'].keys())[0])")
391     url="$base/_health/ping"
392     if ! curl -Ss -H "Authorization: Bearer e687950a23c3a9bceec28c6223a06c79" "${url}" | tee -a /dev/stderr | grep '"OK"'; then
393         echo "${url} failed"
394         return 1
395     fi
396 }
397
398 checkdiscoverydoc() {
399     dd="https://${1}/discovery/v1/apis/arvados/v1/rest"
400     if ! (set -o pipefail; curl -fsk "$dd" | grep -q ^{ ); then
401         echo >&2 "ERROR: could not retrieve discovery doc from RailsAPI at $dd"
402         tail -v $WORKSPACE/tmp/railsapi.log
403         return 1
404     fi
405     echo "${dd} ok"
406 }
407
408 start_services() {
409     if [[ -n "$ARVADOS_TEST_API_HOST" ]]; then
410         return 0
411     fi
412     . "$VENV3DIR/bin/activate"
413     echo 'Starting API, controller, keepproxy, keep-web, githttpd, ws, and nginx ssl proxy...'
414     if [[ ! -d "$WORKSPACE/services/api/log" ]]; then
415         mkdir -p "$WORKSPACE/services/api/log"
416     fi
417     # Remove empty api.pid file if it exists
418     if [[ -f "$WORKSPACE/tmp/api.pid" && ! -s "$WORKSPACE/tmp/api.pid" ]]; then
419         rm -f "$WORKSPACE/tmp/api.pid"
420     fi
421     all_services_stopped=
422     fail=1
423
424     cd "$WORKSPACE" \
425         && eval $(python3 sdk/python/tests/run_test_server.py start --auth admin) \
426         && export ARVADOS_TEST_API_HOST="$ARVADOS_API_HOST" \
427         && export ARVADOS_TEST_API_INSTALLED="$$" \
428         && checkpidfile api \
429         && checkdiscoverydoc $ARVADOS_API_HOST \
430         && eval $(python3 sdk/python/tests/run_test_server.py start_nginx) \
431         && checkpidfile nginx \
432         && python3 sdk/python/tests/run_test_server.py start_controller \
433         && checkpidfile controller \
434         && checkhealth Controller \
435         && checkdiscoverydoc $ARVADOS_API_HOST \
436         && python3 sdk/python/tests/run_test_server.py start_keep_proxy \
437         && checkpidfile keepproxy \
438         && python3 sdk/python/tests/run_test_server.py start_keep-web \
439         && checkpidfile keep-web \
440         && checkhealth WebDAV \
441         && python3 sdk/python/tests/run_test_server.py start_githttpd \
442         && checkpidfile githttpd \
443         && checkhealth GitHTTP \
444         && python3 sdk/python/tests/run_test_server.py start_ws \
445         && checkpidfile ws \
446         && export ARVADOS_TEST_PROXY_SERVICES=1 \
447         && (env | egrep ^ARVADOS) \
448         && fail=0
449     deactivate
450     if [[ $fail != 0 ]]; then
451         unset ARVADOS_TEST_API_HOST
452     fi
453     return $fail
454 }
455
456 stop_services() {
457     if [[ -n "$all_services_stopped" ]]; then
458         return
459     fi
460     unset ARVADOS_TEST_API_HOST ARVADOS_TEST_PROXY_SERVICES
461     . "$VENV3DIR/bin/activate" || return
462     cd "$WORKSPACE" \
463         && python3 sdk/python/tests/run_test_server.py stop_nginx \
464         && python3 sdk/python/tests/run_test_server.py stop_githttpd \
465         && python3 sdk/python/tests/run_test_server.py stop_ws \
466         && python3 sdk/python/tests/run_test_server.py stop_keep-web \
467         && python3 sdk/python/tests/run_test_server.py stop_keep_proxy \
468         && python3 sdk/python/tests/run_test_server.py stop_controller \
469         && python3 sdk/python/tests/run_test_server.py stop \
470         && all_services_stopped=1
471     deactivate
472     unset ARVADOS_CONFIG
473 }
474
475 interrupt() {
476     if [[ -n "$ignore_sigint" ]]; then
477         echo >&2 "ignored SIGINT"
478         return
479     fi
480     failures+=("($(basename $0) interrupted)")
481     exit_cleanly
482 }
483 trap interrupt INT
484
485 setup_ruby_environment() {
486     if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
487         source "$HOME/.rvm/scripts/rvm"
488         using_rvm=true
489     elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
490         source "/usr/local/rvm/scripts/rvm"
491         using_rvm=true
492     else
493         using_rvm=false
494     fi
495
496     if [[ "$using_rvm" == true ]]; then
497         # If rvm is in use, we can't just put separate "dependencies"
498         # and "gems-under-test" paths to GEM_PATH: passenger resets
499         # the environment to the "current gemset", which would lose
500         # our GEM_PATH and prevent our test suites from running ruby
501         # programs (for example, the Workbench test suite could not
502         # boot an API server or run arv). Instead, we have to make an
503         # rvm gemset and use it for everything.
504
505         [[ `type rvm | head -n1` == "rvm is a function" ]] \
506             || fatal 'rvm check'
507
508         # Put rvm's favorite path back in first place (overriding
509         # virtualenv, which just put itself there). Ignore rvm's
510         # complaint about not being in first place already.
511         rvm use @default 2>/dev/null
512
513         # Create (if needed) and switch to an @arvados-tests-* gemset,
514         # salting the gemset name so it doesn't interfere with
515         # concurrent builds in other workspaces. Leave the choice of
516         # ruby to the caller.
517         gemset="arvados-tests-$(echo -n "${WORKSPACE}" | md5sum | head -c16)"
518         rvm use "@${gemset}" --create \
519             || fatal 'rvm gemset setup'
520
521         rvm env
522         (bundle version | grep -q 2.2.19) || gem install --no-document bundler -v 2.2.19
523         bundle="$(which bundle)"
524         echo "$bundle"
525         "$bundle" version | grep 2.2.19 || fatal 'install bundler'
526     else
527         # When our "bundle install"s need to install new gems to
528         # satisfy dependencies, we want them to go where "gem install
529         # --user-install" would put them. (However, if the caller has
530         # already set GEM_HOME, we assume that's where dependencies
531         # should be installed, and we should leave it alone.)
532
533         if [ -z "$GEM_HOME" ]; then
534             user_gempath="$(gem env gempath)"
535             export GEM_HOME="${user_gempath%%:*}"
536         fi
537         PATH="$(gem env gemdir)/bin:$PATH"
538
539         # When we build and install our own gems, we install them in our
540         # $GEMHOME tmpdir, and we want them to be at the front of GEM_PATH and
541         # PATH so integration tests prefer them over other versions that
542         # happen to be installed in $user_gempath, system dirs, etc.
543
544         tmpdir_gem_home="$(env - PATH="$PATH" HOME="$GEMHOME" gem env gempath | cut -f1 -d:)"
545         PATH="$tmpdir_gem_home/bin:$PATH"
546         export GEM_PATH="$tmpdir_gem_home:$(gem env gempath)"
547
548         echo "Will install dependencies to $(gem env gemdir)"
549         echo "Will install bundler and arvados gems to $tmpdir_gem_home"
550         echo "Gem search path is GEM_PATH=$GEM_PATH"
551         bundle="bundle"
552         (
553             export HOME=$GEMHOME
554             versions=(2.2.19)
555             for v in ${versions[@]}; do
556                 if ! gem list --installed --version "${v}" bundler >/dev/null; then
557                     gem install --no-document --user $(for v in ${versions[@]}; do echo bundler:${v}; done)
558                     break
559                 fi
560             done
561             "$bundle" version | tee /dev/stderr | grep -q 'version 2'
562         ) || fatal 'install bundler'
563         if test -d /var/lib/arvados-arvbox/ ; then
564             # Inside arvbox, use bundler-installed binstubs.  The
565             # system bundler and rail's own bin/bundle refuse to work.
566             # I don't know why.
567             bundle=binstubs/bundle
568         fi
569     fi
570 }
571
572 with_test_gemset() {
573     if [[ "$using_rvm" == true ]]; then
574         "$@"
575     else
576         GEM_HOME="$tmpdir_gem_home" GEM_PATH="$tmpdir_gem_home" "$@"
577     fi
578 }
579
580 gem_uninstall_if_exists() {
581     if gem list "$1\$" | egrep '^\w'; then
582         gem uninstall --force --all --executables "$1"
583     fi
584 }
585
586 setup_virtualenv() {
587     local venvdest="$1"; shift
588     if ! [[ -e "$venvdest/bin/activate" ]] || ! [[ -e "$venvdest/bin/pip3" ]]; then
589         python3 -m venv "$@" "$venvdest" || fatal "virtualenv $venvdest failed"
590     elif [[ -n "$short" ]]; then
591         return
592     fi
593     "$venvdest/bin/pip3" install --no-cache-dir 'setuptools>=18.5' 'pip>=7'
594 }
595
596 initialize() {
597     # If dependencies like ruby, go, etc. are installed in
598     # /var/lib/arvados -- presumably by "arvados-server install" --
599     # then we want to use those versions, instead of whatever happens
600     # to be installed in /usr.
601     PATH="/var/lib/arvados/bin:${PATH}"
602     sanity_checks
603
604     echo "WORKSPACE=$WORKSPACE"
605
606     # Clean up .pyc files that may exist in the workspace
607     cd "$WORKSPACE"
608     find -name '*.pyc' -delete
609
610     if [[ -z "$temp" ]]; then
611         temp="$(mktemp -d)"
612     fi
613
614     # Set up temporary install dirs (unless existing dirs were supplied)
615     for tmpdir in VENV3DIR GOPATH GEMHOME R_LIBS
616     do
617         if [[ -z "${!tmpdir}" ]]; then
618             eval "$tmpdir"="$temp/$tmpdir"
619         fi
620         if ! [[ -d "${!tmpdir}" ]]; then
621             mkdir "${!tmpdir}" || fatal "can't create ${!tmpdir} (does $temp exist?)"
622         fi
623     done
624
625     rm -vf "${WORKSPACE}/tmp/*.log"
626
627     export R_LIBS
628
629     export GOPATH
630     # Make sure our compiled binaries under test override anything
631     # else that might be in the environment.
632     export PATH=$GOPATH/bin:$PATH
633
634     # Jenkins config requires that glob tmp/*.log match something. Ensure
635     # that happens even if we don't end up running services that set up
636     # logging.
637     mkdir -p "${WORKSPACE}/tmp/" || fatal "could not mkdir ${WORKSPACE}/tmp"
638     touch "${WORKSPACE}/tmp/controller.log" || fatal "could not touch ${WORKSPACE}/tmp/controller.log"
639
640     unset http_proxy https_proxy no_proxy
641
642     # Note: this must be the last time we change PATH, otherwise rvm will
643     # whine a lot.
644     setup_ruby_environment
645
646     echo "PATH is $PATH"
647 }
648
649 install_env() {
650     go mod download || fatal "Go deps failed"
651     which goimports >/dev/null || go install golang.org/x/tools/cmd/goimports@latest || fatal "Go setup failed"
652
653     setup_virtualenv "$VENV3DIR"
654     . "$VENV3DIR/bin/activate"
655
656     # PyYAML is a test requirement used by run_test_server.py and needed for
657     # other, non-Python tests.
658     # pdoc is needed to build PySDK documentation.
659     # We run `setup.py build` first to generate _version.py.
660     env -C "$WORKSPACE/sdk/python" python3 setup.py build \
661         && python3 -m pip install "$WORKSPACE/sdk/python" \
662         && python3 -m pip install PyYAML pdoc \
663         || fatal "installing Python SDK and related dependencies failed"
664 }
665
666 retry() {
667     remain="${repeat}"
668     while :
669     do
670         if ${@}; then
671             if [[ "$remain" -gt 1 ]]; then
672                 remain=$((${remain}-1))
673                 title "(repeating ${remain} more times)"
674             else
675                 break
676             fi
677         elif [[ "$retry" == 1 ]]; then
678             read -p 'Try again? [Y/n] ' x
679             if [[ "$x" != "y" ]] && [[ "$x" != "" ]]
680             then
681                 break
682             fi
683         else
684             break
685         fi
686     done
687 }
688
689 do_test() {
690     case "${1}" in
691         apps/workbench_units | apps/workbench_functionals | apps/workbench_integration)
692             suite=apps/workbench
693             ;;
694         *)
695             suite="${1}"
696             ;;
697     esac
698     if [[ -n "${skip[$suite]}" || \
699               -n "${skip[$1]}" || \
700               (${#only[@]} -ne 0 && ${only[$suite]} -eq 0 && ${only[$1]} -eq 0) ]]; then
701         return 0
702     fi
703     case "${1}" in
704         services/api)
705             stop_services
706             check_arvados_config "$1"
707             ;;
708         gofmt | doc | lib/cli | lib/cloud/azure | lib/cloud/ec2 | lib/cloud/cloudtest | lib/cmd | lib/dispatchcloud/sshexecutor | lib/dispatchcloud/worker)
709             check_arvados_config "$1"
710             # don't care whether services are running
711             ;;
712         *)
713             check_arvados_config "$1"
714             if ! start_services; then
715                 checkexit 1 "$1 tests"
716                 title "test $1 -- failed to start services"
717                 return 1
718             fi
719             ;;
720     esac
721     retry do_test_once ${@}
722 }
723
724 go_ldflags() {
725     version=${ARVADOS_VERSION:-$(git log -n1 --format=%H)-dev}
726     echo "-X git.arvados.org/arvados.git/lib/cmd.version=${version} -X main.version=${version} -s -w"
727 }
728
729 do_test_once() {
730     unset result
731
732     title "test $1"
733     timer_reset
734
735     result=
736     if which deactivate >/dev/null; then deactivate; fi
737     if ! . "$VENV3DIR/bin/activate"
738     then
739         result=1
740     elif [[ "$2" == "go" ]]
741     then
742         covername="coverage-$(echo "$1" | sed -e 's/\//_/g')"
743         coverflags=("-covermode=count" "-coverprofile=$WORKSPACE/tmp/.$covername.tmp")
744         testflags=()
745         if [[ "$1" == "cmd/arvados-package" ]]; then
746             testflags+=("-timeout" "20m")
747         fi
748         # We do "go install" here to catch compilation errors
749         # before trying "go test". Otherwise, coverage-reporting
750         # mode makes Go show the wrong line numbers when reporting
751         # compilation errors.
752         go install -ldflags "$(go_ldflags)" "$WORKSPACE/$1" && \
753             cd "$WORKSPACE/$1" && \
754             if [[ -n "${testargs[$1]}" ]]
755         then
756             # "go test -check.vv giturl" doesn't work, but this
757             # does:
758             go test ${short:+-short} ${testflags[@]} ${testargs[$1]}
759         else
760             # The above form gets verbose even when testargs is
761             # empty, so use this form in such cases:
762             go test ${short:+-short} ${testflags[@]} ${coverflags[@]} "git.arvados.org/arvados.git/$1"
763         fi
764         result=${result:-$?}
765         if [[ -f "$WORKSPACE/tmp/.$covername.tmp" ]]
766         then
767             go tool cover -html="$WORKSPACE/tmp/.$covername.tmp" -o "$WORKSPACE/tmp/$covername.html"
768             rm "$WORKSPACE/tmp/.$covername.tmp"
769         fi
770         [[ $result = 0 ]] && gofmt -e -d *.go
771     elif [[ "$2" == "pip" ]]
772     then
773         tries=0
774         cd "$WORKSPACE/$1" && while :
775         do
776             tries=$((${tries}+1))
777             # $3 can name a path directory for us to use, including trailing
778             # slash; e.g., the bin/ subdirectory of a virtualenv.
779             if [[ -e "${3}activate" ]]; then
780                 . "${3}activate"
781             fi
782             python setup.py ${short:+--short-tests-only} test ${testargs[$1]}
783             result=$?
784             if [[ ${tries} < 3 && ${result} == 137 ]]
785             then
786                 printf '\n*****\n%s tests killed -- retrying\n*****\n\n' "$1"
787                 continue
788             else
789                 break
790             fi
791         done
792     elif [[ "$2" != "" ]]
793     then
794         "test_$2"
795     else
796         "test_$1"
797     fi
798     result=${result:-$?}
799     checkexit $result "$1 tests"
800     title "test $1 -- `timer`"
801     return $result
802 }
803
804 check_arvados_config() {
805     if [[ "$1" = "env" ]] ; then
806         return
807     fi
808     if [[ -z "$ARVADOS_CONFIG" ]] ; then
809         # Create config file.  The run_test_server script requires PyYAML,
810         # so virtualenv needs to be active.  Downstream steps like
811         # workbench install which require a valid config.yml.
812         if [[ ! -s "$VENV3DIR/bin/activate" ]] ; then
813             install_env
814         fi
815         . "$VENV3DIR/bin/activate"
816         cd "$WORKSPACE"
817         eval $(python3 sdk/python/tests/run_test_server.py setup_config)
818         deactivate
819     fi
820 }
821
822 do_install() {
823     if [[ -n "${skip[install]}" || ( -n "${only_install}" && "${only_install}" != "${1}" && "${only_install}" != "${2}" ) ]]; then
824         return 0
825     fi
826     check_arvados_config "$1"
827     retry do_install_once ${@}
828 }
829
830 do_install_once() {
831     title "install $1"
832     timer_reset
833
834     result=
835     if which deactivate >/dev/null; then deactivate; fi
836     if [[ "$1" != "env" ]] && ! . "$VENV3DIR/bin/activate"; then
837         result=1
838     elif [[ "$2" == "go" ]]
839     then
840         go install -ldflags "$(go_ldflags)" "$WORKSPACE/$1"
841     elif [[ "$2" == "pip" ]]
842     then
843         # $3 can name a path directory for us to use, including trailing
844         # slash; e.g., the bin/ subdirectory of a virtualenv.
845
846         # Need to change to a different directory after creating
847         # the source dist package to avoid a pip bug.
848         # see https://arvados.org/issues/5766 for details.
849
850         # Also need to install twice, because if it believes the package is
851         # already installed, pip it won't install it.  So the first "pip
852         # install" ensures that the dependencies are met, the second "pip
853         # install" ensures that we've actually installed the local package
854         # we just built.
855         cd "$WORKSPACE/$1" \
856             && "${3}python3" setup.py sdist rotate --keep=1 --match .tar.gz \
857             && cd "$WORKSPACE" \
858             && "${3}pip3" install --no-cache-dir "$WORKSPACE/$1/dist"/*.tar.gz \
859             && "${3}pip3" install --no-cache-dir --no-deps --ignore-installed "$WORKSPACE/$1/dist"/*.tar.gz
860     elif [[ "$2" != "" ]]
861     then
862         "install_$2"
863     else
864         "install_$1"
865     fi
866     result=${result:-$?}
867     checkexit $result "$1 install"
868     title "install $1 -- `timer`"
869     return $result
870 }
871
872 bundle_install_trylocal() {
873     (
874         set -e
875         echo "(Running bundle install --local. 'could not find package' messages are OK.)"
876         if ! "$bundle" install --local --no-deployment; then
877             echo "(Running bundle install again, without --local.)"
878             "$bundle" install --no-deployment
879         fi
880         "$bundle" package
881     )
882 }
883
884 install_doc() {
885     cd "$WORKSPACE/doc" \
886         && bundle_install_trylocal \
887         && rm -rf .site
888 }
889
890 install_gem() {
891     gemname=$1
892     srcpath=$2
893     with_test_gemset gem_uninstall_if_exists "$gemname" \
894         && cd "$WORKSPACE/$srcpath" \
895         && bundle_install_trylocal \
896         && gem build "$gemname.gemspec" \
897         && with_test_gemset gem install --no-document $(ls -t "$gemname"-*.gem|head -n1)
898 }
899
900 install_sdk/ruby() {
901     install_gem arvados sdk/ruby
902 }
903
904 install_sdk/ruby-google-api-client() {
905     install_gem arvados-google-api-client sdk/ruby-google-api-client
906 }
907
908 install_sdk/R() {
909   if [[ "$NEED_SDK_R" = true ]]; then
910     cd "$WORKSPACE/sdk/R" \
911        && Rscript --vanilla install_deps.R
912   fi
913 }
914
915 install_sdk/cli() {
916     install_gem arvados-cli sdk/cli
917 }
918
919 install_services/login-sync() {
920     install_gem arvados-google-api-client sdk/ruby-google-api-client
921     install_gem arvados sdk/ruby
922     install_gem arvados-login-sync services/login-sync
923 }
924
925 install_services/api() {
926     stop_services
927     check_arvados_config "services/api"
928     cd "$WORKSPACE/services/api" \
929         && RAILS_ENV=test bundle_install_trylocal \
930             || return 1
931
932     rm -f config/environments/test.rb
933     cp config/environments/test.rb.example config/environments/test.rb
934
935     # Clear out any lingering postgresql connections to the test
936     # database, so that we can drop it. This assumes the current user
937     # is a postgresql superuser.
938     cd "$WORKSPACE/services/api" \
939         && test_database=$("${VENV3DIR}/bin/python3" -c "import yaml; print(yaml.safe_load(open('$ARVADOS_CONFIG','r'))['Clusters']['zzzzz']['PostgreSQL']['Connection']['dbname'])") \
940         && psql "$test_database" -c "SELECT pg_terminate_backend (pg_stat_activity.pid::int) FROM pg_stat_activity WHERE pg_stat_activity.datname = '$test_database';" 2>/dev/null
941
942     mkdir -p "$WORKSPACE/services/api/tmp/pids"
943
944     cert="$WORKSPACE/services/api/tmp/self-signed"
945     if [[ ! -e "$cert.pem" || "$(date -r "$cert.pem" +%s)" -lt 1512659226 ]]; then
946         (
947             dir="$WORKSPACE/services/api/tmp"
948             set -e
949             openssl req -newkey rsa:2048 -nodes -subj '/C=US/ST=State/L=City/CN=localhost' -out "$cert.csr" -keyout "$cert.key" </dev/null
950             openssl x509 -req -in "$cert.csr" -signkey "$cert.key" -out "$cert.pem" -days 3650 -extfile <(printf 'subjectAltName=DNS:localhost,DNS:::1,DNS:0.0.0.0,DNS:127.0.0.1,IP:::1,IP:0.0.0.0,IP:127.0.0.1')
951         ) || return 1
952     fi
953
954     cd "$WORKSPACE/services/api" \
955         && rm -rf tmp/git \
956         && mkdir -p tmp/git \
957         && cd tmp/git \
958         && tar xf ../../test/test.git.tar \
959         && mkdir -p internal.git \
960         && git --git-dir internal.git init \
961             || return 1
962
963     (
964         set -ex
965         cd "$WORKSPACE/services/api"
966         export RAILS_ENV=test
967         if bin/rails db:environment:set ; then
968             bin/rake db:drop
969         fi
970         bin/rake db:setup
971         bin/rake db:fixtures:load
972     ) || return 1
973 }
974
975 declare -a pythonstuff
976 pythonstuff=(
977     sdk/python:py3
978     sdk/cwl:py3
979     services/dockercleaner:py3
980     services/fuse:py3
981     tools/crunchstat-summary:py3
982 )
983
984 declare -a gostuff
985 gostuff=($(cd "$WORKSPACE" && git ls-files | grep '\.go$' | sed -e 's/\/[^\/]*$//' | sort -u))
986
987 install_apps/workbench() {
988     cd "$WORKSPACE/apps/workbench" \
989         && mkdir -p tmp/cache \
990         && RAILS_ENV=test bundle_install_trylocal \
991         && RAILS_ENV=test RAILS_GROUPS=assets "$bundle" exec rake npm:install
992 }
993
994 test_doc() {
995     (
996         set -e
997         cd "$WORKSPACE/doc"
998         ARVADOS_API_HOST=pirca.arvadosapi.com
999         # Make sure python-epydoc is installed or the next line won't
1000         # do much good!
1001         PYTHONPATH=$WORKSPACE/sdk/python/ "$bundle" exec rake linkchecker baseurl=file://$WORKSPACE/doc/.site/ arvados_workbench_host=https://workbench.$ARVADOS_API_HOST arvados_api_host=$ARVADOS_API_HOST
1002     )
1003 }
1004
1005 test_gofmt() {
1006     cd "$WORKSPACE" || return 1
1007     dirs=$(ls -d */ | egrep -v 'vendor|tmp')
1008     [[ -z "$(gofmt -e -d $dirs | tee -a /dev/stderr)" ]]
1009 }
1010
1011 test_services/api() {
1012     rm -f "$WORKSPACE/services/api/git-commit.version"
1013     cd "$WORKSPACE/services/api" \
1014         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake test TESTOPTS=\'-v -d\' ${testargs[services/api]}
1015 }
1016
1017 test_sdk/ruby() {
1018     cd "$WORKSPACE/sdk/ruby" \
1019         && "$bundle" exec rake test TESTOPTS=-v ${testargs[sdk/ruby]}
1020 }
1021
1022 test_sdk/ruby-google-api-client() {
1023     echo "*** note \`test sdk/ruby-google-api-client\` does not actually run any tests, see https://dev.arvados.org/issues/20993 ***"
1024     true
1025 }
1026
1027 test_sdk/R() {
1028   if [[ "$NEED_SDK_R" = true ]]; then
1029     cd "$WORKSPACE/sdk/R" \
1030         && Rscript --vanilla run_test.R
1031   fi
1032 }
1033
1034 test_sdk/cli() {
1035     cd "$WORKSPACE/sdk/cli" \
1036         && mkdir -p /tmp/keep \
1037         && KEEP_LOCAL_STORE=/tmp/keep "$bundle" exec rake test TESTOPTS=-v ${testargs[sdk/cli]}
1038 }
1039
1040 test_sdk/java-v2() {
1041     cd "$WORKSPACE/sdk/java-v2" && gradle test ${testargs[sdk/java-v2]}
1042 }
1043
1044 test_services/login-sync() {
1045     cd "$WORKSPACE/services/login-sync" \
1046         && "$bundle" exec rake test TESTOPTS=-v ${testargs[services/login-sync]}
1047 }
1048
1049 test_apps/workbench_units() {
1050     local TASK="test:units"
1051     cd "$WORKSPACE/apps/workbench" \
1052         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_units]}
1053 }
1054
1055 test_apps/workbench_functionals() {
1056     local TASK="test:functionals"
1057     cd "$WORKSPACE/apps/workbench" \
1058         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_functionals]}
1059 }
1060
1061 test_apps/workbench_integration() {
1062     local TASK="test:integration"
1063     cd "$WORKSPACE/apps/workbench" \
1064         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_integration]}
1065 }
1066
1067 test_apps/workbench_benchmark() {
1068     local TASK="test:benchmark"
1069     cd "$WORKSPACE/apps/workbench" \
1070         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} ${testargs[apps/workbench_benchmark]}
1071 }
1072
1073 test_apps/workbench_profile() {
1074     local TASK="test:profile"
1075     cd "$WORKSPACE/apps/workbench" \
1076         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} ${testargs[apps/workbench_profile]}
1077 }
1078
1079 install_deps() {
1080     # Install parts needed by test suites
1081     do_install env
1082     do_install cmd/arvados-server go
1083     do_install sdk/cli
1084     do_install sdk/python pip "${VENV3DIR}/bin/"
1085     do_install sdk/ruby-google-api-client
1086     do_install sdk/ruby
1087     do_install services/api
1088     do_install services/keepproxy go
1089     do_install services/keep-web go
1090 }
1091
1092 install_all() {
1093     do_install env
1094     do_install doc
1095     do_install sdk/ruby-google-api-client
1096     do_install sdk/ruby
1097     do_install sdk/R
1098     do_install sdk/cli
1099     do_install services/login-sync
1100     for p in "${pythonstuff[@]}"
1101     do
1102        dir=${p%:py3}
1103        if [[ -z ${skip[python3]} ]]; then
1104            do_install ${dir} pip "$VENV3DIR/bin/"
1105        fi
1106     done
1107     for g in "${gostuff[@]}"
1108     do
1109         do_install "$g" go
1110     done
1111     do_install services/api
1112     do_install apps/workbench
1113 }
1114
1115 test_all() {
1116     stop_services
1117     do_test services/api
1118
1119     # Shortcut for when we're only running apiserver tests. This saves a bit of time,
1120     # because we don't need to start up the api server for subsequent tests.
1121     if [ ! -z "$only" ] && [ "$only" == "services/api" ]; then
1122         rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
1123         exit_cleanly
1124     fi
1125
1126     do_test gofmt
1127     do_test doc
1128     do_test sdk/ruby-google-api-client
1129     do_test sdk/ruby
1130     do_test sdk/R
1131     do_test sdk/cli
1132     do_test services/login-sync
1133     do_test sdk/java-v2
1134     for p in "${pythonstuff[@]}"
1135     do
1136         dir=${p%:py3}
1137         if [[ -z ${skip[python3]} ]]; then
1138             do_test ${dir} pip "$VENV3DIR/bin/"
1139         fi
1140     done
1141
1142     for g in "${gostuff[@]}"
1143     do
1144         do_test "$g" go
1145     done
1146     do_test apps/workbench_units
1147     do_test apps/workbench_functionals
1148     do_test apps/workbench_integration
1149     do_test apps/workbench_benchmark
1150     do_test apps/workbench_profile
1151 }
1152
1153 test_go() {
1154     do_test gofmt
1155     for g in "${gostuff[@]}"
1156     do
1157         do_test "$g" go
1158     done
1159 }
1160
1161 help_interactive() {
1162     echo "== Interactive commands:"
1163     echo "TARGET                 (short for 'test DIR')"
1164     echo "test TARGET"
1165     echo "10 test TARGET         (run test 10 times)"
1166     echo "test TARGET:py3        (test with python3)"
1167     echo "test TARGET -check.vv  (pass arguments to test)"
1168     echo "install TARGET"
1169     echo "install env            (go/python libs)"
1170     echo "install deps           (go/python libs + arvados components needed for integration tests)"
1171     echo "reset                  (...services used by integration tests)"
1172     echo "exit"
1173     echo "== Test targets:"
1174     echo "${!testfuncargs[@]}" | tr ' ' '\n' | sort | column
1175 }
1176
1177 initialize
1178
1179 declare -A testfuncargs=()
1180 for g in "${gostuff[@]}"; do
1181     testfuncargs[$g]="$g go"
1182 done
1183 for p in "${pythonstuff[@]}"; do
1184     dir=${p%:py3}
1185     testfuncargs[$dir:py3]="$dir pip $VENV3DIR/bin/"
1186 done
1187
1188 testfuncargs["sdk/cli"]="sdk/cli"
1189 testfuncargs["sdk/R"]="sdk/R"
1190 testfuncargs["sdk/java-v2"]="sdk/java-v2"
1191 testfuncargs["apps/workbench_units"]="apps/workbench_units"
1192 testfuncargs["apps/workbench_functionals"]="apps/workbench_functionals"
1193 testfuncargs["apps/workbench_integration"]="apps/workbench_integration"
1194 testfuncargs["apps/workbench_benchmark"]="apps/workbench_benchmark"
1195 testfuncargs["apps/workbench_profile"]="apps/workbench_profile"
1196
1197 if [[ -z ${interactive} ]]; then
1198     install_all
1199     test_all
1200 else
1201     skip=()
1202     only=()
1203     only_install=()
1204     if [[ -e "$VENV3DIR/bin/activate" ]]; then stop_services; fi
1205     setnextcmd() {
1206         if [[ "$TERM" = dumb ]]; then
1207             # assume emacs, or something, is offering a history buffer
1208             # and pre-populating the command will only cause trouble
1209             nextcmd=
1210         elif [[ ! -e "$VENV3DIR/bin/activate" ]]; then
1211             nextcmd="install deps"
1212         else
1213             nextcmd=""
1214         fi
1215     }
1216     echo
1217     help_interactive
1218     nextcmd="install deps"
1219     setnextcmd
1220     HISTFILE="$WORKSPACE/tmp/.history"
1221     history -r
1222     ignore_sigint=1
1223     while read -p 'What next? ' -e -i "$nextcmd" nextcmd; do
1224         history -s "$nextcmd"
1225         history -w
1226         count=1
1227         if [[ "${nextcmd}" =~ ^[0-9] ]]; then
1228           read count nextcmd <<<"${nextcmd}"
1229         fi
1230         read verb target opts <<<"${nextcmd}"
1231         target="${target%/}"
1232         target="${target/\/:/:}"
1233         case "${verb}" in
1234             "exit" | "quit")
1235                 exit_cleanly
1236                 ;;
1237             "reset")
1238                 stop_services
1239                 ;;
1240             "test" | "install")
1241                 case "$target" in
1242                     "")
1243                         help_interactive
1244                         ;;
1245                     all | deps)
1246                         ${verb}_${target}
1247                         ;;
1248                     *)
1249                         argstarget=${target%:py3}
1250                         testargs["$argstarget"]="${opts}"
1251                         tt="${testfuncargs[${target}]}"
1252                         tt="${tt:-$target}"
1253                         while [ $count -gt 0 ]; do
1254                           do_$verb $tt
1255                           let "count=count-1"
1256                         done
1257                         ;;
1258                 esac
1259                 ;;
1260             "" | "help" | *)
1261                 help_interactive
1262                 ;;
1263         esac
1264         if [[ ${#successes[@]} -gt 0 || ${#failures[@]} -gt 0 ]]; then
1265             report_outcomes
1266             successes=()
1267             failures=()
1268         fi
1269         cd "$WORKSPACE"
1270         setnextcmd
1271     done
1272     echo
1273 fi
1274 exit_cleanly