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