3be2865a56
- tests for #Copy - added a “disable” helper to disable specific tests instead of just commenting them out - “disable” will print out warnings about disabled tests (hopefully with links to corresponding issues) - cleanup bug repro that has been subsumed into tests Signed-off-by: dubo-dubon-duponey <dubodubonduponey+github@pm.me>
70 lines
830 B
CUE
70 lines
830 B
CUE
package testing
|
|
|
|
component: #dagger: compute: [{
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
}, {
|
|
do: "exec"
|
|
args: ["sh", "-c", """
|
|
printf lol > /id
|
|
"""]
|
|
dir: "/"
|
|
}]
|
|
|
|
test1: {
|
|
string
|
|
|
|
#dagger: {
|
|
compute: [
|
|
{
|
|
do: "fetch-container"
|
|
ref: "busybox"
|
|
},
|
|
{
|
|
do: "copy"
|
|
from: component
|
|
src: "/id"
|
|
dest: "/"
|
|
},
|
|
{
|
|
do: "export"
|
|
source: "/id"
|
|
format: "string"
|
|
},
|
|
]
|
|
}
|
|
}
|
|
|
|
test2: {
|
|
string
|
|
|
|
#dagger: {
|
|
compute: [
|
|
{
|
|
do: "fetch-container"
|
|
ref: "busybox"
|
|
},
|
|
{
|
|
do: "copy"
|
|
from: #dagger: compute: [{
|
|
do: "fetch-container"
|
|
ref: "alpine"
|
|
}, {
|
|
do: "exec"
|
|
args: ["sh", "-c", """
|
|
printf lol > /id
|
|
"""]
|
|
dir: "/"
|
|
}]
|
|
src: "/id"
|
|
dest: "/"
|
|
},
|
|
{
|
|
do: "export"
|
|
source: "/id"
|
|
format: "string"
|
|
},
|
|
]
|
|
}
|
|
}
|