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