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