This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/stdlib/gcp/gcs/tests/gcs.cue

34 lines
522 B
CUE
Raw Normal View History

package gcs
import (
"alpha.dagger.io/dagger"
"alpha.dagger.io/gcp"
)
TestConfig: gcpConfig: gcp.#Config
bucket: "dagger-ci"
TestDirectory: dagger.#Artifact
TestGCSObject: {
deploy: #Object & {
always: true
config: TestConfig.gcpConfig
source: TestDirectory
target: "gs://\(bucket)/"
}
verifyFile: #VerifyGCS & {
config: TestConfig.gcpConfig
target: deploy.target
file: "dirFile.txt"
}
verifyDir: #VerifyGCS & {
config: TestConfig.gcpConfig
target: deploy.target
file: "foo.txt"
}
}