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