e3eee6068e
Signed-off-by: Guillaume de Rouville <guillaume.derouville@gmail.com>
51 lines
790 B
CUE
51 lines
790 B
CUE
package netlify
|
|
|
|
import (
|
|
"alpha.dagger.io/dagger/op"
|
|
"alpha.dagger.io/alpine"
|
|
"alpha.dagger.io/random"
|
|
)
|
|
|
|
TestNetlify: {
|
|
data: random.#String & {
|
|
seed: ""
|
|
}
|
|
|
|
// Generate a website containing the random number
|
|
html: #up: [
|
|
op.#WriteFile & {
|
|
content: data.out
|
|
dest: "index.html"
|
|
},
|
|
]
|
|
|
|
// Deploy to netlify
|
|
deploy: #Site & {
|
|
contents: html
|
|
name: "dagger-test-\(data.out)"
|
|
}
|
|
|
|
// Check if the deployed site has the random marker
|
|
check: #up: [
|
|
op.#Load & {
|
|
from: alpine.#Image & {
|
|
package: bash: "=~5.1"
|
|
package: curl: true
|
|
}
|
|
},
|
|
op.#Exec & {
|
|
args: [
|
|
"/bin/bash",
|
|
"--noprofile",
|
|
"--norc",
|
|
"-eo",
|
|
"pipefail",
|
|
"-c",
|
|
#"""
|
|
test "$(curl \#(deploy.deployUrl))" = "\#(data.out)"
|
|
"""#,
|
|
]
|
|
},
|
|
]
|
|
}
|