Simplify tests

Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
This commit is contained in:
Tom Chauveau
2021-06-25 15:40:49 +02:00
parent e4ac04c98c
commit aaa6f8f351
25 changed files with 131 additions and 509 deletions

View File

@@ -0,0 +1,75 @@
package compose
import (
"alpha.dagger.io/dagger"
"alpha.dagger.io/docker"
)
repo: dagger.#Artifact @dagger(input)
TestSSH: {
key: dagger.#Secret @dagger(input)
host: string @dagger(input)
user: string @dagger(input)
}
TestCompose: {
up: #App & {
ssh: {
key: TestSSH.key
host: TestSSH.host
user: TestSSH.user
}
source: repo
}
verify: docker.#Command & {
ssh: up.run.ssh
command: #"""
docker container ls | grep "api" | grep "Up"
"""#
}
cleanup: #CleanupCompose & {
context: up.run
ssh: verify.ssh
}
}
TestInlineCompose: {
up: #App & {
ssh: {
key: TestSSH.key
host: TestSSH.host
user: TestSSH.user
}
source: repo
composeFile: #"""
version: "3"
services:
api-mix:
build: .
environment:
PORT: 7000
ports:
- 7000:7000
networks:
default:
name: mix-context
"""#
}
verify: docker.#Command & {
ssh: up.run.ssh
command: #"""
docker container ls | grep "api-mix" | grep "Up"
"""#
}
cleanup: #CleanupCompose & {
context: up.run
ssh: verify.ssh
}
}