From c7bb1679c30125759108c05b091b491613fe01c1 Mon Sep 17 00:00:00 2001 From: Jan Kurik Date: Thu, 25 Mar 2021 09:13:52 +0100 Subject: [PATCH] Verification of systemd unit files --- tests/Sanity/verify-systemd-units/Makefile | 63 ++++++++++++++++++ tests/Sanity/verify-systemd-units/PURPOSE | 3 + tests/Sanity/verify-systemd-units/main.fmf | 15 +++++ tests/Sanity/verify-systemd-units/runtest.sh | 67 ++++++++++++++++++++ 4 files changed, 148 insertions(+) create mode 100644 tests/Sanity/verify-systemd-units/Makefile create mode 100644 tests/Sanity/verify-systemd-units/PURPOSE create mode 100644 tests/Sanity/verify-systemd-units/main.fmf create mode 100755 tests/Sanity/verify-systemd-units/runtest.sh diff --git a/tests/Sanity/verify-systemd-units/Makefile b/tests/Sanity/verify-systemd-units/Makefile new file mode 100644 index 0000000..a078135 --- /dev/null +++ b/tests/Sanity/verify-systemd-units/Makefile @@ -0,0 +1,63 @@ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Makefile of /tools/pcp/Sanity/verify-systemd-units +# Description: Verification of systemd unit files +# Author: Jan Kuřík +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2020 Red Hat, Inc. +# +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied +# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +export TEST=/tools/pcp/Sanity/verify-systemd-units +export TESTVERSION=1.0 + +BUILT_FILES= + +FILES=$(METADATA) runtest.sh Makefile PURPOSE + +.PHONY: all install download clean + +run: $(FILES) build + ./runtest.sh + +build: $(BUILT_FILES) + test -x runtest.sh || chmod a+x runtest.sh + +clean: + rm -f *~ $(BUILT_FILES) + + +include /usr/share/rhts/lib/rhts-make.include + +$(METADATA): Makefile + @echo "Owner: Jan Kuřík " > $(METADATA) + @echo "Name: $(TEST)" >> $(METADATA) + @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) + @echo "Path: $(TEST_DIR)" >> $(METADATA) + @echo "Description: Verification of systemd unit files" >> $(METADATA) + @echo "Type: Sanity" >> $(METADATA) + @echo "TestTime: 5m" >> $(METADATA) + @echo "RunFor: pcp" >> $(METADATA) + @echo "Requires: avahi pcp-manager pcp pcp-zeroconf" >> $(METADATA) + @echo "Priority: Normal" >> $(METADATA) + @echo "License: GPLv2+" >> $(METADATA) + @echo "Confidential: no" >> $(METADATA) + @echo "Destructive: no" >> $(METADATA) + @echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5" >> $(METADATA) + + rhts-lint $(METADATA) diff --git a/tests/Sanity/verify-systemd-units/PURPOSE b/tests/Sanity/verify-systemd-units/PURPOSE new file mode 100644 index 0000000..507ecce --- /dev/null +++ b/tests/Sanity/verify-systemd-units/PURPOSE @@ -0,0 +1,3 @@ +PURPOSE of /tools/pcp/Sanity/verify-systemd-units +Description: Verification of systemd unit files +Author: Jan Kuřík diff --git a/tests/Sanity/verify-systemd-units/main.fmf b/tests/Sanity/verify-systemd-units/main.fmf new file mode 100644 index 0000000..1d9628d --- /dev/null +++ b/tests/Sanity/verify-systemd-units/main.fmf @@ -0,0 +1,15 @@ +summary: Verification of systemd unit files +description: '' +contact: Jan Kuřík +component: +- pcp +test: ./runtest.sh +framework: beakerlib +recommend: +- avahi +- pcp-manager +- pcp +- pcp-zeroconf +duration: 5m +extra-summary: /tools/pcp/Sanity/verify-systemd-units +extra-task: /tools/pcp/Sanity/verify-systemd-units diff --git a/tests/Sanity/verify-systemd-units/runtest.sh b/tests/Sanity/verify-systemd-units/runtest.sh new file mode 100755 index 0000000..bb3001f --- /dev/null +++ b/tests/Sanity/verify-systemd-units/runtest.sh @@ -0,0 +1,67 @@ +#!/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# runtest.sh of /tools/pcp/Sanity/verify-systemd-units +# Description: Verification of systemd unit files +# Author: Jan Kuřík +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2020 Red Hat, Inc. +# +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation, either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied +# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see http://www.gnu.org/licenses/. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Include Beaker environment +. /usr/share/beakerlib/beakerlib.sh || exit 1 + +PACKAGE="pcp" +PKGS="pcp pcp-zeroconf" +UNITS="" + +rlJournalStart + rlPhaseStartSetup + PCPVER=$(rpm -q --qf '%{version}' pcp) + if rlTestVersion ${PCPVER} '<' '5.2.0'; then + PKGS="${PKGS} pcp-manager" + fi + for P in ${PKGS}; do + rlAssertRpm "${P}" + done + # Generate list of unit files + UNITS="$(rpm -ql ${PKGS} | grep /usr/lib/systemd/system/)" + rlLog "Available unit files: ${UNITS}" + rlPhaseEnd + + rlPhaseStartTest + FAILEDU="" + for U in ${UNITS}; do + if ! rlRun -s "systemd-analyze --no-pager verify ${U}"; then + rlFail "Error in ${U}: $(cat ${rlRun_LOG})" + FAILEDU="${FAILEDU} $(basename ${U})" + fi + if grep -q 'is deprecated' ${rlRun_LOG}; then + rlFail "Error in ${U}: $(cat ${rlRun_LOG})" + FAILEDU="${FAILEDU} $(basename ${U})" + fi + done + [[ -n "${FAILEDU}" ]] && rlLog "List of failed units: ${FAILEDU}" + rlPhaseEnd + + rlPhaseStartCleanup + rlPhaseEnd +rlJournalPrintText +rlJournalEnd