Add tests on plan platform configuration

Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
This commit is contained in:
Vasek - Tom C
2021-12-23 15:28:36 +01:00
parent c08f262ef5
commit 01414f80c9
4 changed files with 110 additions and 0 deletions

View File

@@ -77,3 +77,17 @@ setup() {
"$DAGGER" --europa up ./outputs.cue
assert [ -f "./out/test" ]
}
@test "plan/platform" {
cd "$TESTDIR"
# Run with amd64 platform
run "$DAGGER" --europa up ./plan/platform/config_platform_linux_amd64.cue
# Run with arm64 platform
run "$DAGGER" --europa up ./plan/platform/config_platform_linux_arm64.cue
# Run with invalid platform
run "$DAGGER" --europa up ./plan/platform/config_platform_failure_invalid_platform.cue
assert_failure
}