This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests
Solomon Hykes acba8b3988 Simplify runtime code by removing layers of abstraction
- Remove intermediary types `Component`, `Script`, `Op`, `mount`: just use
  `cc.Value` directly
- Remove `Executable` interface.
- Execute llb code with a simple concrete type `Pipeline`
- Analyze llb code with a simple utility `Analyze`

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
2021-02-12 22:20:20 +00:00
..
compute tests: move tests top-level 2021-02-03 15:02:43 -08:00
copy tests: move tests top-level 2021-02-03 15:02:43 -08:00
dependencies tests: move tests top-level 2021-02-03 15:02:43 -08:00
exec tests: move tests top-level 2021-02-03 15:02:43 -08:00
export tests: move tests top-level 2021-02-03 15:02:43 -08:00
fetch-container tests: move tests top-level 2021-02-03 15:02:43 -08:00
fetch-git tests: move tests top-level 2021-02-03 15:02:43 -08:00
input tests: move tests top-level 2021-02-03 15:02:43 -08:00
load tests: move tests top-level 2021-02-03 15:02:43 -08:00
mounts/valid tests: move tests top-level 2021-02-03 15:02:43 -08:00
repro-19 tests: move tests top-level 2021-02-03 15:02:43 -08:00
subdir/simple {do:"subdir"} to select a subdirectory in a script 2021-02-05 15:27:37 -08:00
README.md tests: move tests top-level 2021-02-03 15:02:43 -08:00
test-lib.sh tests: move tests top-level 2021-02-03 15:02:43 -08:00
test-test.sh tests: move tests top-level 2021-02-03 15:02:43 -08:00
test.sh Simplify runtime code by removing layers of abstraction 2021-02-12 22:20:20 +00:00

Testing

TL;DR

# Get help
./test.sh --help

# Run all tests
# You can also just call ./test.sh with no argument
# Also, `make integration` does exactly that
./test.sh all

# Run one random dagger cue directory, with expectations on exit code, stdout, stderr
./test.sh fetch-git/nonexistent/ref --exit=1 --stdout=

By default, the dagger binary is expected to be found in ../../cmd/dagger/dagger relative to the test.sh script.

If you need to change this, pass along DAGGER_BINARY=somewhere/dagger