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