Add gating.yaml and tests for RHEL9

We need RHEL9 builds to be gated.

Resolves: rhbz#1957501
This commit is contained in:
Scott Poore 2021-05-18 14:30:57 -05:00
parent cb78f87557
commit 0334322c36
9 changed files with 147 additions and 0 deletions

7
gating.yaml Normal file
View File

@ -0,0 +1,7 @@
# recipients: jstephen, spoore
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
tests/.fmf/version Normal file
View File

@ -0,0 +1 @@
1

BIN
tests/1.journal Normal file

Binary file not shown.

BIN
tests/binary-rec.journal Normal file

Binary file not shown.

66
tests/browser.sh Normal file
View File

@ -0,0 +1,66 @@
#!/bin/sh
set -eux
# from standard-test-source
SOURCE="$(pwd)/source"
LOGS="$(pwd)/logs"
TESTS="$(pwd)/tests"
mkdir -p "$LOGS"
chmod a+w "$LOGS"
# moving SOURCE out of the way.
# Will use upstream source for tests
if [ -d "$SOURCE" ]; then
mv ${SOURCE} ${SOURCE}_str
fi
# install browser; on RHEL, use chromium from epel
# HACK: chromium-headless ought to be enough, but version 88 has a crash: https://bugs.chromium.org/p/chromium/issues/detail?id=1170634
if ! rpm -q chromium; then
if grep -q 'ID=.*rhel' /etc/os-release; then
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
dnf config-manager --enable epel
fi
dnf install -y chromium
fi
# install cockpit-packagekit for testAppMenu
dnf install -y cockpit-packagekit
# create user account for logging in
if ! id admin 2>/dev/null; then
useradd -c Administrator -G wheel admin
echo admin:foobar | chpasswd
fi
# avoid sudo lecture during tests
su -c 'echo foobar | sudo --stdin whoami' - admin
# create user account for running the test
if ! id runtest 2>/dev/null; then
useradd -c 'Test runner' runtest
# allow test to set up things on the machine
mkdir -p /root/.ssh
curl https://raw.githubusercontent.com/cockpit-project/bots/master/machine/identity.pub >> /root/.ssh/authorized_keys
chmod 600 /root/.ssh/authorized_keys
fi
# Use upstream code for tests:
git clone https://github.com/Scribery/cockpit-session-recording.git "$SOURCE"
chown -R runtest "$SOURCE"
# disable core dumps, we rather investigate them upstream where test VMs are accessible
echo core > /proc/sys/kernel/core_pattern
# CSR specific setup
mkdir -p /var/log/journal/
cp 1.journal /var/log/journal/1.journal
cp binary-rec.journal /var/log/journal/binary-rec.journal
usermod -u 981 tlog
# Run tests as unprivileged user
su - -c "env SOURCE=$SOURCE LOGS=$LOGS $TESTS/run-test.sh" runtest
RC=$(cat $LOGS/exitcode)
exit ${RC:-1}

4
tests/provision.fmf Normal file
View File

@ -0,0 +1,4 @@
---
standard-inventory-qcow2:
qemu:
m: 3G

View File

@ -0,0 +1,22 @@
---
- include_role:
name: standard-test-source
- include_role:
name: standard-test-basic
vars:
required_packages:
- cockpit-session-recording
- tlog
- cockpit-ws
- cockpit-packagekit
- git
- libvirt-python3
- make
- npm
- python3
tests:
- cockpit-session-recording:
dir: .
run: "{{ test_script_dir | default('.') }}/browser.sh"
save-files: ["logs/*"]

22
tests/run-test.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/sh
set -eux
# tests need cockpit's bots/ libraries and test infrastructure
cd $SOURCE
git init
make bots test/common
# only install a subset to save time/space
npm install chrome-remote-interface sizzle
. /etc/os-release
export TEST_OS="${ID}-${VERSION_ID/./-}"
export TEST_AUDIT_NO_SELINUX=1
RC=0
test/check-application -tv --machine 127.0.0.1:22 --browser 127.0.0.1:9090 || RC=$?
echo $RC > "$LOGS/exitcode"
cp --verbose Test* "$LOGS" || true
# deliver test result via exitcode file
exit 0

25
tests/tests.yml Normal file
View File

@ -0,0 +1,25 @@
---
- hosts: localhost
roles:
- role: standard-test-source
tags:
- always
- role: standard-test-basic
tags:
- classic
required_packages:
- cockpit-session-recording
- tlog
- cockpit-ws
- cockpit-packagekit
- git
- libvirt-python3
- make
- npm
- python3
tests:
- browser:
dir: .
run: ./browser.sh
save-files: ["logs/*"]