2021-07-07 17:37:16 +00:00
|
|
|
#!/usr/bin/env bats
|
|
|
|
|
|
|
|
load 'libs/bats-support/load'
|
|
|
|
load 'libs/bats-assert/load'
|
|
|
|
load 'libs/helpers'
|
|
|
|
|
|
|
|
setup() {
|
2021-11-11 00:46:21 +00:00
|
|
|
_setup_environment
|
2021-07-07 17:37:16 +00:00
|
|
|
cleanup_containers
|
|
|
|
}
|
|
|
|
|
|
|
|
teardown() {
|
|
|
|
cleanup_containers
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@test "container: Check container starts without issues" {
|
|
|
|
readonly CONTAINER_NAME="$(get_system_id)-toolbox-$(get_system_version)"
|
|
|
|
|
|
|
|
create_default_container
|
|
|
|
|
2022-03-18 10:33:00 +00:00
|
|
|
run container_started $CONTAINER_NAME
|
|
|
|
assert_success
|
2021-07-07 17:37:16 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 00:06:53 +00:00
|
|
|
@test "container(Fedora Rawhide): Containers with supported versions start without issues" {
|
|
|
|
local os_release="$(find_os_release)"
|
|
|
|
local system_id="$(get_system_id)"
|
|
|
|
local system_version="$(get_system_version)"
|
|
|
|
local rawhide_res="$(awk '/rawhide/' $os_release)"
|
|
|
|
|
|
|
|
if [ "$system_id" != "fedora" ] || [ -z "$rawhide_res" ]; then
|
|
|
|
skip "This test is only for Fedora Rawhide"
|
|
|
|
fi
|
|
|
|
|
|
|
|
create_distro_container "$system_id" "$system_version" latest
|
2022-03-18 10:33:00 +00:00
|
|
|
run container_started latest
|
|
|
|
assert_success
|
2021-10-22 00:06:53 +00:00
|
|
|
|
|
|
|
create_distro_container "$system_id" "$((system_version-1))" second
|
2022-03-18 10:33:00 +00:00
|
|
|
run container_started second
|
|
|
|
assert_success
|
2021-10-22 00:06:53 +00:00
|
|
|
|
|
|
|
create_distro_container "$system_id" "$((system_version-2))" third
|
2022-03-18 10:33:00 +00:00
|
|
|
run container_started third
|
|
|
|
assert_success
|
2021-10-22 00:06:53 +00:00
|
|
|
}
|