Add more tests on Subdir operation
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
parent
e366773dc0
commit
7995594a12
26
tests/ops/subdir/invalid/path/main.cue
Normal file
26
tests/ops/subdir/invalid/path/main.cue
Normal file
@ -0,0 +1,26 @@
|
||||
package testing
|
||||
|
||||
import "dagger.io/dagger/op"
|
||||
|
||||
TestInvalidPathSubdir: {
|
||||
string
|
||||
|
||||
#up: [
|
||||
op.#FetchContainer & {
|
||||
ref: "alpine"
|
||||
},
|
||||
op.#Exec & {
|
||||
args: ["mkdir", "-p", "/tmp/foo"]
|
||||
},
|
||||
op.#Exec & {
|
||||
args: ["sh", "-c", "echo -n world > /tmp/foo/hello"]
|
||||
},
|
||||
op.#Subdir & {
|
||||
dir: "/directorynotfound"
|
||||
},
|
||||
op.#Export & {
|
||||
source: "./hello"
|
||||
format: "string"
|
||||
},
|
||||
]
|
||||
}
|
44
tests/ops/subdir/valid/container/main.cue
Normal file
44
tests/ops/subdir/valid/container/main.cue
Normal file
@ -0,0 +1,44 @@
|
||||
package testing
|
||||
|
||||
import "dagger.io/dagger/op"
|
||||
|
||||
#TestContainer: #up: [
|
||||
op.#FetchContainer & {
|
||||
ref: "alpine"
|
||||
},
|
||||
op.#Exec & {
|
||||
args: ["mkdir", "-p", "/tmp/foo"]
|
||||
},
|
||||
op.#Exec & {
|
||||
args: ["sh", "-c", "echo -n world > /tmp/foo/hello"]
|
||||
},
|
||||
op.#Subdir & {
|
||||
dir: "/tmp/foo"
|
||||
},
|
||||
]
|
||||
|
||||
TestSubdirMount: {
|
||||
string
|
||||
|
||||
#up: [
|
||||
op.#FetchContainer & {
|
||||
ref: "alpine"
|
||||
},
|
||||
|
||||
// Check number of file in /source (should contains only hello)
|
||||
op.#Exec & {
|
||||
args: ["sh", "-c", "test $(ls /source | wc -l) = 1"]
|
||||
mount: "/source": from: #TestContainer
|
||||
},
|
||||
|
||||
op.#Exec & {
|
||||
args: ["sh", "-c", "cat /source/hello > /out"]
|
||||
mount: "/source": from: #TestContainer
|
||||
},
|
||||
|
||||
op.#Export & {
|
||||
source: "/out"
|
||||
format: "string"
|
||||
},
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user