7ab2f9b866
Fedora 32 reached End of Life on 25th May 2021: https://docs.fedoraproject.org/en-US/releases/eol/ That's quite old because right now Fedora 35 is nearing its End of Life. Since the tests are intended for Toolbx, not the Fedora infrastructure, it will be better to use a newer image, because images that are too old can get lost from registry.fedoraproject.org. The fedora-toolbox:34 image can be a drop-in replacement for the fedora-toolbox:32 image for the purposes of this test suite, and has the advantage of being newer. Note that fedora-toolbox:34 is also old enough to test that the toolbox binary runs against it's build-time ABI from the host, and not the Toolbx container's ABI, when it's invoked as the entry point of the container [1,2]. This is important because the subsequent commit will add a test to ensure that. [1] Commit6063eb27b9
https://github.com/containers/toolbox/issues/821 [2] Commit6ad9c63180
https://github.com/containers/toolbox/issues/529 https://github.com/containers/toolbox/pull/1187
39 lines
1.5 KiB
Bash
39 lines
1.5 KiB
Bash
#!/usr/bin/env bats
|
||
#
|
||
# Copyright © 2021 – 2022 Red Hat, Inc.
|
||
#
|
||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||
# you may not use this file except in compliance with the License.
|
||
# You may obtain a copy of the License at
|
||
#
|
||
# http://www.apache.org/licenses/LICENSE-2.0
|
||
#
|
||
# Unless required by applicable law or agreed to in writing, software
|
||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
# See the License for the specific language governing permissions and
|
||
# limitations under the License.
|
||
#
|
||
|
||
load 'libs/helpers'
|
||
|
||
@test "test suite: Setup" {
|
||
local os_release="$(find_os_release)"
|
||
local system_id="$(get_system_id)"
|
||
local system_version="$(get_system_version)"
|
||
|
||
_setup_environment
|
||
# Cache the default image for the system
|
||
_pull_and_cache_distro_image "$system_id" "$system_version" || false
|
||
# Cache all images that will be needed during the tests
|
||
_pull_and_cache_distro_image fedora 34 || false
|
||
_pull_and_cache_distro_image busybox || false
|
||
# If run on Fedora Rawhide, cache 2 extra images (previous Fedora versions)
|
||
local rawhide_res="$(awk '/rawhide/' $os_release)"
|
||
if [ "$system_id" = "fedora" ] && [ -n "$rawhide_res" ]; then
|
||
_pull_and_cache_distro_image fedora "$((system_version-1))" || false
|
||
_pull_and_cache_distro_image fedora "$((system_version-2))" || false
|
||
fi
|
||
|
||
_setup_docker_registry
|
||
}
|