Add mkdir task tests
Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
This commit is contained in:
parent
09c427f1cf
commit
d2580f4a73
@ -51,7 +51,24 @@ setup() {
|
|||||||
cd "$TESTDIR"/tasks/copy
|
cd "$TESTDIR"/tasks/copy
|
||||||
"$DAGGER" --europa up ./copy_exec.cue
|
"$DAGGER" --europa up ./copy_exec.cue
|
||||||
"$DAGGER" --europa up ./copy_file.cue
|
"$DAGGER" --europa up ./copy_file.cue
|
||||||
|
|
||||||
run "$DAGGER" --europa up ./copy_exec_invalid.cue
|
run "$DAGGER" --europa up ./copy_exec_invalid.cue
|
||||||
assert_failure
|
assert_failure
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@test "task: #Mkdir" {
|
||||||
|
cd "$TESTDIR"/tasks/mkdir
|
||||||
|
"$DAGGER" --europa up ./mkdir.cue
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "task: #Mkdir: create parents" {
|
||||||
|
cd "$TESTDIR"/tasks/mkdir
|
||||||
|
"$DAGGER" --europa up ./mkdir_parents.cue
|
||||||
|
}
|
||||||
|
|
||||||
|
@test "task: #Mkdir failure: disable parents creation" {
|
||||||
|
cd "$TESTDIR"/tasks/mkdir
|
||||||
|
run "$DAGGER" --europa up ./mkdir_failure_disable_parents.cue
|
||||||
|
assert_failure
|
||||||
|
}
|
1
tests/tasks/mkdir/cue.mod/module.cue
Normal file
1
tests/tasks/mkdir/cue.mod/module.cue
Normal file
@ -0,0 +1 @@
|
|||||||
|
module: ""
|
3
tests/tasks/mkdir/cue.mod/pkg/.gitignore
vendored
Normal file
3
tests/tasks/mkdir/cue.mod/pkg/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# generated by dagger
|
||||||
|
alpha.dagger.io
|
||||||
|
dagger.lock
|
33
tests/tasks/mkdir/mkdir.cue
Normal file
33
tests/tasks/mkdir/mkdir.cue
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"alpha.dagger.io/europa/dagger/engine"
|
||||||
|
)
|
||||||
|
|
||||||
|
engine.#Plan & {
|
||||||
|
actions: {
|
||||||
|
image: engine.#Pull & {
|
||||||
|
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||||
|
}
|
||||||
|
|
||||||
|
mkdir: engine.#Mkdir & {
|
||||||
|
input: image.output
|
||||||
|
path: "/test"
|
||||||
|
}
|
||||||
|
|
||||||
|
writeChecker: engine.#WriteFile & {
|
||||||
|
input: mkdir.output
|
||||||
|
path: "/test/foo"
|
||||||
|
contents: "bar"
|
||||||
|
mode: 700
|
||||||
|
}
|
||||||
|
|
||||||
|
readChecker: engine.#ReadFile & {
|
||||||
|
input: writeChecker.output
|
||||||
|
path: "/test/foo"
|
||||||
|
} & {
|
||||||
|
// assert result
|
||||||
|
contents: "bar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
34
tests/tasks/mkdir/mkdir_failure_disable_parents.cue
Normal file
34
tests/tasks/mkdir/mkdir_failure_disable_parents.cue
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"alpha.dagger.io/europa/dagger/engine"
|
||||||
|
)
|
||||||
|
|
||||||
|
engine.#Plan & {
|
||||||
|
actions: {
|
||||||
|
image: engine.#Pull & {
|
||||||
|
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||||
|
}
|
||||||
|
|
||||||
|
mkdir: engine.#Mkdir & {
|
||||||
|
input: image.output
|
||||||
|
path: "/test/baz"
|
||||||
|
parents: false
|
||||||
|
}
|
||||||
|
|
||||||
|
writeChecker: engine.#WriteFile & {
|
||||||
|
input: mkdir.output
|
||||||
|
path: "/test/baz/foo"
|
||||||
|
contents: "bar"
|
||||||
|
mode: 700
|
||||||
|
}
|
||||||
|
|
||||||
|
readChecker: engine.#ReadFile & {
|
||||||
|
input: writeChecker.output
|
||||||
|
path: "/test/baz/foo"
|
||||||
|
} & {
|
||||||
|
// assert result
|
||||||
|
contents: "bar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
33
tests/tasks/mkdir/mkdir_parents.cue
Normal file
33
tests/tasks/mkdir/mkdir_parents.cue
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"alpha.dagger.io/europa/dagger/engine"
|
||||||
|
)
|
||||||
|
|
||||||
|
engine.#Plan & {
|
||||||
|
actions: {
|
||||||
|
image: engine.#Pull & {
|
||||||
|
source: "alpine:3.15.0@sha256:e7d88de73db3d3fd9b2d63aa7f447a10fd0220b7cbf39803c803f2af9ba256b3"
|
||||||
|
}
|
||||||
|
|
||||||
|
mkdir: engine.#Mkdir & {
|
||||||
|
input: image.output
|
||||||
|
path: "/test/baz"
|
||||||
|
}
|
||||||
|
|
||||||
|
writeChecker: engine.#WriteFile & {
|
||||||
|
input: mkdir.output
|
||||||
|
path: "/test/baz/foo"
|
||||||
|
contents: "bar"
|
||||||
|
mode: 700
|
||||||
|
}
|
||||||
|
|
||||||
|
readChecker: engine.#ReadFile & {
|
||||||
|
input: writeChecker.output
|
||||||
|
path: "/test/baz/foo"
|
||||||
|
} & {
|
||||||
|
// assert result
|
||||||
|
contents: "bar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user