tests(stdlib): add kubernetes in testing suite
tests(stdlib/kubernetes): add kubernetes basic Apply test Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
76
tests/stdlib/kubernetes/helper.cue
Normal file
76
tests/stdlib/kubernetes/helper.cue
Normal file
@@ -0,0 +1,76 @@
|
||||
package kubernetes
|
||||
|
||||
import (
|
||||
"dagger.io/dagger/op"
|
||||
"dagger.io/kubernetes"
|
||||
)
|
||||
|
||||
#VerifyApply: {
|
||||
podname: 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: kubernetes.#Kubectl
|
||||
},
|
||||
|
||||
op.#WriteFile & {
|
||||
dest: "/kubeconfig"
|
||||
content: Config.contents
|
||||
mode: 0o600
|
||||
},
|
||||
|
||||
op.#WriteFile & {
|
||||
dest: "/getPods.sh"
|
||||
content: #GetPods
|
||||
},
|
||||
|
||||
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