11308: Remove obsolete test setup steps.
[arvados.git] / build / run-tests.sh
1 #!/bin/bash
2
3 . `dirname "$(readlink -f "$0")"`/libcloud-pin
4
5 COLUMNS=80
6 . `dirname "$(readlink -f "$0")"`/run-library.sh
7
8 read -rd "\000" helpmessage <<EOF
9 $(basename $0): Install and test Arvados components.
10
11 Exit non-zero if any tests fail.
12
13 Syntax:
14         $(basename $0) WORKSPACE=/path/to/arvados [options]
15
16 Options:
17
18 --skip FOO     Do not test the FOO component.
19 --only FOO     Do not test anything except the FOO component.
20 --temp DIR     Install components and dependencies under DIR instead of
21                making a new temporary directory. Implies --leave-temp.
22 --leave-temp   Do not remove GOPATH, virtualenv, and other temp dirs at exit.
23                Instead, show the path to give as --temp to reuse them in
24                subsequent invocations.
25 --repeat N     Repeat each install/test step until it succeeds N times.
26 --retry        Prompt to retry if an install or test suite fails.
27 --skip-install Do not run any install steps. Just run tests.
28                You should provide GOPATH, GEMHOME, and VENVDIR options
29                from a previous invocation if you use this option.
30 --only-install Run specific install step
31 --short        Skip (or scale down) some slow tests.
32 WORKSPACE=path Arvados source tree to test.
33 CONFIGSRC=path Dir with api server config files to copy into source tree.
34                (If none given, leave config files alone in source tree.)
35 services/api_test="TEST=test/functional/arvados/v1/collections_controller_test.rb"
36                Restrict apiserver tests to the given file
37 sdk/python_test="--test-suite test.test_keep_locator"
38                Restrict Python SDK tests to the given class
39 apps/workbench_test="TEST=test/integration/pipeline_instances_test.rb"
40                Restrict Workbench tests to the given file
41 services/arv-git-httpd_test="-check.vv"
42                Show all log messages, even when tests pass (also works
43                with services/keepstore_test etc.)
44 ARVADOS_DEBUG=1
45                Print more debug messages
46 envvar=value   Set \$envvar to value. Primarily useful for WORKSPACE,
47                *_test, and other examples shown above.
48
49 Assuming --skip-install is not given, all components are installed
50 into \$GOPATH, \$VENDIR, and \$GEMHOME before running any tests. Many
51 test suites depend on other components being installed, and installing
52 everything tends to be quicker than debugging dependencies.
53
54 As a special concession to the current CI server config, CONFIGSRC
55 defaults to $HOME/arvados-api-server if that directory exists.
56
57 More information and background:
58
59 https://arvados.org/projects/arvados/wiki/Running_tests
60
61 Available tests:
62
63 apps/workbench (*)
64 apps/workbench_units (*)
65 apps/workbench_functionals (*)
66 apps/workbench_integration (*)
67 apps/workbench_benchmark
68 apps/workbench_profile
69 doc
70 services/api
71 services/arv-git-httpd
72 services/crunchstat
73 services/dockercleaner
74 services/fuse
75 services/keep-web
76 services/keepproxy
77 services/keepstore
78 services/keep-balance
79 services/login-sync
80 services/nodemanager
81 services/crunch-run
82 services/crunch-dispatch-local
83 services/crunch-dispatch-slurm
84 services/ws
85 sdk/cli
86 sdk/pam
87 sdk/python
88 sdk/python:py3
89 sdk/ruby
90 sdk/go/arvados
91 sdk/go/arvadosclient
92 sdk/go/dispatch
93 sdk/go/keepclient
94 sdk/go/httpserver
95 sdk/go/manifest
96 sdk/go/blockdigest
97 sdk/go/streamer
98 sdk/go/stats
99 sdk/go/crunchrunner
100 sdk/cwl
101 tools/crunchstat-summary
102 tools/keep-exercise
103 tools/keep-rsync
104 tools/keep-block-check
105
106 (*) apps/workbench is shorthand for apps/workbench_units +
107     apps/workbench_functionals + apps/workbench_integration
108
109 EOF
110
111 # First make sure to remove any ARVADOS_ variables from the calling
112 # environment that could interfere with the tests.
113 unset $(env | cut -d= -f1 | grep \^ARVADOS_)
114
115 # Reset other variables that could affect our [tests'] behavior by
116 # accident.
117 GITDIR=
118 GOPATH=
119 VENVDIR=
120 VENV3DIR=
121 PYTHONPATH=
122 GEMHOME=
123 PERLINSTALLBASE=
124
125 short=
126 only_install=
127 temp=
128 temp_preserve=
129
130 clear_temp() {
131     if [[ -z "$temp" ]]; then
132         # we didn't even get as far as making a temp dir
133         :
134     elif [[ -z "$temp_preserve" ]]; then
135         rm -rf "$temp"
136     else
137         echo "Leaving behind temp dirs in $temp"
138     fi
139 }
140
141 fatal() {
142     clear_temp
143     echo >&2 "Fatal: $* (encountered in ${FUNCNAME[1]} at ${BASH_SOURCE[1]} line ${BASH_LINENO[0]})"
144     exit 1
145 }
146
147 exit_cleanly() {
148     trap - INT
149     create-plot-data-from-log.sh $BUILD_NUMBER "$WORKSPACE/apps/workbench/log/test.log" "$WORKSPACE/apps/workbench/log/"
150     rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
151     stop_services
152     rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
153     report_outcomes
154     clear_temp
155     exit ${#failures}
156 }
157
158 sanity_checks() {
159     ( [[ -n "$WORKSPACE" ]] && [[ -d "$WORKSPACE/services" ]] ) \
160         || fatal "WORKSPACE environment variable not set to a source directory (see: $0 --help)"
161     echo Checking dependencies:
162     echo -n 'virtualenv: '
163     virtualenv --version \
164         || fatal "No virtualenv. Try: apt-get install virtualenv (on ubuntu: python-virtualenv)"
165     echo -n 'ruby: '
166     ruby -v \
167         || fatal "No ruby. Install >=2.1.9 (using rbenv, rvm, or source)"
168     echo -n 'bundler: '
169     bundle version \
170         || fatal "No bundler. Try: gem install bundler"
171     echo -n 'go: '
172     go version \
173         || fatal "No go binary. See http://golang.org/doc/install"
174     [[ $(go version) =~ go1.([0-9]+) ]] && [[ ${BASH_REMATCH[1]} -ge 7 ]] \
175         || fatal "Go >= 1.7 required. See http://golang.org/doc/install"
176     echo -n 'gcc: '
177     gcc --version | egrep ^gcc \
178         || fatal "No gcc. Try: apt-get install build-essential"
179     echo -n 'fuse.h: '
180     find /usr/include -wholename '*fuse/fuse.h' \
181         || fatal "No fuse/fuse.h. Try: apt-get install libfuse-dev"
182     echo -n 'pyconfig.h: '
183     find /usr/include -name pyconfig.h | egrep --max-count=1 . \
184         || fatal "No pyconfig.h. Try: apt-get install python-dev"
185     echo -n 'nginx: '
186     PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" nginx -v \
187         || fatal "No nginx. Try: apt-get install nginx"
188     echo -n 'perl: '
189     perl -v | grep version \
190         || fatal "No perl. Try: apt-get install perl"
191     for mod in ExtUtils::MakeMaker JSON LWP Net::SSL; do
192         echo -n "perl $mod: "
193         perl -e "use $mod; print \"\$$mod::VERSION\\n\"" \
194             || fatal "No $mod. Try: apt-get install perl-modules libcrypt-ssleay-perl libjson-perl libwww-perl"
195     done
196     echo -n 'gitolite: '
197     which gitolite \
198         || fatal "No gitolite. Try: apt-get install gitolite3"
199 }
200
201 rotate_logfile() {
202   # i.e.  rotate_logfile "$WORKSPACE/apps/workbench/log/" "test.log"
203   # $BUILD_NUMBER is set by Jenkins if this script is being called as part of a Jenkins run
204   if [[ -f "$1/$2" ]]; then
205     THEDATE=`date +%Y%m%d%H%M%S`
206     mv "$1/$2" "$1/$THEDATE-$BUILD_NUMBER-$2"
207     gzip "$1/$THEDATE-$BUILD_NUMBER-$2"
208   fi
209 }
210
211 declare -a failures
212 declare -A skip
213 declare -A testargs
214 skip[apps/workbench_profile]=1
215
216 while [[ -n "$1" ]]
217 do
218     arg="$1"; shift
219     case "$arg" in
220         --help)
221             echo >&2 "$helpmessage"
222             echo >&2
223             exit 1
224             ;;
225         --skip)
226             skip[$1]=1; shift
227             ;;
228         --only)
229             only="$1"; skip[$1]=""; shift
230             ;;
231         --short)
232             short=1
233             ;;
234         --skip-install)
235             only_install=nothing
236             ;;
237         --only-install)
238             only_install="$1"; shift
239             ;;
240         --temp)
241             temp="$1"; shift
242             temp_preserve=1
243             ;;
244         --leave-temp)
245             temp_preserve=1
246             ;;
247         --repeat)
248             repeat=$((${1}+0)); shift
249             ;;
250         --retry)
251             retry=1
252             ;;
253         *_test=*)
254             suite="${arg%%_test=*}"
255             args="${arg#*=}"
256             testargs["$suite"]="$args"
257             ;;
258         *=*)
259             eval export $(echo $arg | cut -d= -f1)=\"$(echo $arg | cut -d= -f2-)\"
260             ;;
261         *)
262             echo >&2 "$0: Unrecognized option: '$arg'. Try: $0 --help"
263             exit 1
264             ;;
265     esac
266 done
267
268 start_api() {
269     echo 'Starting API server...'
270     cd "$WORKSPACE" \
271         && eval $(python sdk/python/tests/run_test_server.py start --auth admin) \
272         && export ARVADOS_TEST_API_HOST="$ARVADOS_API_HOST" \
273         && export ARVADOS_TEST_API_INSTALLED="$$" \
274         && python sdk/python/tests/run_test_server.py start_ws \
275         && python sdk/python/tests/run_test_server.py start_nginx \
276         && (env | egrep ^ARVADOS)
277 }
278
279 start_nginx_proxy_services() {
280     echo 'Starting keepproxy, keep-web, ws, arv-git-httpd, and nginx ssl proxy...'
281     cd "$WORKSPACE" \
282         && python sdk/python/tests/run_test_server.py start_keep_proxy \
283         && python sdk/python/tests/run_test_server.py start_keep-web \
284         && python sdk/python/tests/run_test_server.py start_arv-git-httpd \
285         && python sdk/python/tests/run_test_server.py start_ws \
286         && python sdk/python/tests/run_test_server.py start_nginx \
287         && export ARVADOS_TEST_PROXY_SERVICES=1
288 }
289
290 stop_services() {
291     if [[ -n "$ARVADOS_TEST_PROXY_SERVICES" ]]; then
292         unset ARVADOS_TEST_PROXY_SERVICES
293         cd "$WORKSPACE" \
294             && python sdk/python/tests/run_test_server.py stop_nginx \
295             && python sdk/python/tests/run_test_server.py stop_arv-git-httpd \
296             && python sdk/python/tests/run_test_server.py stop_ws \
297             && python sdk/python/tests/run_test_server.py stop_keep-web \
298             && python sdk/python/tests/run_test_server.py stop_keep_proxy
299     fi
300     if [[ -n "$ARVADOS_TEST_API_HOST" ]]; then
301         unset ARVADOS_TEST_API_HOST
302         cd "$WORKSPACE" \
303             && python sdk/python/tests/run_test_server.py stop_nginx \
304             && python sdk/python/tests/run_test_server.py stop_ws \
305             && python sdk/python/tests/run_test_server.py stop
306     fi
307 }
308
309 interrupt() {
310     failures+=("($(basename $0) interrupted)")
311     exit_cleanly
312 }
313 trap interrupt INT
314
315 sanity_checks
316
317 echo "WORKSPACE=$WORKSPACE"
318
319 if [[ -z "$CONFIGSRC" ]] && [[ -d "$HOME/arvados-api-server" ]]; then
320     # Jenkins expects us to use this by default.
321     CONFIGSRC="$HOME/arvados-api-server"
322 fi
323
324 # Clean up .pyc files that may exist in the workspace
325 cd "$WORKSPACE"
326 find -name '*.pyc' -delete
327
328 if [[ -z "$temp" ]]; then
329     temp="$(mktemp -d)"
330 fi
331
332 # Set up temporary install dirs (unless existing dirs were supplied)
333 for tmpdir in VENVDIR VENV3DIR GOPATH GEMHOME PERLINSTALLBASE
334 do
335     if [[ -z "${!tmpdir}" ]]; then
336         eval "$tmpdir"="$temp/$tmpdir"
337     fi
338     if ! [[ -d "${!tmpdir}" ]]; then
339         mkdir "${!tmpdir}" || fatal "can't create ${!tmpdir} (does $temp exist?)"
340     fi
341 done
342
343 setup_ruby_environment() {
344     if [[ -s "$HOME/.rvm/scripts/rvm" ]] ; then
345       source "$HOME/.rvm/scripts/rvm"
346       using_rvm=true
347     elif [[ -s "/usr/local/rvm/scripts/rvm" ]] ; then
348       source "/usr/local/rvm/scripts/rvm"
349       using_rvm=true
350     else
351       using_rvm=false
352     fi
353
354     if [[ "$using_rvm" == true ]]; then
355         # If rvm is in use, we can't just put separate "dependencies"
356         # and "gems-under-test" paths to GEM_PATH: passenger resets
357         # the environment to the "current gemset", which would lose
358         # our GEM_PATH and prevent our test suites from running ruby
359         # programs (for example, the Workbench test suite could not
360         # boot an API server or run arv). Instead, we have to make an
361         # rvm gemset and use it for everything.
362
363         [[ `type rvm | head -n1` == "rvm is a function" ]] \
364             || fatal 'rvm check'
365
366         # Put rvm's favorite path back in first place (overriding
367         # virtualenv, which just put itself there). Ignore rvm's
368         # complaint about not being in first place already.
369         rvm use @default 2>/dev/null
370
371         # Create (if needed) and switch to an @arvados-tests-* gemset,
372         # salting the gemset name so it doesn't interfere with
373         # concurrent builds in other workspaces. Leave the choice of
374         # ruby to the caller.
375         gemset="arvados-tests-$(echo -n "${WORKSPACE}" | md5sum | head -c16)"
376         rvm use "@${gemset}" --create \
377             || fatal 'rvm gemset setup'
378
379         rvm env
380     else
381         # When our "bundle install"s need to install new gems to
382         # satisfy dependencies, we want them to go where "gem install
383         # --user-install" would put them. (However, if the caller has
384         # already set GEM_HOME, we assume that's where dependencies
385         # should be installed, and we should leave it alone.)
386
387         if [ -z "$GEM_HOME" ]; then
388             user_gempath="$(gem env gempath)"
389             export GEM_HOME="${user_gempath%%:*}"
390         fi
391         PATH="$(gem env gemdir)/bin:$PATH"
392
393         # When we build and install our own gems, we install them in our
394         # $GEMHOME tmpdir, and we want them to be at the front of GEM_PATH and
395         # PATH so integration tests prefer them over other versions that
396         # happen to be installed in $user_gempath, system dirs, etc.
397
398         tmpdir_gem_home="$(env - PATH="$PATH" HOME="$GEMHOME" gem env gempath | cut -f1 -d:)"
399         PATH="$tmpdir_gem_home/bin:$PATH"
400         export GEM_PATH="$tmpdir_gem_home:$(gem env gempath)"
401
402         echo "Will install dependencies to $(gem env gemdir)"
403         echo "Will install arvados gems to $tmpdir_gem_home"
404         echo "Gem search path is GEM_PATH=$GEM_PATH"
405     fi
406 }
407
408 with_test_gemset() {
409     if [[ "$using_rvm" == true ]]; then
410         "$@"
411     else
412         GEM_HOME="$tmpdir_gem_home" GEM_PATH="$tmpdir_gem_home" "$@"
413     fi
414 }
415
416 gem_uninstall_if_exists() {
417     if gem list "$1\$" | egrep '^\w'; then
418         gem uninstall --force --all --executables "$1"
419     fi
420 }
421
422 setup_virtualenv() {
423     local venvdest="$1"; shift
424     if ! [[ -e "$venvdest/bin/activate" ]] || ! [[ -e "$venvdest/bin/pip" ]]; then
425         virtualenv --setuptools "$@" "$venvdest" || fatal "virtualenv $venvdest failed"
426     fi
427     if [[ $("$venvdest/bin/python" --version 2>&1) =~ \ 3\.[012]\. ]]; then
428         # pip 8.0.0 dropped support for python 3.2, e.g., debian wheezy
429         "$venvdest/bin/pip" install 'setuptools>=18.5' 'pip>=7,<8'
430     else
431         "$venvdest/bin/pip" install 'setuptools>=18.5' 'pip>=7'
432     fi
433     # ubuntu1404 can't seem to install mock via tests_require, but it can do this.
434     "$venvdest/bin/pip" install 'mock>=1.0' 'pbr<1.7.0'
435 }
436
437 export PERLINSTALLBASE
438 export PERLLIB="$PERLINSTALLBASE/lib/perl5:${PERLLIB:+$PERLLIB}"
439
440 export GOPATH
441 mkdir -p "$GOPATH/src/git.curoverse.com"
442 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git" \
443     || fatal "symlink failed"
444
445 setup_virtualenv "$VENVDIR" --python python2.7
446 . "$VENVDIR/bin/activate"
447
448 # Needed for run_test_server.py which is used by certain (non-Python) tests.
449 pip freeze 2>/dev/null | egrep ^PyYAML= \
450     || pip install PyYAML >/dev/null \
451     || fatal "pip install PyYAML failed"
452
453 # Preinstall forked version of libcloud, because nodemanager "pip install"
454 # won't pick it up by default.
455 pip freeze 2>/dev/null | egrep ^apache-libcloud==$LIBCLOUD_PIN \
456     || pip install --pre --ignore-installed https://github.com/curoverse/libcloud/archive/apache-libcloud-$LIBCLOUD_PIN.zip >/dev/null \
457     || fatal "pip install apache-libcloud failed"
458
459 # Uninstall old llfuse (<1.0), because services/fuse "pip install"
460 # won't upgrade it by default.
461 if pip freeze | egrep '^llfuse==0'; then
462     yes | pip uninstall 'llfuse<1.0'
463 fi
464
465 # Deactivate Python 2 virtualenv
466 deactivate
467
468 declare -a pythonstuff
469 pythonstuff=(
470     sdk/pam
471     sdk/python
472     sdk/python:py3
473     sdk/cwl
474     services/dockercleaner:py3
475     services/fuse
476     services/nodemanager
477     tools/crunchstat-summary
478     )
479
480 # If Python 3 is available, set up its virtualenv in $VENV3DIR.
481 # Otherwise, skip dependent tests.
482 PYTHON3=$(which python3)
483 if [[ ${?} = 0 ]]; then
484     setup_virtualenv "$VENV3DIR" --python python3
485 else
486     PYTHON3=
487     cat >&2 <<EOF
488
489 Warning: python3 could not be found. Python 3 tests will be skipped.
490
491 EOF
492 fi
493
494 # Reactivate Python 2 virtualenv
495 . "$VENVDIR/bin/activate"
496
497 # Note: this must be the last time we change PATH, otherwise rvm will
498 # whine a lot.
499 setup_ruby_environment
500
501 echo "PATH is $PATH"
502
503 if ! which bundler >/dev/null
504 then
505     gem install --user-install bundler || fatal 'Could not install bundler'
506 fi
507
508 retry() {
509     remain="${repeat}"
510     while :
511     do
512         if ${@}; then
513             if [[ "$remain" -gt 1 ]]; then
514                 remain=$((${remain}-1))
515                 title "Repeating ${remain} more times"
516             else
517                 break
518             fi
519         elif [[ "$retry" == 1 ]]; then
520             read -p 'Try again? [Y/n] ' x
521             if [[ "$x" != "y" ]] && [[ "$x" != "" ]]
522             then
523                 break
524             fi
525         else
526             break
527         fi
528     done
529 }
530
531 do_test() {
532     case "${1}" in
533         apps/workbench_units | apps/workbench_functionals | apps/workbench_integration)
534             suite=apps/workbench
535             ;;
536         *)
537             suite="${1}"
538             ;;
539     esac
540     if [[ -z "${skip[$suite]}" && -z "${skip[$1]}" && \
541                 (-z "${only}" || "${only}" == "${suite}" || \
542                  "${only}" == "${1}") ]]; then
543         retry do_test_once ${@}
544     else
545         title "Skipping ${1} tests"
546     fi
547 }
548
549 do_test_once() {
550     unset result
551
552     title "Running $1 tests"
553     timer_reset
554     if [[ "$2" == "go" ]]
555     then
556         covername="coverage-$(echo "$1" | sed -e 's/\//_/g')"
557         coverflags=("-covermode=count" "-coverprofile=$WORKSPACE/tmp/.$covername.tmp")
558         # We do "go get -t" here to catch compilation errors
559         # before trying "go test". Otherwise, coverage-reporting
560         # mode makes Go show the wrong line numbers when reporting
561         # compilation errors.
562         go get -t "git.curoverse.com/arvados.git/$1" && \
563             cd "$WORKSPACE/$1" && \
564             [[ -z "$(gofmt -e -d . | tee /dev/stderr)" ]] && \
565             if [[ -n "${testargs[$1]}" ]]
566         then
567             # "go test -check.vv giturl" doesn't work, but this
568             # does:
569             go test ${short:+-short} ${testargs[$1]}
570         else
571             # The above form gets verbose even when testargs is
572             # empty, so use this form in such cases:
573             go test ${short:+-short} ${coverflags[@]} "git.curoverse.com/arvados.git/$1"
574         fi
575         result=${result:-$?}
576         if [[ -f "$WORKSPACE/tmp/.$covername.tmp" ]]
577         then
578             go tool cover -html="$WORKSPACE/tmp/.$covername.tmp" -o "$WORKSPACE/tmp/$covername.html"
579             rm "$WORKSPACE/tmp/.$covername.tmp"
580         fi
581     elif [[ "$2" == "pip" ]]
582     then
583         tries=0
584         cd "$WORKSPACE/$1" && while :
585         do
586             tries=$((${tries}+1))
587             # $3 can name a path directory for us to use, including trailing
588             # slash; e.g., the bin/ subdirectory of a virtualenv.
589             "${3}python" setup.py ${short:+--short-tests-only} test ${testargs[$1]}
590             result=$?
591             if [[ ${tries} < 3 && ${result} == 137 ]]
592             then
593                 printf '\n*****\n%s tests killed -- retrying\n*****\n\n' "$1"
594                 continue
595             else
596                 break
597             fi
598         done
599     elif [[ "$2" != "" ]]
600     then
601         "test_$2"
602     else
603         "test_$1"
604     fi
605     result=${result:-$?}
606     checkexit $result "$1 tests"
607     title "End of $1 tests (`timer`)"
608     return $result
609 }
610
611 do_install() {
612     if [[ -z "${only_install}" || "${only_install}" == "${1}" ]]; then
613         retry do_install_once ${@}
614     else
615         title "Skipping $1 install"
616     fi
617 }
618
619 do_install_once() {
620     title "Running $1 install"
621     timer_reset
622     if [[ "$2" == "go" ]]
623     then
624         go get -t "git.curoverse.com/arvados.git/$1"
625     elif [[ "$2" == "pip" ]]
626     then
627         # $3 can name a path directory for us to use, including trailing
628         # slash; e.g., the bin/ subdirectory of a virtualenv.
629
630         # Need to change to a different directory after creating
631         # the source dist package to avoid a pip bug.
632         # see https://arvados.org/issues/5766 for details.
633
634         # Also need to install twice, because if it believes the package is
635         # already installed, pip it won't install it.  So the first "pip
636         # install" ensures that the dependencies are met, the second "pip
637         # install" ensures that we've actually installed the local package
638         # we just built.
639         cd "$WORKSPACE/$1" \
640             && "${3}python" setup.py sdist rotate --keep=1 --match .tar.gz \
641             && cd "$WORKSPACE" \
642             && "${3}pip" install --quiet "$WORKSPACE/$1/dist"/*.tar.gz \
643             && "${3}pip" install --quiet --no-deps --ignore-installed "$WORKSPACE/$1/dist"/*.tar.gz
644     elif [[ "$2" != "" ]]
645     then
646         "install_$2"
647     else
648         "install_$1"
649     fi
650     result=$?
651     checkexit $result "$1 install"
652     title "End of $1 install (`timer`)"
653     return $result
654 }
655
656 bundle_install_trylocal() {
657     (
658         set -e
659         echo "(Running bundle install --local. 'could not find package' messages are OK.)"
660         if ! bundle install --local --no-deployment; then
661             echo "(Running bundle install again, without --local.)"
662             bundle install --no-deployment
663         fi
664         bundle package --all
665     )
666 }
667
668 install_doc() {
669     cd "$WORKSPACE/doc" \
670         && bundle_install_trylocal \
671         && rm -rf .site
672 }
673 do_install doc
674
675 install_gem() {
676     gemname=$1
677     srcpath=$2
678     with_test_gemset gem_uninstall_if_exists "$gemname" \
679         && cd "$WORKSPACE/$srcpath" \
680         && bundle_install_trylocal \
681         && gem build "$gemname.gemspec" \
682         && with_test_gemset gem install --no-ri --no-rdoc $(ls -t "$gemname"-*.gem|head -n1)
683 }
684
685 install_ruby_sdk() {
686     install_gem arvados sdk/ruby
687 }
688 do_install sdk/ruby ruby_sdk
689
690 install_perl_sdk() {
691     cd "$WORKSPACE/sdk/perl" \
692         && perl Makefile.PL INSTALL_BASE="$PERLINSTALLBASE" \
693         && make install INSTALLDIRS=perl
694 }
695 do_install sdk/perl perl_sdk
696
697 install_cli() {
698     install_gem arvados-cli sdk/cli
699 }
700 do_install sdk/cli cli
701
702 install_login-sync() {
703     install_gem arvados-login-sync services/login-sync
704 }
705 do_install services/login-sync login-sync
706
707 # Install the Python SDK early. Various other test suites (like
708 # keepproxy) bring up run_test_server.py, which imports the arvados
709 # module. We can't actually *test* the Python SDK yet though, because
710 # its own test suite brings up some of those other programs (like
711 # keepproxy).
712 for p in "${pythonstuff[@]}"
713 do
714     dir=${p%:py3}
715     if [[ ${dir} = ${p} ]]; then
716         if [[ -z ${skip[python2]} ]]; then
717             do_install ${dir} pip
718         fi
719     elif [[ -n ${PYTHON3} ]]; then
720         if [[ -z ${skip[python3]} ]]; then
721             do_install ${dir} pip "$VENV3DIR/bin/"
722         fi
723     fi
724 done
725
726 install_apiserver() {
727     cd "$WORKSPACE/services/api" \
728         && RAILS_ENV=test bundle_install_trylocal
729
730     rm -f config/environments/test.rb
731     cp config/environments/test.rb.example config/environments/test.rb
732
733     if [ -n "$CONFIGSRC" ]
734     then
735         for f in database.yml
736         do
737             cp "$CONFIGSRC/$f" config/ || fatal "$f"
738         done
739     fi
740
741     # Clear out any lingering postgresql connections to the test
742     # database, so that we can drop it. This assumes the current user
743     # is a postgresql superuser.
744     cd "$WORKSPACE/services/api" \
745         && test_database=$(python -c "import yaml; print yaml.load(file('config/database.yml'))['test']['database']") \
746         && psql "$test_database" -c "SELECT pg_terminate_backend (pg_stat_activity.procpid::int) FROM pg_stat_activity WHERE pg_stat_activity.datname = '$test_database';" 2>/dev/null
747
748     cd "$WORKSPACE/services/api" \
749         && RAILS_ENV=test bundle exec rake db:drop \
750         && RAILS_ENV=test bundle exec rake db:setup \
751         && RAILS_ENV=test bundle exec rake db:fixtures:load
752 }
753 do_install services/api apiserver
754
755 declare -a gostuff
756 gostuff=(
757     sdk/go/arvados
758     sdk/go/arvadosclient
759     sdk/go/blockdigest
760     sdk/go/dispatch
761     sdk/go/httpserver
762     sdk/go/manifest
763     sdk/go/streamer
764     sdk/go/crunchrunner
765     sdk/go/stats
766     lib/crunchstat
767     services/arv-git-httpd
768     services/crunchstat
769     services/keep-web
770     services/keepstore
771     sdk/go/keepclient
772     services/keep-balance
773     services/keepproxy
774     services/crunch-dispatch-local
775     services/crunch-dispatch-slurm
776     services/crunch-run
777     services/ws
778     tools/keep-block-check
779     tools/keep-exercise
780     tools/keep-rsync
781     )
782 for g in "${gostuff[@]}"
783 do
784     do_install "$g" go
785 done
786
787 install_workbench() {
788     cd "$WORKSPACE/apps/workbench" \
789         && mkdir -p tmp/cache \
790         && RAILS_ENV=test bundle_install_trylocal
791 }
792 do_install apps/workbench workbench
793
794 test_doclinkchecker() {
795     (
796         set -e
797         cd "$WORKSPACE/doc"
798         ARVADOS_API_HOST=qr1hi.arvadosapi.com
799         # Make sure python-epydoc is installed or the next line won't
800         # do much good!
801         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
802     )
803 }
804 do_test doc doclinkchecker
805
806 stop_services
807
808 test_apiserver() {
809     rm -f "$WORKSPACE/services/api/git-commit.version"
810     cd "$WORKSPACE/services/api" \
811         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test TESTOPTS=-v ${testargs[services/api]}
812 }
813 do_test services/api apiserver
814
815 # Shortcut for when we're only running apiserver tests. This saves a bit of time,
816 # because we don't need to start up the api server for subsequent tests.
817 if [ ! -z "$only" ] && [ "$only" == "services/api" ]; then
818   rotate_logfile "$WORKSPACE/services/api/log/" "test.log"
819   exit_cleanly
820 fi
821
822 start_api
823
824 test_ruby_sdk() {
825     cd "$WORKSPACE/sdk/ruby" \
826         && bundle exec rake test TESTOPTS=-v ${testargs[sdk/ruby]}
827 }
828 do_test sdk/ruby ruby_sdk
829
830 test_cli() {
831     cd "$WORKSPACE/sdk/cli" \
832         && mkdir -p /tmp/keep \
833         && KEEP_LOCAL_STORE=/tmp/keep bundle exec rake test TESTOPTS=-v ${testargs[sdk/cli]}
834 }
835 do_test sdk/cli cli
836
837 test_login-sync() {
838     cd "$WORKSPACE/services/login-sync" \
839         && bundle exec rake test TESTOPTS=-v ${testargs[services/login-sync]}
840 }
841 do_test services/login-sync login-sync
842
843 for p in "${pythonstuff[@]}"
844 do
845     dir=${p%:py3}
846     if [[ ${dir} = ${p} ]]; then
847         if [[ -z ${skip[python2]} ]]; then
848             do_test ${dir} pip
849         fi
850     elif [[ -n ${PYTHON3} ]]; then
851         if [[ -z ${skip[python3]} ]]; then
852             do_test ${dir} pip "$VENV3DIR/bin/"
853         fi
854     fi
855 done
856
857 for g in "${gostuff[@]}"
858 do
859     do_test "$g" go
860 done
861
862 test_workbench_units() {
863     start_nginx_proxy_services \
864         && cd "$WORKSPACE/apps/workbench" \
865         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:units TESTOPTS=-v ${testargs[apps/workbench]}
866 }
867 do_test apps/workbench_units workbench_units
868
869 test_workbench_functionals() {
870     start_nginx_proxy_services \
871         && cd "$WORKSPACE/apps/workbench" \
872         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:functionals TESTOPTS=-v ${testargs[apps/workbench]}
873 }
874 do_test apps/workbench_functionals workbench_functionals
875
876 test_workbench_integration() {
877     start_nginx_proxy_services \
878         && cd "$WORKSPACE/apps/workbench" \
879         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:integration TESTOPTS=-v ${testargs[apps/workbench]}
880 }
881 do_test apps/workbench_integration workbench_integration
882
883
884 test_workbench_benchmark() {
885     start_nginx_proxy_services \
886         && cd "$WORKSPACE/apps/workbench" \
887         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:benchmark ${testargs[apps/workbench_benchmark]}
888 }
889 do_test apps/workbench_benchmark workbench_benchmark
890
891 test_workbench_profile() {
892     start_nginx_proxy_services \
893         && cd "$WORKSPACE/apps/workbench" \
894         && env RAILS_ENV=test ${short:+RAILS_TEST_SHORT=1} bundle exec rake test:profile ${testargs[apps/workbench_profile]}
895 }
896 do_test apps/workbench_profile workbench_profile
897
898 exit_cleanly