From e913989c6a9d8162f70975c650df314fe91cc1b4 Mon Sep 17 00:00:00 2001 From: Ondrej Mejzlik Date: Tue, 22 Oct 2024 11:58:25 +0200 Subject: [PATCH] add sanity test --- Sanity/basic-sanity/main.fmf | 14 ++++++++ Sanity/basic-sanity/runtest.sh | 63 ++++++++++++++++++++++++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 Sanity/basic-sanity/main.fmf create mode 100755 Sanity/basic-sanity/runtest.sh diff --git a/Sanity/basic-sanity/main.fmf b/Sanity/basic-sanity/main.fmf new file mode 100644 index 0000000..2caa93f --- /dev/null +++ b/Sanity/basic-sanity/main.fmf @@ -0,0 +1,14 @@ +summary: 'Test for: (basic-sanity)' +description: basic test to prevent empty fmf tier1 plan +contact: Ondrej Mejzlik +test: ./runtest.sh +framework: beakerlib +duration: 5m +enabled: true +tag: + - Tier2 +tier: '2' +component: + - libedit +recommend: + - libedit diff --git a/Sanity/basic-sanity/runtest.sh b/Sanity/basic-sanity/runtest.sh new file mode 100755 index 0000000..4ce63a6 --- /dev/null +++ b/Sanity/basic-sanity/runtest.sh @@ -0,0 +1,63 @@ +#!/usr/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# runtest.sh of /CoreOS/libedit/basic-sanity +# Description: Test for basic-sanity +# Author: Ondrej Mejzlik +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2024 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=${PACKAGE:-libedit} + +rlJournalStart + rlPhaseStartSetup + rlAssertRpm $PACKAGE || rlDie "Package $PACKAGE not installed" + rlLog "Arch: $(arch), PC name: $(hostname), $(hostname -A) User: $(whoami)" + rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory" + rlRun "pushd $TmpDir" 0 "Going into tmp directory $TmpDir" + rlPhaseEnd + + rlGetTestState && { + rlPhaseStartTest + rlRun "rpm -V $PACKAGE" 0 "Check RPM data" + rlRun "timeout 3 man $PACKAGE" 0,16,124 "Check existence of man pages" + for f in $(rpm -ql $PACKAGE | grep 'bin/'); do + echo "$f" + rlRun "$f --help" 0 "Check help response" + rlRun "timeout 3 man $f " 0,16,124 "Check man pages" + if [ -x $f ]; then + rlPass "File $f is executable" + else + rlFail "File $f is not executable" + fi + done + rlPhaseEnd + } + + rlPhaseStartCleanup + rlRun "popd" + rlRun "rm -r $TmpDir" 0 "Removing tmp directory" + rlPhaseEnd +rlJournalPrintText +rlJournalEnd