Move tests plan from dagger dir to universe
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
43
stdlib/kubernetes/tests/kubernetes.cue
Normal file
43
stdlib/kubernetes/tests/kubernetes.cue
Normal file
@@ -0,0 +1,43 @@
|
||||
package kubernetes
|
||||
|
||||
import (
|
||||
"encoding/yaml"
|
||||
"dagger.io/random"
|
||||
)
|
||||
|
||||
// We assume that a kinD cluster is running locally
|
||||
// To deploy a local KinD cluster, follow this link : https://kind.sigs.k8s.io/docs/user/quick-start/
|
||||
TestKubeconfig: string @dagger(input)
|
||||
|
||||
TestKubeApply: {
|
||||
suffix: random.#String & {
|
||||
seed: ""
|
||||
}
|
||||
|
||||
// Pod spec
|
||||
kubeSrc: {
|
||||
apiVersion: "v1"
|
||||
kind: "Pod"
|
||||
metadata: name: "kube-test-\(suffix.out)"
|
||||
spec: {
|
||||
restartPolicy: "Never"
|
||||
containers: [{
|
||||
name: "test"
|
||||
image: "hello-world"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
||||
// Apply deployment
|
||||
apply: #Resources & {
|
||||
kubeconfig: TestKubeconfig
|
||||
namespace: "dagger-test"
|
||||
manifest: yaml.Marshal(kubeSrc)
|
||||
}
|
||||
|
||||
// Verify deployment
|
||||
verify: #VerifyApply & {
|
||||
podname: kubeSrc.metadata.name
|
||||
namespace: apply.namespace
|
||||
}
|
||||
}
|
78
stdlib/kubernetes/tests/verify.cue
Normal file
78
stdlib/kubernetes/tests/verify.cue
Normal file
@@ -0,0 +1,78 @@
|
||||
package kubernetes
|
||||
|
||||
import (
|
||||
"dagger.io/dagger/op"
|
||||
)
|
||||
|
||||
#VerifyApply: {
|
||||
podname: string
|
||||
|
||||
namespace: string
|
||||
|
||||
// Verify that pod exist
|
||||
#GetPods:
|
||||
"""
|
||||
kubectl get pods --namespace "$KUBE_NAMESPACE" \( podname )
|
||||
"""
|
||||
|
||||
// Clear that pod for future test
|
||||
#DeletePods:
|
||||
"""
|
||||
kubectl delete pods --namespace "$KUBE_NAMESPACE" \( podname )
|
||||
"""
|
||||
|
||||
#up: [
|
||||
op.#Load & {
|
||||
from: #Kubectl
|
||||
},
|
||||
|
||||
op.#WriteFile & {
|
||||
dest: "/kubeconfig"
|
||||
content: TestKubeconfig
|
||||
mode: 0o600
|
||||
},
|
||||
|
||||
op.#WriteFile & {
|
||||
dest: "/getPods.sh"
|
||||
content: #GetPods
|
||||
},
|
||||
|
||||
// Check pods
|
||||
op.#Exec & {
|
||||
always: true
|
||||
args: [
|
||||
"/bin/bash",
|
||||
"--noprofile",
|
||||
"--norc",
|
||||
"-eo",
|
||||
"pipefail",
|
||||
"/getPods.sh",
|
||||
]
|
||||
env: {
|
||||
KUBECONFIG: "/kubeconfig"
|
||||
KUBE_NAMESPACE: namespace
|
||||
}
|
||||
},
|
||||
|
||||
op.#WriteFile & {
|
||||
dest: "/deletePods.sh"
|
||||
content: #DeletePods
|
||||
},
|
||||
|
||||
op.#Exec & {
|
||||
always: true
|
||||
args: [
|
||||
"/bin/bash",
|
||||
"--noprofile",
|
||||
"--norc",
|
||||
"-eo",
|
||||
"pipefail",
|
||||
"/deletePods.sh",
|
||||
]
|
||||
env: {
|
||||
KUBECONFIG: "/kubeconfig"
|
||||
KUBE_NAMESPACE: namespace
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user