tests: move llb tests into tests/llb
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
e0afc6304d
commit
93296fa358
@ -1,15 +0,0 @@
|
|||||||
package test
|
|
||||||
|
|
||||||
#compute: [
|
|
||||||
{
|
|
||||||
do: "fetch-container"
|
|
||||||
ref: "busybox"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
do: "exec"
|
|
||||||
args: ["sh", "-c", """
|
|
||||||
echo hello > /tmp/out
|
|
||||||
"""]
|
|
||||||
// dir: "/"
|
|
||||||
},
|
|
||||||
]
|
|
115
tests/test.sh
115
tests/test.sh
@ -74,26 +74,26 @@ test::fetchcontainer(){
|
|||||||
|
|
||||||
# Fetch container
|
# Fetch container
|
||||||
disable test::one "FetchContainer: missing ref (FIXME: distinguish missing inputs from incorrect config)" --exit=1 --stdout= \
|
disable test::one "FetchContainer: missing ref (FIXME: distinguish missing inputs from incorrect config)" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/invalid
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/invalid
|
||||||
test::one "FetchContainer: non existent container image" --exit=1 --stdout= \
|
test::one "FetchContainer: non existent container image" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/nonexistent/image
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/nonexistent/image
|
||||||
test::one "FetchContainer: non existent container tag" --exit=1 --stdout= \
|
test::one "FetchContainer: non existent container tag" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/nonexistent/tag
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/nonexistent/tag
|
||||||
test::one "FetchContainer: non existent container digest" --exit=1 --stdout= \
|
test::one "FetchContainer: non existent container digest" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/nonexistent/digest
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/nonexistent/digest
|
||||||
|
|
||||||
test::one "FetchContainer: valid containers" --exit=0 \
|
test::one "FetchContainer: valid containers" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/exist
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/exist
|
||||||
|
|
||||||
disable test::one "FetchContainer: non existent container image with valid digest (FIXME https://github.com/blocklayerhq/dagger/issues/32)" --exit=1 --stdout= \
|
disable test::one "FetchContainer: non existent container image with valid digest (FIXME https://github.com/blocklayerhq/dagger/issues/32)" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-container/nonexistent/image-with-valid-digest
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-container/nonexistent/image-with-valid-digest
|
||||||
}
|
}
|
||||||
|
|
||||||
test::pushcontainer(){
|
test::pushcontainer(){
|
||||||
local dagger="$1"
|
local dagger="$1"
|
||||||
|
|
||||||
test::secret "$d"/push-container/inputs.yaml "PushContainer: simple" --exit=0 \
|
test::secret "$d"/push-container/inputs.yaml "PushContainer: simple" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/push-container
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/push-container
|
||||||
}
|
}
|
||||||
|
|
||||||
test::fetchgit(){
|
test::fetchgit(){
|
||||||
@ -101,110 +101,110 @@ test::fetchgit(){
|
|||||||
|
|
||||||
# Fetch git
|
# Fetch git
|
||||||
test::one "FetchGit: valid" --exit=0 --stdout="{}" \
|
test::one "FetchGit: valid" --exit=0 --stdout="{}" \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-git/exist
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-git/exist
|
||||||
disable test::one "FetchGit: invalid (FIXME: distinguish missing inputs from incorrect config) " --exit=1 --stdout= \
|
disable test::one "FetchGit: invalid (FIXME: distinguish missing inputs from incorrect config) " --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-git/invalid
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-git/invalid
|
||||||
test::one "FetchGit: non existent remote" --exit=1 --stdout= \
|
test::one "FetchGit: non existent remote" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-git/nonexistent/remote
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-git/nonexistent/remote
|
||||||
test::one "FetchGit: non existent ref" --exit=1 --stdout= \
|
test::one "FetchGit: non existent ref" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-git/nonexistent/ref
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-git/nonexistent/ref
|
||||||
test::one "FetchGit: non existent bork" --exit=1 --stdout= \
|
test::one "FetchGit: non existent bork" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/fetch-git/nonexistent/bork
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/fetch-git/nonexistent/bork
|
||||||
}
|
}
|
||||||
|
|
||||||
test::exec(){
|
test::exec(){
|
||||||
# Exec
|
# Exec
|
||||||
test::one "Exec: invalid" --exit=1 --stdout= \
|
test::one "Exec: invalid" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/invalid
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/invalid
|
||||||
test::one "Exec: error" --exit=1 --stdout= \
|
test::one "Exec: error" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/error
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/error
|
||||||
test::one "Exec: simple" --exit=0 --stdout={} \
|
test::one "Exec: simple" --exit=0 --stdout={} \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/simple
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/simple
|
||||||
# XXX should run twice and test that the string "always output" is visible with DOCKER_OUTPUT=1
|
# 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...
|
# Alternatively, use export, but this would test multiple things then...
|
||||||
test::one "Exec: always" --exit=0 --stdout={} \
|
test::one "Exec: always" --exit=0 --stdout={} \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/always
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/always
|
||||||
test::one "Exec: env invalid" --exit=1 --stdout= \
|
test::one "Exec: env invalid" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/env/invalid
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/env/invalid
|
||||||
test::one "Exec: env valid" --exit=0 --stdout={} \
|
test::one "Exec: env valid" --exit=0 --stdout={} \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/env/valid
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/env/valid
|
||||||
test::one "Exec: env with overlay" --exit=0 \
|
test::one "Exec: env with overlay" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-string 'bar=overlay environment' "$d"/exec/env/overlay
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-string 'bar=overlay environment' "$d"/llb/exec/env/overlay
|
||||||
|
|
||||||
test::one "Exec: non existent dir" --exit=0 --stdout={} \
|
test::one "Exec: non existent dir" --exit=0 --stdout={} \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/dir/doesnotexist
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/dir/doesnotexist
|
||||||
test::one "Exec: valid dir" --exit=0 --stdout={} \
|
test::one "Exec: valid dir" --exit=0 --stdout={} \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/dir/exist
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/dir/exist
|
||||||
|
|
||||||
disable test::one "Exec: exit code propagation (FIXME https://github.com/blocklayerhq/dagger/issues/74)" --exit=123 \
|
disable test::one "Exec: exit code propagation (FIXME https://github.com/blocklayerhq/dagger/issues/74)" --exit=123 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/exit_code
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/exit_code
|
||||||
|
|
||||||
test::one "Exec: script with referenced non-concrete property should not be executed, and should succeed overall" --exit=0 --stdout='{"hello":"world"}' \
|
test::one "Exec: script with referenced non-concrete property should not be executed, and should succeed overall" --exit=0 --stdout='{"hello":"world"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/undefined/non_concrete_referenced
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/undefined/non_concrete_referenced
|
||||||
# NOTE: the exec is meant to fail - and we test that as a way to confirm it has been executed
|
# 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 \
|
test::one "Exec: script with unreferenced undefined properties should be executed" --exit=1 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/undefined/non_concrete_not_referenced
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/undefined/non_concrete_not_referenced
|
||||||
test::one "Exec: package with optional def, not referenced, should be executed" --exit=0 \
|
test::one "Exec: package with optional def, not referenced, should be executed" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/undefined/with_pkg_def
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/undefined/with_pkg_def
|
||||||
test::one "Exec: script with optional prop, not referenced, should be executed" --exit=0 \
|
test::one "Exec: script with optional prop, not referenced, should be executed" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/undefined/with_pkg_optional
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/undefined/with_pkg_optional
|
||||||
disable test::one "Exec: script with non-optional prop, not referenced, should be executed (FIXME https://github.com/blocklayerhq/dagger/issues/70)" --exit=1 \
|
disable test::one "Exec: script with non-optional prop, not referenced, should be executed (FIXME https://github.com/blocklayerhq/dagger/issues/70)" --exit=1 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/exec/undefined/with_pkg_mandatory
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/exec/undefined/with_pkg_mandatory
|
||||||
}
|
}
|
||||||
|
|
||||||
test::export(){
|
test::export(){
|
||||||
test::one "Export: json" --exit=0 --stdout='{"testMap":{"something":"something"},"testScalar":true}' \
|
test::one "Export: json" --exit=0 --stdout='{"testMap":{"something":"something"},"testScalar":true}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/json
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/json
|
||||||
|
|
||||||
test::one "Export: string" --exit=0 --stdout='{"test":"something"}' \
|
test::one "Export: string" --exit=0 --stdout='{"test":"something"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/string
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/string
|
||||||
|
|
||||||
test::one "Export: string with additional constraint success" --exit=0 --stdout='{"test":"something"}' \
|
test::one "Export: string with additional constraint success" --exit=0 --stdout='{"test":"something"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/withvalidation
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/withvalidation
|
||||||
|
|
||||||
test::one "Export: many concurrent" --exit=0 \
|
test::one "Export: many concurrent" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/concurrency
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/concurrency
|
||||||
|
|
||||||
test::one "Export: does not pass additional validation" --exit=1 --stdout= \
|
test::one "Export: does not pass additional validation" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/invalid/validation
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/invalid/validation
|
||||||
|
|
||||||
test::one "Export: invalid format" --exit=1 --stdout= \
|
test::one "Export: invalid format" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/invalid/format
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/invalid/format
|
||||||
|
|
||||||
test::one "Export: invalid path" --exit=1 --stdout= \
|
test::one "Export: invalid path" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/invalid/path
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/invalid/path
|
||||||
|
|
||||||
test::one "Export: number" --exit=0 --stdout='{"test":-123.5}' \
|
test::one "Export: number" --exit=0 --stdout='{"test":-123.5}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/float
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/float
|
||||||
|
|
||||||
disable test::one "Export: number (FIXME: https://github.com/blocklayerhq/dagger/issues/96)" --exit=0 --stdout='{"test":-123.5}' \
|
disable test::one "Export: number (FIXME: https://github.com/blocklayerhq/dagger/issues/96)" --exit=0 --stdout='{"test":-123.5}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/number
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/number
|
||||||
|
|
||||||
test::one "Export: yaml" --exit=0 --stdout='{"testMap":{"something":"something"},"testScalar":true}' \
|
test::one "Export: yaml" --exit=0 --stdout='{"testMap":{"something":"something"},"testScalar":true}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/yaml
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/yaml
|
||||||
|
|
||||||
test::one "Export: bool" --exit=0 --stdout='{"test":true}' \
|
test::one "Export: bool" --exit=0 --stdout='{"test":true}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/export/bool
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/export/bool
|
||||||
}
|
}
|
||||||
|
|
||||||
test::copy(){
|
test::copy(){
|
||||||
test::one "Copy: valid components" --exit=0 --stdout='{"component":{},"test1":"lol","test2":"lol"}' \
|
test::one "Copy: valid components" --exit=0 --stdout='{"component":{},"test1":"lol","test2":"lol"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/copy/valid/component
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/copy/valid/component
|
||||||
test::one "Copy: valid script" --exit=0 \
|
test::one "Copy: valid script" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/copy/valid/script
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/copy/valid/script
|
||||||
|
|
||||||
disable test::one "Copy: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit=1 --stdout= \
|
disable test::one "Copy: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/copy/invalid/cache
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/copy/invalid/cache
|
||||||
}
|
}
|
||||||
|
|
||||||
test::load(){
|
test::load(){
|
||||||
test::one "Load: valid components" --exit=0 --stdout='{"component":{},"test1":"lol","test2":"lol"}' \
|
test::one "Load: valid components" --exit=0 --stdout='{"component":{},"test1":"lol","test2":"lol"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/load/valid/component
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/load/valid/component
|
||||||
test::one "Load: valid script" --exit=0 \
|
test::one "Load: valid script" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/load/valid/script
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/load/valid/script
|
||||||
|
|
||||||
test::one "Load: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit=1 --stdout= \
|
test::one "Load: invalid caching (FIXME https://github.com/blocklayerhq/dagger/issues/44)" --exit=1 --stdout= \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/load/invalid/cache
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/load/invalid/cache
|
||||||
}
|
}
|
||||||
|
|
||||||
test::local(){
|
test::local(){
|
||||||
@ -213,16 +213,16 @@ test::local(){
|
|||||||
|
|
||||||
test::mount(){
|
test::mount(){
|
||||||
test::one "Mount: tmpfs" --exit=0 \
|
test::one "Mount: tmpfs" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/mounts/valid/tmpfs
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/mounts/valid/tmpfs
|
||||||
|
|
||||||
test::one "Mount: cache" --exit=0 \
|
test::one "Mount: cache" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/mounts/valid/cache
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/mounts/valid/cache
|
||||||
|
|
||||||
test::one "Mount: component" --exit=0 --stdout='{"test":"hello world"}' \
|
test::one "Mount: component" --exit=0 --stdout='{"test":"hello world"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/mounts/valid/component
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/mounts/valid/component
|
||||||
|
|
||||||
disable test::one "Mount: script (FIXME https://github.com/blocklayerhq/dagger/issues/46)" --exit=0 \
|
disable test::one "Mount: script (FIXME https://github.com/blocklayerhq/dagger/issues/46)" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/mounts/valid/script
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/mounts/valid/script
|
||||||
}
|
}
|
||||||
|
|
||||||
test::input() {
|
test::input() {
|
||||||
@ -241,12 +241,12 @@ test::input() {
|
|||||||
|
|
||||||
test::subdir() {
|
test::subdir() {
|
||||||
test::one "Subdir: simple usage" --exit=0 --stdout='{"hello":"world"}' \
|
test::one "Subdir: simple usage" --exit=0 --stdout='{"hello":"world"}' \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/subdir/simple
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute "$d"/llb/subdir/simple
|
||||||
}
|
}
|
||||||
|
|
||||||
test::dockerbuild() {
|
test::dockerbuild() {
|
||||||
test::one "Docker Build" --exit=0 \
|
test::one "Docker Build" --exit=0 \
|
||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-dir TestData="$d"/dockerbuild/testdata "$d"/dockerbuild
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-dir TestData="$d"/llb/dockerbuild/testdata "$d"/llb/dockerbuild
|
||||||
}
|
}
|
||||||
|
|
||||||
test::daggerignore() {
|
test::daggerignore() {
|
||||||
@ -254,27 +254,30 @@ test::daggerignore() {
|
|||||||
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-dir TestData="$d"/ignore/testdata "$d"/ignore
|
"$dagger" "${DAGGER_BINARY_ARGS[@]}" compute --input-dir TestData="$d"/ignore/testdata "$d"/ignore
|
||||||
}
|
}
|
||||||
|
|
||||||
test::all(){
|
test::llb(){
|
||||||
local dagger="$1"
|
local dagger="$1"
|
||||||
|
|
||||||
test::load "$dagger"
|
test::load "$dagger"
|
||||||
test::mount "$dagger"
|
test::mount "$dagger"
|
||||||
|
|
||||||
test::copy "$dagger"
|
test::copy "$dagger"
|
||||||
test::local "$dagger"
|
test::local "$dagger"
|
||||||
test::compute "$dagger"
|
|
||||||
test::fetchcontainer "$dagger"
|
test::fetchcontainer "$dagger"
|
||||||
test::pushcontainer "$dagger"
|
test::pushcontainer "$dagger"
|
||||||
test::fetchgit "$dagger"
|
test::fetchgit "$dagger"
|
||||||
test::exec "$dagger"
|
test::exec "$dagger"
|
||||||
test::export "$dagger"
|
test::export "$dagger"
|
||||||
test::input "$dagger"
|
|
||||||
test::subdir "$dagger"
|
test::subdir "$dagger"
|
||||||
test::dockerbuild "$dagger"
|
test::dockerbuild "$dagger"
|
||||||
|
}
|
||||||
|
|
||||||
|
test::all(){
|
||||||
|
local dagger="$1"
|
||||||
|
|
||||||
|
test::llb "$dagger"
|
||||||
|
test::compute "$dagger"
|
||||||
|
test::input "$dagger"
|
||||||
test::daggerignore "$dagger"
|
test::daggerignore "$dagger"
|
||||||
|
|
||||||
test::stdlib "$dagger"
|
test::stdlib "$dagger"
|
||||||
|
|
||||||
test::examples "$dagger"
|
test::examples "$dagger"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user