From 1b5c362107f596dc0ddeaeeeddaec18d0178c32a Mon Sep 17 00:00:00 2001 From: Jan Kurik Date: Mar 07 2022 08:14:29 +0000 Subject: Implementation of verify-systemd-units test case The test case verifies systemd unit files using systemd-analyze tool. --- diff --git a/tests/Sanity/verify-systemd-units/Makefile b/tests/Sanity/verify-systemd-units/Makefile new file mode 100644 index 0000000..21d5f1e --- /dev/null +++ b/tests/Sanity/verify-systemd-units/Makefile @@ -0,0 +1,63 @@ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Makefile of /tools/grafana/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/grafana/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: grafana" >> $(METADATA) + @echo "Requires: grafana" >> $(METADATA) + @echo "Priority: Normal" >> $(METADATA) + @echo "License: GPLv2+" >> $(METADATA) + @echo "Confidential: no" >> $(METADATA) + @echo "Destructive: no" >> $(METADATA) + @echo "Releases: -RHEL7 -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..7d3a661 --- /dev/null +++ b/tests/Sanity/verify-systemd-units/PURPOSE @@ -0,0 +1,3 @@ +PURPOSE of /tools/grafana/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..45f6335 --- /dev/null +++ b/tests/Sanity/verify-systemd-units/main.fmf @@ -0,0 +1,12 @@ +summary: Verification of systemd unit files +description: '' +contact: Jan Kuřík +component: + - grafana +test: ./runtest.sh +framework: beakerlib +recommend: + - grafana +duration: 5m +extra-summary: /tools/grafana/Sanity/verify-systemd-units +extra-task: /tools/grafana/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..3e14a5f --- /dev/null +++ b/tests/Sanity/verify-systemd-units/runtest.sh @@ -0,0 +1,59 @@ +#!/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# runtest.sh of /tools/grafana/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="grafana" +PKGS="grafana" +UNITS="" + +rlJournalStart + rlPhaseStartSetup + 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 verify ${U}"; 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