12be9a7dd8
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
41 lines
943 B
Bash
41 lines
943 B
Bash
setup() {
|
|
load 'helpers'
|
|
|
|
common_setup
|
|
}
|
|
|
|
@test "task: #Pull" {
|
|
cd "$TESTDIR"/tasks/pull
|
|
"$DAGGER" --europa up
|
|
}
|
|
|
|
@test "task: #ReadFile" {
|
|
cd "$TESTDIR"/tasks/readfile
|
|
"$DAGGER" --europa up
|
|
}
|
|
|
|
@test "task: #WriteFile" {
|
|
cd "$TESTDIR"/tasks/writefile
|
|
"$DAGGER" --europa up ./writefile.cue
|
|
}
|
|
|
|
@test "task: #WriteFile failure: different contents" {
|
|
cd "$TESTDIR"/tasks/writefile
|
|
run "$DAGGER" --europa up ./writefile_failure_diff_contents.cue
|
|
assert_failure
|
|
}
|
|
|
|
@test "task: #Exec" {
|
|
cd "$TESTDIR"/tasks/exec
|
|
"$DAGGER" --europa up ./args.cue
|
|
"$DAGGER" --europa up ./env.cue
|
|
"$DAGGER" --europa up ./hosts.cue
|
|
|
|
"$DAGGER" --europa up ./mount_cache.cue
|
|
"$DAGGER" --europa up ./mount_fs.cue
|
|
TESTSECRET="hello world" "$DAGGER" --europa up ./mount_secret.cue
|
|
"$DAGGER" --europa up ./mount_tmp.cue
|
|
|
|
"$DAGGER" --europa up ./user.cue
|
|
"$DAGGER" --europa up ./workdir.cue
|
|
} |