Update argoCD test file to use os.#Container

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau 2021-08-16 16:51:05 +02:00 committed by Sam Alba
parent 7299cb4d1d
commit f038e11fc5
2 changed files with 13 additions and 22 deletions

View File

@ -3,7 +3,7 @@ package app
import (
"alpha.dagger.io/argocd"
"alpha.dagger.io/dagger"
"alpha.dagger.io/dagger/op"
"alpha.dagger.io/os"
)
TestConfig: argocdConfig: argocd.#Config & {
@ -12,22 +12,13 @@ TestConfig: argocdConfig: argocd.#Config & {
token: dagger.#Secret & dagger.#Input
}
TestArgocd: #up: [
// Initialize ArgoCD CLI binary
op.#Load & {
from: argocd.#CLI & {
config: TestConfig.argocdConfig
}
},
// Check the binary and its version
op.#Exec & {
args: [
"sh", "-c",
#"""
argocd version --output json | jq -e 'all(.client.Version; startswith("$VERSION"))'
"""#,
]
env: VERSION: TestConfig.argocdConfig.version
},
]
TestArgoCD2: os.#Container & {
image: argocd.#CLI & {
config: TestConfig.argocdConfig
}
always: true
command: #"""
argocd version --output json | jq -e 'all(.client.Version; startswith("$VERSION"))'
"""#
env: VERSION: TestConfig.argocdConfig.version
}

View File

@ -76,7 +76,7 @@ setup() {
}
@test "docker run: local" {
skip "Not implemented yet + missing inputs leading to failure"
skip "Not implemented yet + missing inputs leading to failure"
# dagger -e docker-run-local up
}
@ -217,6 +217,6 @@ setup() {
@test "argocd" {
skip "ArgoCD CI secrets not yet generated"
skip "ArgoCD CI secrets not yet generated - Infra not implemented yet"
#dagger -e argocd up
}