2021-01-14 22:50:54 +01:00
#!/usr/bin/env bash
set -o errexit -o errtrace -o functrace -o nounset -o pipefail
# Source the lib
readonly d = $( cd " $( dirname " ${ BASH_SOURCE [0] :- $PWD } " ) " 2>/dev/null 1>& 2 && pwd )
# shellcheck source=/dev/null
. " $d /test-lib.sh "
# Point this to your dagger binary
2021-03-08 17:05:13 +01:00
readonly DAGGER_BINARY = " ${ DAGGER_BINARY :- $d /../cmd/dagger/dagger } "
2021-01-21 00:58:57 +01:00
# The default arguments are a no-op, but having "anything" is a little cheat necessary for "${DAGGER_BINARY_ARGS[@]}" to not be empty down there
DAGGER_BINARY_ARGS = " ${ DAGGER_BINARY_ARGS :- --log-format json } "
read -ra DAGGER_BINARY_ARGS <<< " ${ DAGGER_BINARY_ARGS :- } "
readonly DAGGER_BINARY_ARGS
2021-01-14 22:50:54 +01:00
2021-04-01 04:04:37 +02:00
test::all( ) {
local dagger = " $1 "
test::llb " $dagger "
test::stdlib " $dagger "
2021-04-01 04:15:48 +02:00
test::dependencies " $dagger "
2021-04-01 04:04:37 +02:00
test::compute " $dagger "
test::daggerignore " $dagger "
test::examples " $dagger "
}
test::llb( ) {
local dagger = " $1 "
test::llb::load " $dagger "
test::llb::mount " $dagger "
test::llb::copy " $dagger "
test::llb::local " $dagger "
test::llb::fetchcontainer " $dagger "
test::llb::pushcontainer " $dagger "
test::llb::fetchgit " $dagger "
test::llb::exec " $dagger "
test::llb::export " $dagger "
test::llb::subdir " $dagger "
test::llb::dockerbuild " $dagger "
}
test::stdlib( ) {
2021-02-25 04:18:24 +01:00
local dagger = " $1 "
test::one "stdlib: alpine" \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /stdlib/alpine
2021-03-08 17:05:13 +01:00
test::one "stdlib: yarn" \
2021-02-25 04:18:24 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /stdlib/yarn --input-dir TestData = " $d " /stdlib/yarn/testdata
2021-03-08 17:05:13 +01:00
test::one "stdlib: go" \
2021-02-25 04:18:24 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /stdlib/go --input-dir TestData = " $d " /stdlib/go/testdata
2021-03-15 13:23:24 +01:00
test::one "stdlib: file" \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /stdlib/file
2021-03-19 01:36:10 +01:00
test::secret " $d " /stdlib/netlify/inputs.yaml "stdlib: netlify" \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /stdlib/netlify
2021-02-25 04:18:24 +01:00
}
2021-04-01 04:15:48 +02:00
test::dependencies( ) {
local dagger = " $1 "
test::one "Dependencies: simple direct dependency" --exit= 0 --stdout= '{"A":{"result":"from A"},"B":{"result":"dependency from A"}}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /dependencies/simple
test::one "Dependencies: interpolation" --exit= 0 --stdout= '{"A":{"result":"from A"},"B":{"result":"dependency from A"}}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /dependencies/interpolation
test::one "Dependencies: json.Unmarshal" --exit= 0 --stdout= '{"A":"{\"hello\": \"world\"}\n","B":{"result":"unmarshalled.hello=world"},"unmarshalled":{"hello":"world"}}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /dependencies/unmarshal
}
2021-01-14 22:50:54 +01:00
test::compute( ) {
local dagger = " $1 "
2021-01-26 20:33:10 +01:00
# Compute: invalid syntax
2021-01-14 22:50:54 +01:00
test::one "Compute: invalid string should fail" --exit= 1 --stdout= \
2021-01-21 00:58:57 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/invalid/string
2021-01-14 22:50:54 +01:00
test::one "Compute: invalid bool should fail" --exit= 1 --stdout= \
2021-01-21 00:58:57 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/invalid/bool
2021-01-14 22:50:54 +01:00
test::one "Compute: invalid int should fail" --exit= 1 --stdout= \
2021-01-21 00:58:57 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/invalid/int
2021-01-14 22:50:54 +01:00
test::one "Compute: invalid struct should fail" --exit= 1 --stdout= \
2021-01-21 00:58:57 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/invalid/struct
2021-01-26 20:33:10 +01:00
# Compute: success
2021-02-13 00:22:41 +01:00
test::one "Compute: noop should succeed" --exit= 0 --stdout= '{"empty":{}}' \
2021-01-26 20:33:10 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/success/noop
2021-01-14 22:50:54 +01:00
test::one "Compute: simple should succeed" --exit= 0 --stdout= "{}" \
2021-01-26 20:33:10 +01:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/success/simple
test::one "Compute: overloading #Component should work" --exit= 0 \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/success/overload/flat
test::one "Compute: overloading #Component should work" --exit= 0 \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/success/overload/wrapped
2021-01-14 22:50:54 +01:00
2021-04-01 04:15:48 +02:00
# Compute: `--input-*`
test::one "Compute: Input: missing input should skip execution" --exit= 0 --stdout= '{}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/input/simple
test::one "Compute: Input: simple input" --exit= 0 --stdout= '{"in":"foobar","test":"received: foobar"}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute --input-string 'in=foobar' " $d " /compute/input/simple
2021-02-02 04:12:38 +01:00
2021-04-01 04:15:48 +02:00
test::one "Compute: Input: default values" --exit= 0 --stdout= '{"in":"default input","test":"received: default input"}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /compute/input/default
2021-04-01 04:04:37 +02:00
2021-04-01 04:15:48 +02:00
test::one "Compute: Input: override default value" --exit= 0 --stdout= '{"in":"foobar","test":"received: foobar"}' \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute --input-string 'in=foobar' " $d " /compute/input/default
2021-04-01 04:04:37 +02:00
2021-02-02 04:12:38 +01:00
}
2021-04-01 04:04:37 +02:00
test::daggerignore( ) {
test::one "Dagger Ignore" --exit= 0 \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute --input-dir TestData = " $d " /ignore/testdata " $d " /ignore
}
test::examples( ) {
test::secret " $d " /../examples/react-netlify/inputs.yaml "examples: React Netlify" --exit= 0 \
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /../examples/react-netlify
}
test::llb::fetchcontainer( ) {
2021-01-14 22:50:54 +01:00
local dagger = " $1 "
# Fetch container
2021-01-26 00:26:06 +01:00
disable test::one "FetchContainer: missing ref (FIXME: distinguish missing inputs from incorrect config)" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/invalid
2021-01-14 22:50:54 +01:00
test::one "FetchContainer: non existent container image" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/nonexistent/image
2021-01-14 22:50:54 +01:00
test::one "FetchContainer: non existent container tag" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/nonexistent/tag
2021-01-14 22:50:54 +01:00
test::one "FetchContainer: non existent container digest" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/nonexistent/digest
2021-01-16 00:10:28 +01:00
2021-01-14 22:50:54 +01:00
test::one "FetchContainer: valid containers" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/exist
2021-01-16 00:10:28 +01:00
disable test::one "FetchContainer: non existent container image with valid digest (FIXME https://github.com/blocklayerhq/dagger/issues/32)" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-container/nonexistent/image-with-valid-digest
2021-01-14 22:50:54 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::pushcontainer( ) {
2021-03-13 01:14:00 +01:00
local dagger = " $1 "
2021-04-01 04:04:37 +02:00
test::secret " $d " /llb/push-container/inputs.yaml "PushContainer: simple" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/push-container
2021-03-13 01:14:00 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::fetchgit( ) {
2021-01-14 22:50:54 +01:00
local dagger = " $1 "
# Fetch git
test::one "FetchGit: valid" --exit= 0 --stdout= "{}" \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-git/exist
2021-01-26 00:26:06 +01:00
disable test::one "FetchGit: invalid (FIXME: distinguish missing inputs from incorrect config) " --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-git/invalid
2021-01-14 22:50:54 +01:00
test::one "FetchGit: non existent remote" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-git/nonexistent/remote
2021-01-14 22:50:54 +01:00
test::one "FetchGit: non existent ref" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-git/nonexistent/ref
2021-01-14 22:50:54 +01:00
test::one "FetchGit: non existent bork" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/fetch-git/nonexistent/bork
2021-01-14 22:50:54 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::exec( ) {
2021-01-14 22:50:54 +01:00
# Exec
test::one "Exec: invalid" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/invalid
2021-01-14 22:50:54 +01:00
test::one "Exec: error" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/error
2021-01-14 22:50:54 +01:00
test::one "Exec: simple" --exit= 0 --stdout= { } \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/simple
2021-01-14 22:50:54 +01:00
# XXX should run twice and test that the string "always output" is visible with DOCKER_OUTPUT=1
# Alternatively, use export, but this would test multiple things then...
test::one "Exec: always" --exit= 0 --stdout= { } \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/always
2021-01-14 22:50:54 +01:00
test::one "Exec: env invalid" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/env/invalid
2021-01-14 22:50:54 +01:00
test::one "Exec: env valid" --exit= 0 --stdout= { } \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/env/valid
2021-01-15 03:55:23 +01:00
test::one "Exec: env with overlay" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute --input-string 'bar=overlay environment' " $d " /llb/exec/env/overlay
2021-01-16 00:10:28 +01:00
2021-01-26 01:18:58 +01:00
test::one "Exec: non existent dir" --exit= 0 --stdout= { } \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/dir/doesnotexist
2021-01-26 01:18:58 +01:00
test::one "Exec: valid dir" --exit= 0 --stdout= { } \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/dir/exist
2021-01-26 20:33:10 +01:00
disable test::one "Exec: exit code propagation (FIXME https://github.com/blocklayerhq/dagger/issues/74)" --exit= 123 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/exit_code
2021-01-26 20:33:10 +01:00
test::one "Exec: script with referenced non-concrete property should not be executed, and should succeed overall" --exit= 0 --stdout= '{"hello":"world"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/undefined/non_concrete_referenced
2021-01-26 20:33:10 +01:00
# NOTE: the exec is meant to fail - and we test that as a way to confirm it has been executed
test::one "Exec: script with unreferenced undefined properties should be executed" --exit= 1 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/undefined/non_concrete_not_referenced
2021-01-26 20:33:10 +01:00
test::one "Exec: package with optional def, not referenced, should be executed" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/undefined/with_pkg_def
2021-01-26 20:33:10 +01:00
test::one "Exec: script with optional prop, not referenced, should be executed" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/undefined/with_pkg_optional
2021-01-26 20:33:10 +01:00
disable test::one "Exec: script with non-optional prop, not referenced, should be executed (FIXME https://github.com/blocklayerhq/dagger/issues/70)" --exit= 1 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/exec/undefined/with_pkg_mandatory
2021-01-14 22:50:54 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::export( ) {
2021-01-26 00:07:54 +01:00
test::one "Export: json" --exit= 0 --stdout= '{"testMap":{"something":"something"},"testScalar":true}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/json
2021-01-15 04:56:48 +01:00
test::one "Export: string" --exit= 0 --stdout= '{"test":"something"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/string
2021-01-15 04:56:48 +01:00
test::one "Export: string with additional constraint success" --exit= 0 --stdout= '{"test":"something"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/withvalidation
2021-01-15 04:56:48 +01:00
2021-01-16 01:24:17 +01:00
test::one "Export: many concurrent" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/concurrency
2021-01-16 01:24:17 +01:00
2021-01-15 04:56:48 +01:00
test::one "Export: does not pass additional validation" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/invalid/validation
2021-01-15 04:56:48 +01:00
test::one "Export: invalid format" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/invalid/format
2021-01-15 04:56:48 +01:00
test::one "Export: invalid path" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/invalid/path
2021-01-16 00:10:28 +01:00
2021-01-26 00:07:54 +01:00
test::one "Export: number" --exit= 0 --stdout= '{"test":-123.5}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/float
2021-01-26 00:07:54 +01:00
disable test::one "Export: number (FIXME: https://github.com/blocklayerhq/dagger/issues/96)" --exit= 0 --stdout= '{"test":-123.5}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/number
2021-01-26 00:07:54 +01:00
test::one "Export: yaml" --exit= 0 --stdout= '{"testMap":{"something":"something"},"testScalar":true}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/yaml
2021-01-26 00:07:54 +01:00
test::one "Export: bool" --exit= 0 --stdout= '{"test":true}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/export/bool
2021-01-15 04:56:48 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::copy( ) {
2021-01-16 00:10:28 +01:00
test::one "Copy: valid components" --exit= 0 --stdout= '{"component":{},"test1":"lol","test2":"lol"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/copy/valid/component
2021-01-16 01:24:17 +01:00
test::one "Copy: valid script" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/copy/valid/script
2021-01-16 00:10:28 +01:00
disable test::one "Copy: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/copy/invalid/cache
2021-01-16 00:10:28 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::load( ) {
2021-01-16 01:24:17 +01:00
test::one "Load: valid components" --exit= 0 --stdout= '{"component":{},"test1":"lol","test2":"lol"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/load/valid/component
2021-01-16 01:24:17 +01:00
test::one "Load: valid script" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/load/valid/script
2021-01-16 01:24:17 +01:00
test::one "Load: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit= 1 --stdout= \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/load/invalid/cache
2021-01-16 01:24:17 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::local( ) {
2021-01-16 00:10:28 +01:00
disable "" "There are no local tests right now (the feature is possibly not functioning at all: see https://github.com/blocklayerhq/dagger/issues/41)"
}
2021-04-01 04:04:37 +02:00
test::llb::mount( ) {
2021-03-04 23:06:48 +01:00
test::one "Mount: tmpfs" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/mounts/valid/tmpfs
2021-01-16 01:24:17 +01:00
2021-03-04 23:06:48 +01:00
test::one "Mount: cache" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/mounts/valid/cache
2021-01-16 01:24:17 +01:00
2021-03-04 23:06:48 +01:00
test::one "Mount: component" --exit= 0 --stdout= '{"test":"hello world"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/mounts/valid/component
2021-01-16 01:24:17 +01:00
disable test::one "Mount: script (FIXME https://github.com/blocklayerhq/dagger/issues/46)" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/mounts/valid/script
2021-01-16 01:24:17 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::subdir( ) {
2021-02-04 20:38:05 +01:00
test::one "Subdir: simple usage" --exit= 0 --stdout= '{"hello":"world"}' \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute " $d " /llb/subdir/simple
2021-02-04 20:38:05 +01:00
}
2021-04-01 04:04:37 +02:00
test::llb::dockerbuild( ) {
2021-02-19 09:09:53 +01:00
test::one "Docker Build" --exit= 0 \
2021-04-01 03:49:53 +02:00
" $dagger " " ${ DAGGER_BINARY_ARGS [@] } " compute --input-dir TestData = " $d " /llb/dockerbuild/testdata " $d " /llb/dockerbuild
2021-02-19 09:09:53 +01:00
}
2021-01-14 22:50:54 +01:00
case " ${ 1 :- all } " in
# Help
--help)
echo "Run all known tests:"
echo " ./test.sh"
echo "Run a specific cue module with expectations (all flags are optional if you just expect the command to succeed with no output validation:"
echo " ./test.sh cuefolder --exit=1 --stderr=lala --stdout=foo"
; ;
# Run all tests
"all" )
test::all " $DAGGER_BINARY "
; ;
# Anything else means a single / custom test
*)
test::one " on demand $1 " " $DAGGER_BINARY " compute " $@ "
; ;
esac