20259: Add documentation for banner and tooltip features
[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/crunchstat
98 services/dockercleaner
99 services/fuse
100 services/fuse:py3
101 services/health
102 services/keep-web
103 services/keepproxy
104 services/keepstore
105 services/keep-balance
106 services/login-sync
107 services/crunch-dispatch-local
108 services/crunch-dispatch-slurm
109 services/ws
110 sdk/cli
111 sdk/python
112 sdk/python:py3
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     # Needed for run_test_server.py which is used by certain (non-Python) tests.
657     # pdoc3 needed to generate the Python SDK documentation.
658     (
659         set -e
660         "${VENV3DIR}/bin/pip3" install wheel
661         "${VENV3DIR}/bin/pip3" install PyYAML
662         "${VENV3DIR}/bin/pip3" install httplib2
663         "${VENV3DIR}/bin/pip3" install future
664         "${VENV3DIR}/bin/pip3" install google-api-python-client
665         "${VENV3DIR}/bin/pip3" install ciso8601
666         "${VENV3DIR}/bin/pip3" install pycurl
667         "${VENV3DIR}/bin/pip3" install ws4py
668         "${VENV3DIR}/bin/pip3" install pdoc3
669         cd "$WORKSPACE/sdk/python"
670         python3 setup.py install
671     ) || fatal "installing PyYAML and sdk/python failed"
672 }
673
674 retry() {
675     remain="${repeat}"
676     while :
677     do
678         if ${@}; then
679             if [[ "$remain" -gt 1 ]]; then
680                 remain=$((${remain}-1))
681                 title "(repeating ${remain} more times)"
682             else
683                 break
684             fi
685         elif [[ "$retry" == 1 ]]; then
686             read -p 'Try again? [Y/n] ' x
687             if [[ "$x" != "y" ]] && [[ "$x" != "" ]]
688             then
689                 break
690             fi
691         else
692             break
693         fi
694     done
695 }
696
697 do_test() {
698     case "${1}" in
699         apps/workbench_units | apps/workbench_functionals | apps/workbench_integration)
700             suite=apps/workbench
701             ;;
702         *)
703             suite="${1}"
704             ;;
705     esac
706     if [[ -n "${skip[$suite]}" || \
707               -n "${skip[$1]}" || \
708               (${#only[@]} -ne 0 && ${only[$suite]} -eq 0 && ${only[$1]} -eq 0) ]]; then
709         return 0
710     fi
711     case "${1}" in
712         services/api)
713             stop_services
714             check_arvados_config "$1"
715             ;;
716         gofmt | doc | lib/cli | lib/cloud/azure | lib/cloud/ec2 | lib/cloud/cloudtest | lib/cmd | lib/dispatchcloud/sshexecutor | lib/dispatchcloud/worker)
717             check_arvados_config "$1"
718             # don't care whether services are running
719             ;;
720         *)
721             check_arvados_config "$1"
722             if ! start_services; then
723                 checkexit 1 "$1 tests"
724                 title "test $1 -- failed to start services"
725                 return 1
726             fi
727             ;;
728     esac
729     retry do_test_once ${@}
730 }
731
732 go_ldflags() {
733     version=${ARVADOS_VERSION:-$(git log -n1 --format=%H)-dev}
734     echo "-X git.arvados.org/arvados.git/lib/cmd.version=${version} -X main.version=${version} -s -w"
735 }
736
737 do_test_once() {
738     unset result
739
740     title "test $1"
741     timer_reset
742
743     result=
744     if which deactivate >/dev/null; then deactivate; fi
745     if ! . "$VENV3DIR/bin/activate"
746     then
747         result=1
748     elif [[ "$2" == "go" ]]
749     then
750         covername="coverage-$(echo "$1" | sed -e 's/\//_/g')"
751         coverflags=("-covermode=count" "-coverprofile=$WORKSPACE/tmp/.$covername.tmp")
752         testflags=()
753         if [[ "$1" == "cmd/arvados-package" ]]; then
754             testflags+=("-timeout" "20m")
755         fi
756         # We do "go install" here to catch compilation errors
757         # before trying "go test". Otherwise, coverage-reporting
758         # mode makes Go show the wrong line numbers when reporting
759         # compilation errors.
760         go install -ldflags "$(go_ldflags)" "$WORKSPACE/$1" && \
761             cd "$WORKSPACE/$1" && \
762             if [[ -n "${testargs[$1]}" ]]
763         then
764             # "go test -check.vv giturl" doesn't work, but this
765             # does:
766             go test ${short:+-short} ${testflags[@]} ${testargs[$1]}
767         else
768             # The above form gets verbose even when testargs is
769             # empty, so use this form in such cases:
770             go test ${short:+-short} ${testflags[@]} ${coverflags[@]} "git.arvados.org/arvados.git/$1"
771         fi
772         result=${result:-$?}
773         if [[ -f "$WORKSPACE/tmp/.$covername.tmp" ]]
774         then
775             go tool cover -html="$WORKSPACE/tmp/.$covername.tmp" -o "$WORKSPACE/tmp/$covername.html"
776             rm "$WORKSPACE/tmp/.$covername.tmp"
777         fi
778         [[ $result = 0 ]] && gofmt -e -d *.go
779     elif [[ "$2" == "pip" ]]
780     then
781         tries=0
782         cd "$WORKSPACE/$1" && while :
783         do
784             tries=$((${tries}+1))
785             # $3 can name a path directory for us to use, including trailing
786             # slash; e.g., the bin/ subdirectory of a virtualenv.
787             if [[ -e "${3}activate" ]]; then
788                 . "${3}activate"
789             fi
790             python setup.py ${short:+--short-tests-only} test ${testargs[$1]}
791             result=$?
792             if [[ ${tries} < 3 && ${result} == 137 ]]
793             then
794                 printf '\n*****\n%s tests killed -- retrying\n*****\n\n' "$1"
795                 continue
796             else
797                 break
798             fi
799         done
800     elif [[ "$2" != "" ]]
801     then
802         "test_$2"
803     else
804         "test_$1"
805     fi
806     result=${result:-$?}
807     checkexit $result "$1 tests"
808     title "test $1 -- `timer`"
809     return $result
810 }
811
812 check_arvados_config() {
813     if [[ "$1" = "env" ]] ; then
814         return
815     fi
816     if [[ -z "$ARVADOS_CONFIG" ]] ; then
817         # Create config file.  The run_test_server script requires PyYAML,
818         # so virtualenv needs to be active.  Downstream steps like
819         # workbench install which require a valid config.yml.
820         if [[ ! -s "$VENV3DIR/bin/activate" ]] ; then
821             install_env
822         fi
823         . "$VENV3DIR/bin/activate"
824         cd "$WORKSPACE"
825         eval $(python3 sdk/python/tests/run_test_server.py setup_config)
826         deactivate
827     fi
828 }
829
830 do_install() {
831     if [[ -n "${skip[install]}" || ( -n "${only_install}" && "${only_install}" != "${1}" && "${only_install}" != "${2}" ) ]]; then
832         return 0
833     fi
834     check_arvados_config "$1"
835     retry do_install_once ${@}
836 }
837
838 do_install_once() {
839     title "install $1"
840     timer_reset
841
842     result=
843     if which deactivate >/dev/null; then deactivate; fi
844     if [[ "$1" != "env" ]] && ! . "$VENV3DIR/bin/activate"; then
845         result=1
846     elif [[ "$2" == "go" ]]
847     then
848         go install -ldflags "$(go_ldflags)" "$WORKSPACE/$1"
849     elif [[ "$2" == "pip" ]]
850     then
851         # $3 can name a path directory for us to use, including trailing
852         # slash; e.g., the bin/ subdirectory of a virtualenv.
853
854         # Need to change to a different directory after creating
855         # the source dist package to avoid a pip bug.
856         # see https://arvados.org/issues/5766 for details.
857
858         # Also need to install twice, because if it believes the package is
859         # already installed, pip it won't install it.  So the first "pip
860         # install" ensures that the dependencies are met, the second "pip
861         # install" ensures that we've actually installed the local package
862         # we just built.
863         cd "$WORKSPACE/$1" \
864             && "${3}python3" setup.py sdist rotate --keep=1 --match .tar.gz \
865             && cd "$WORKSPACE" \
866             && "${3}pip3" install --no-cache-dir "$WORKSPACE/$1/dist"/*.tar.gz \
867             && "${3}pip3" install --no-cache-dir --no-deps --ignore-installed "$WORKSPACE/$1/dist"/*.tar.gz
868     elif [[ "$2" != "" ]]
869     then
870         "install_$2"
871     else
872         "install_$1"
873     fi
874     result=${result:-$?}
875     checkexit $result "$1 install"
876     title "install $1 -- `timer`"
877     return $result
878 }
879
880 bundle_install_trylocal() {
881     (
882         set -e
883         echo "(Running bundle install --local. 'could not find package' messages are OK.)"
884         if ! "$bundle" install --local --no-deployment; then
885             echo "(Running bundle install again, without --local.)"
886             "$bundle" install --no-deployment
887         fi
888         "$bundle" package
889     )
890 }
891
892 install_doc() {
893     cd "$WORKSPACE/doc" \
894         && bundle_install_trylocal \
895         && rm -rf .site
896 }
897
898 install_gem() {
899     gemname=$1
900     srcpath=$2
901     with_test_gemset gem_uninstall_if_exists "$gemname" \
902         && cd "$WORKSPACE/$srcpath" \
903         && bundle_install_trylocal \
904         && gem build "$gemname.gemspec" \
905         && with_test_gemset gem install --no-document $(ls -t "$gemname"-*.gem|head -n1)
906 }
907
908 install_sdk/ruby() {
909     install_gem arvados sdk/ruby
910 }
911
912 install_sdk/R() {
913   if [[ "$NEED_SDK_R" = true ]]; then
914     cd "$WORKSPACE/sdk/R" \
915        && Rscript --vanilla install_deps.R
916   fi
917 }
918
919 install_sdk/cli() {
920     install_gem arvados-cli sdk/cli
921 }
922
923 install_services/login-sync() {
924     install_gem arvados sdk/ruby
925     install_gem arvados-login-sync services/login-sync
926 }
927
928 install_services/api() {
929     stop_services
930     check_arvados_config "services/api"
931     cd "$WORKSPACE/services/api" \
932         && RAILS_ENV=test bundle_install_trylocal \
933             || return 1
934
935     rm -f config/environments/test.rb
936     cp config/environments/test.rb.example config/environments/test.rb
937
938     # Clear out any lingering postgresql connections to the test
939     # database, so that we can drop it. This assumes the current user
940     # is a postgresql superuser.
941     cd "$WORKSPACE/services/api" \
942         && test_database=$("${VENV3DIR}/bin/python3" -c "import yaml; print(yaml.safe_load(open('$ARVADOS_CONFIG','r'))['Clusters']['zzzzz']['PostgreSQL']['Connection']['dbname'])") \
943         && 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
944
945     mkdir -p "$WORKSPACE/services/api/tmp/pids"
946
947     cert="$WORKSPACE/services/api/tmp/self-signed"
948     if [[ ! -e "$cert.pem" || "$(date -r "$cert.pem" +%s)" -lt 1512659226 ]]; then
949         (
950             dir="$WORKSPACE/services/api/tmp"
951             set -e
952             openssl req -newkey rsa:2048 -nodes -subj '/C=US/ST=State/L=City/CN=localhost' -out "$cert.csr" -keyout "$cert.key" </dev/null
953             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')
954         ) || return 1
955     fi
956
957     cd "$WORKSPACE/services/api" \
958         && rm -rf tmp/git \
959         && mkdir -p tmp/git \
960         && cd tmp/git \
961         && tar xf ../../test/test.git.tar \
962         && mkdir -p internal.git \
963         && git --git-dir internal.git init \
964             || return 1
965
966     (
967         set -ex
968         cd "$WORKSPACE/services/api"
969         export RAILS_ENV=test
970         if bin/rails db:environment:set ; then
971             bin/rake db:drop
972         fi
973         bin/rake db:setup
974         bin/rake db:fixtures:load
975     ) || return 1
976 }
977
978 declare -a pythonstuff
979 pythonstuff=(
980     sdk/python:py3
981     sdk/cwl:py3
982     services/dockercleaner:py3
983     services/fuse:py3
984     tools/crunchstat-summary:py3
985 )
986
987 declare -a gostuff
988 gostuff=($(cd "$WORKSPACE" && git ls-files | grep '\.go$' | sed -e 's/\/[^\/]*$//' | sort -u))
989
990 install_apps/workbench() {
991     cd "$WORKSPACE/apps/workbench" \
992         && mkdir -p tmp/cache \
993         && RAILS_ENV=test bundle_install_trylocal \
994         && RAILS_ENV=test RAILS_GROUPS=assets "$bundle" exec rake npm:install
995 }
996
997 test_doc() {
998     (
999         set -e
1000         cd "$WORKSPACE/doc"
1001         ARVADOS_API_HOST=pirca.arvadosapi.com
1002         # Make sure python-epydoc is installed or the next line won't
1003         # do much good!
1004         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
1005     )
1006 }
1007
1008 test_gofmt() {
1009     cd "$WORKSPACE" || return 1
1010     dirs=$(ls -d */ | egrep -v 'vendor|tmp')
1011     [[ -z "$(gofmt -e -d $dirs | tee -a /dev/stderr)" ]]
1012 }
1013
1014 test_services/api() {
1015     rm -f "$WORKSPACE/services/api/git-commit.version"
1016     cd "$WORKSPACE/services/api" \
1017         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake test TESTOPTS=\'-v -d\' ${testargs[services/api]}
1018 }
1019
1020 test_sdk/ruby() {
1021     cd "$WORKSPACE/sdk/ruby" \
1022         && "$bundle" exec rake test TESTOPTS=-v ${testargs[sdk/ruby]}
1023 }
1024
1025 test_sdk/R() {
1026   if [[ "$NEED_SDK_R" = true ]]; then
1027     cd "$WORKSPACE/sdk/R" \
1028         && Rscript --vanilla run_test.R
1029   fi
1030 }
1031
1032 test_sdk/cli() {
1033     cd "$WORKSPACE/sdk/cli" \
1034         && mkdir -p /tmp/keep \
1035         && KEEP_LOCAL_STORE=/tmp/keep "$bundle" exec rake test TESTOPTS=-v ${testargs[sdk/cli]}
1036 }
1037
1038 test_sdk/java-v2() {
1039     cd "$WORKSPACE/sdk/java-v2" && gradle test ${testargs[sdk/java-v2]}
1040 }
1041
1042 test_services/login-sync() {
1043     cd "$WORKSPACE/services/login-sync" \
1044         && "$bundle" exec rake test TESTOPTS=-v ${testargs[services/login-sync]}
1045 }
1046
1047 test_apps/workbench_units() {
1048     local TASK="test:units"
1049     cd "$WORKSPACE/apps/workbench" \
1050         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_units]}
1051 }
1052
1053 test_apps/workbench_functionals() {
1054     local TASK="test:functionals"
1055     cd "$WORKSPACE/apps/workbench" \
1056         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_functionals]}
1057 }
1058
1059 test_apps/workbench_integration() {
1060     local TASK="test:integration"
1061     cd "$WORKSPACE/apps/workbench" \
1062         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} TESTOPTS=\'-v -d\' ${testargs[apps/workbench]} ${testargs[apps/workbench_integration]}
1063 }
1064
1065 test_apps/workbench_benchmark() {
1066     local TASK="test:benchmark"
1067     cd "$WORKSPACE/apps/workbench" \
1068         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} ${testargs[apps/workbench_benchmark]}
1069 }
1070
1071 test_apps/workbench_profile() {
1072     local TASK="test:profile"
1073     cd "$WORKSPACE/apps/workbench" \
1074         && eval env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} "$bundle" exec rake ${TASK} ${testargs[apps/workbench_profile]}
1075 }
1076
1077 install_deps() {
1078     # Install parts needed by test suites
1079     do_install env
1080     do_install cmd/arvados-server go
1081     do_install sdk/cli
1082     do_install sdk/python pip "${VENV3DIR}/bin/"
1083     do_install sdk/ruby
1084     do_install services/api
1085     do_install services/keepproxy go
1086     do_install services/keep-web go
1087 }
1088
1089 install_all() {
1090     do_install env
1091     do_install doc
1092     do_install sdk/ruby
1093     do_install sdk/R
1094     do_install sdk/cli
1095     do_install services/login-sync
1096     for p in "${pythonstuff[@]}"
1097     do
1098        dir=${p%:py3}
1099        if [[ -z ${skip[python3]} ]]; then
1100            do_install ${dir} pip "$VENV3DIR/bin/"
1101        fi
1102     done
1103     for g in "${gostuff[@]}"
1104     do
1105         do_install "$g" go
1106     done
1107     do_install services/api
1108     do_install apps/workbench
1109 }
1110
1111 test_all() {
1112     stop_services
1113     do_test services/api
1114
1115     # Shortcut for when we're only running apiserver tests. This saves a bit of time,
1116     # because we don't need to start up the api server for subsequent tests.
1117     if [ ! -z "$only" ] && [ "$only" == "services/api" ]; then
1118         rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
1119         exit_cleanly
1120     fi
1121
1122     do_test gofmt
1123     do_test doc
1124     do_test sdk/ruby
1125     do_test sdk/R
1126     do_test sdk/cli
1127     do_test services/login-sync
1128     do_test sdk/java-v2
1129     for p in "${pythonstuff[@]}"
1130     do
1131         dir=${p%:py3}
1132         if [[ -z ${skip[python3]} ]]; then
1133             do_test ${dir} pip "$VENV3DIR/bin/"
1134         fi
1135     done
1136
1137     for g in "${gostuff[@]}"
1138     do
1139         do_test "$g" go
1140     done
1141     do_test apps/workbench_units
1142     do_test apps/workbench_functionals
1143     do_test apps/workbench_integration
1144     do_test apps/workbench_benchmark
1145     do_test apps/workbench_profile
1146 }
1147
1148 test_go() {
1149     do_test gofmt
1150     for g in "${gostuff[@]}"
1151     do
1152         do_test "$g" go
1153     done
1154 }
1155
1156 help_interactive() {
1157     echo "== Interactive commands:"
1158     echo "TARGET                 (short for 'test DIR')"
1159     echo "test TARGET"
1160     echo "10 test TARGET         (run test 10 times)"
1161     echo "test TARGET:py3        (test with python3)"
1162     echo "test TARGET -check.vv  (pass arguments to test)"
1163     echo "install TARGET"
1164     echo "install env            (go/python libs)"
1165     echo "install deps           (go/python libs + arvados components needed for integration tests)"
1166     echo "reset                  (...services used by integration tests)"
1167     echo "exit"
1168     echo "== Test targets:"
1169     echo "${!testfuncargs[@]}" | tr ' ' '\n' | sort | column
1170 }
1171
1172 initialize
1173
1174 declare -A testfuncargs=()
1175 for g in "${gostuff[@]}"; do
1176     testfuncargs[$g]="$g go"
1177 done
1178 for p in "${pythonstuff[@]}"; do
1179     dir=${p%:py3}
1180     testfuncargs[$dir:py3]="$dir pip $VENV3DIR/bin/"
1181 done
1182
1183 testfuncargs["sdk/cli"]="sdk/cli"
1184 testfuncargs["sdk/R"]="sdk/R"
1185 testfuncargs["sdk/java-v2"]="sdk/java-v2"
1186 testfuncargs["apps/workbench_units"]="apps/workbench_units"
1187 testfuncargs["apps/workbench_functionals"]="apps/workbench_functionals"
1188 testfuncargs["apps/workbench_integration"]="apps/workbench_integration"
1189 testfuncargs["apps/workbench_benchmark"]="apps/workbench_benchmark"
1190 testfuncargs["apps/workbench_profile"]="apps/workbench_profile"
1191
1192 if [[ -z ${interactive} ]]; then
1193     install_all
1194     test_all
1195 else
1196     skip=()
1197     only=()
1198     only_install=()
1199     if [[ -e "$VENV3DIR/bin/activate" ]]; then stop_services; fi
1200     setnextcmd() {
1201         if [[ "$TERM" = dumb ]]; then
1202             # assume emacs, or something, is offering a history buffer
1203             # and pre-populating the command will only cause trouble
1204             nextcmd=
1205         elif [[ ! -e "$VENV3DIR/bin/activate" ]]; then
1206             nextcmd="install deps"
1207         else
1208             nextcmd=""
1209         fi
1210     }
1211     echo
1212     help_interactive
1213     nextcmd="install deps"
1214     setnextcmd
1215     HISTFILE="$WORKSPACE/tmp/.history"
1216     history -r
1217     ignore_sigint=1
1218     while read -p 'What next? ' -e -i "$nextcmd" nextcmd; do
1219         history -s "$nextcmd"
1220         history -w
1221         count=1
1222         if [[ "${nextcmd}" =~ ^[0-9] ]]; then
1223           read count nextcmd <<<"${nextcmd}"
1224         fi
1225         read verb target opts <<<"${nextcmd}"
1226         target="${target%/}"
1227         target="${target/\/:/:}"
1228         case "${verb}" in
1229             "exit" | "quit")
1230                 exit_cleanly
1231                 ;;
1232             "reset")
1233                 stop_services
1234                 ;;
1235             "test" | "install")
1236                 case "$target" in
1237                     "")
1238                         help_interactive
1239                         ;;
1240                     all | deps)
1241                         ${verb}_${target}
1242                         ;;
1243                     *)
1244                         argstarget=${target%:py3}
1245                         testargs["$argstarget"]="${opts}"
1246                         tt="${testfuncargs[${target}]}"
1247                         tt="${tt:-$target}"
1248                         while [ $count -gt 0 ]; do
1249                           do_$verb $tt
1250                           let "count=count-1"
1251                         done
1252                         ;;
1253                 esac
1254                 ;;
1255             "" | "help" | *)
1256                 help_interactive
1257                 ;;
1258         esac
1259         if [[ ${#successes[@]} -gt 0 || ${#failures[@]} -gt 0 ]]; then
1260             report_outcomes
1261             successes=()
1262             failures=()
1263         fi
1264         cd "$WORKSPACE"
1265         setnextcmd
1266     done
1267     echo
1268 fi
1269 exit_cleanly