2018-11-14 08:40:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -eux
|
|
|
|
|
2019-07-30 09:07:45 +00:00
|
|
|
# from standard-test-source
|
|
|
|
SOURCE="$(pwd)/source"
|
|
|
|
LOGS="$(pwd)/logs"
|
|
|
|
mkdir -p "$LOGS"
|
|
|
|
chmod a+w "$LOGS"
|
|
|
|
# these get mounted into the tasks container
|
|
|
|
chcon -Rt container_file_t "$SOURCE" "$LOGS"
|
2018-11-14 08:40:02 +00:00
|
|
|
|
|
|
|
# create user account for logging in
|
|
|
|
if ! id admin 2>/dev/null; then
|
|
|
|
useradd admin -G wheel
|
|
|
|
echo admin:foobar | chpasswd
|
|
|
|
fi
|
|
|
|
|
|
|
|
# The cockpit/tests container has chromium-browser and other test
|
|
|
|
# dependencies, which we don't have on RHEL itself. Also, we don't actually
|
|
|
|
# want to install these on the tested image, so run the test in a container,
|
|
|
|
# which tests the host. Use a fixed tag to avoid running into failures with
|
|
|
|
# "latest", as we don't gate container updates on the dist-git tests for now.
|
|
|
|
RC=0
|
2020-03-23 08:57:56 +00:00
|
|
|
cat <<EOF | podman run --rm -i -v "$SOURCE:/source:ro" -v "$LOGS:/logs" docker.io/cockpit/tasks:2020-01-30 /bin/sh -eux || RC=$?
|
2018-11-14 08:40:02 +00:00
|
|
|
# CSP does not like the the invalid host name _gateway, so translate it
|
|
|
|
HOST=\$(getent hosts _gateway | cut -f1 -d' ')
|
|
|
|
|
2019-07-30 09:07:45 +00:00
|
|
|
trap "cp --verbose Test* /logs/ || true" EXIT
|
|
|
|
|
|
|
|
# tests need cockpit's bots/ libraries
|
|
|
|
cd /tmp
|
|
|
|
git clone --depth=1 https://github.com/cockpit-project/cockpit
|
|
|
|
cd cockpit
|
2020-03-23 08:57:56 +00:00
|
|
|
git clone --depth=1 https://github.com/cockpit-project/bots
|
2019-07-30 09:07:45 +00:00
|
|
|
# copy tests from our source, so that they match the released version
|
|
|
|
rm -rf test
|
|
|
|
cp -a /source/test .
|
2018-11-14 08:40:02 +00:00
|
|
|
|
2019-07-30 09:07:45 +00:00
|
|
|
# only install a subset to save time/space
|
|
|
|
npm install axe-core chrome-remote-interface sizzle
|
2018-11-14 08:40:02 +00:00
|
|
|
|
2020-03-23 08:57:56 +00:00
|
|
|
export TEST_OS=fedora-32
|
2018-11-14 08:40:02 +00:00
|
|
|
test/verify/check-menu -tv --machine \$HOST:22 --browser \$HOST:9090
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# reset system changes from verify tests, for running this multiple times in a row
|
|
|
|
# HACK: Isolate tests from each other: https://pagure.io/fedora-ci/general/issue/11
|
|
|
|
rm -f /etc/systemd/system/cockpit.service.d/notls.conf
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl stop cockpit.service
|
|
|
|
|
|
|
|
exit $RC
|