1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 // Skip this slow test unless invoked as "go test -tags docker".
6 // Depending on host/network speed, Go's default 10m test timeout
7 // might be too short; recommend "go test -timeout 20m -tags docker".
20 func (*Suite) TestInstallDeps(c *check.C) {
25 sourcepath="$(realpath ../..)"
26 (cd ${sourcepath} && go build -o ${tmp} ./cmd/arvados-server)
27 docker run -i --rm --workdir /arvados \
28 --mount type=bind,src="${tmp}/arvados-server",dst=/arvados-server,readonly \
29 --mount type=bind,src="${sourcepath}",dst=/arvados,readonly \
30 --mount type=tmpfs,dst=/arvados/services/api/.bundle \
31 --mount type=tmpfs,dst=/arvados/services/api/tmp \
35 bash -c "/arvados-server install -type test &&
36 git config --global --add safe.directory /arvados &&
37 /arvados-server boot -type test -config doc/examples/config/zzzzz.yml -own-temporary-database -shutdown -timeout 9m"
39 c.Check((&installCommand{}).runBash(script, os.Stdout, os.Stderr), check.IsNil)