package testing
import "alpha.dagger.io/dagger/op"
#TestContainer: #up: [
op.#FetchContainer & {
ref: "alpine"
},
op.#Exec & {
args: ["mkdir", "-p", "/tmp/foo"]
args: ["sh", "-c", "echo -n world > /tmp/foo/hello"]
op.#Subdir & {
dir: "/tmp/foo"
]
TestSubdirMount: {
string
#up: [
// Check number of file in /source (should contains only hello)
args: ["sh", "-c", "test $(ls /source | wc -l) = 1"]
mount: "/source": from: #TestContainer
args: ["sh", "-c", "cat /source/hello > /out"]
op.#Export & {
source: "/out"
format: "string"
}