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
Scott Lewis-Kelly 635b9306b8 stdlib: Add GCS support
The interface and behavior is identical to S3.

Signed-off-by: Scott Lewis-Kelly <slewiskelly@slewiskel.ly>
2021-06-30 16:23:32 +02:00

34 lines
522 B
CUE

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"
}
}