bda943d73c
pytest version available in RHEL repos (especially on el8) is too old to be used with osbuild tests and how we execute them. In order to keep the test implementation the same across all distributions and their versions, install pytest from pip and not system repositories. Related: rhbz#2174847 Signed-off-by: Tomáš Hozza <thozza@redhat.com>
104 lines
3.1 KiB
Bash
Executable File
104 lines
3.1 KiB
Bash
Executable File
#!/usr/bin/bash
|
|
# Execute osbuild unit tests from a checked out dist-git repo
|
|
|
|
set -euxo pipefail
|
|
|
|
source /etc/os-release
|
|
|
|
case "${ID}-${VERSION_ID}" in
|
|
fedora-*)
|
|
PKG_MAINT_TOOL="fedpkg"
|
|
sudo dnf install -y "${PKG_MAINT_TOOL}"
|
|
;;
|
|
rhel-8.*)
|
|
PKG_MAINT_TOOL="rhpkg"
|
|
# rhpkg is not available in the default repos
|
|
sudo curl -L -o /etc/yum.repos.d/rcm-tools-rhel-8-baseos.repo http://download.devel.redhat.com/rel-eng/internal/rcm-tools-rhel-8-baseos.repo
|
|
;;
|
|
rhel-9.*)
|
|
PKG_MAINT_TOOL="rhpkg"
|
|
# rhpkg is not available in the default repos
|
|
sudo curl -L -o /etc/yum.repos.d/rcm-tools-rhel-9-baseos.repo http://download.devel.redhat.com/rel-eng/internal/rcm-tools-rhel-9-baseos.repo
|
|
;;
|
|
centos-*)
|
|
PKG_MAINT_TOOL="centpkg"
|
|
# centpkg is not available in the default repos
|
|
sudo dnf install -y epel-release
|
|
# CRB repos are available only for CentOS Stream 9
|
|
if [ "${VERSION_ID}" == "9" ]; then
|
|
dnf config-manager --set-enabled crb
|
|
fi
|
|
;;
|
|
*)
|
|
echo "Error: unsupported OS: ${ID}-${VERSION_ID}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# Move to the checked out git repo with the test plans
|
|
# this should be the root of the dist-git repo
|
|
cd "${TMT_TREE}"
|
|
# the content of the directory is copy of the dist-git repo, but the .git directory is missing
|
|
# so we need to create it to make all *pkg tools happy
|
|
git init
|
|
|
|
# install all test dependencies
|
|
sudo dnf install -y \
|
|
"${PKG_MAINT_TOOL}" \
|
|
rpmdevtools \
|
|
python3-mako \
|
|
python3-pip \
|
|
dosfstools
|
|
sudo dnf builddep -y osbuild.spec
|
|
|
|
# Install pytst from pip, because the version in some RHEL / CentOS releases is too old
|
|
sudo pip3 install pytest
|
|
|
|
# Make sure that /usr/lib/systemd/boot/efi/linuxx64.efi.stub is available to enable pe32p tests
|
|
case "${ID}-${VERSION_ID}" in
|
|
rhel-8.* | centos-8)
|
|
sudo dnf install -y systemd-udev
|
|
;;
|
|
*)
|
|
sudo dnf install -y systemd-boot-unsigned
|
|
;;
|
|
esac
|
|
|
|
TARGET_BRANCH="${TARGET_BRANCH:-}"
|
|
PKG_MAINT_TOOL_EXTRA_ARGS=""
|
|
if [ -n "${TARGET_BRANCH}" ]; then
|
|
PKG_MAINT_TOOL_EXTRA_ARGS="--release ${TARGET_BRANCH}"
|
|
fi
|
|
|
|
# shellcheck disable=SC2086
|
|
${PKG_MAINT_TOOL} ${PKG_MAINT_TOOL_EXTRA_ARGS} prep
|
|
|
|
# Extract the Source0 basename without extension
|
|
SRC_DIR=$(spectool --source 0 osbuild.spec | sed 's/.\+\(osbuild-[0-9]\+\)\.tar\.gz/\1/')
|
|
|
|
cd "${SRC_DIR}"
|
|
|
|
# Some unit tests depend on the fact that the source code is in a git repo
|
|
git init .
|
|
git add *
|
|
git commit -m "Initial commit"
|
|
|
|
# Run the unit tests
|
|
# Note:
|
|
# - Ignore the boot test, because it requires qemu-system-x86_64 not available on all distributions.
|
|
# - Ignore source code tests, which run linters, since we can't ensure that all linters are available
|
|
# and of the same version as in upstream.
|
|
# - Explicitly mark btrfs as unsupported on CentOS / RHEL
|
|
|
|
if [ "${ID}" == "centos" ] || [ "${ID}" == "rhel" ]; then
|
|
UNSUPPORTED_FS="--unsupported-fs btrfs"
|
|
fi
|
|
|
|
sudo python3 -m pytest \
|
|
--rootdir "$(pwd)" \
|
|
--ignore "$(pwd)/test/src" \
|
|
${UNSUPPORTED_FS:-} \
|
|
-k "not test_boot" \
|
|
-v \
|
|
"$(pwd)/test/"
|