From d91747784b2a7c9aee539b9d2b11ef0aaef29320 Mon Sep 17 00:00:00 2001 From: Ondrej Mejzlik Date: Mon, 19 Aug 2024 11:47:53 +0200 Subject: [PATCH] add basic test --- Sanity/basic-sanity/main.fmf | 14 ++++++++ Sanity/basic-sanity/runtest.sh | 63 ++++++++++++++++++++++++++++++++++ plans/ci.fmf | 6 ++++ 3 files changed, 83 insertions(+) create mode 100644 Sanity/basic-sanity/main.fmf create mode 100755 Sanity/basic-sanity/runtest.sh create mode 100644 plans/ci.fmf diff --git a/Sanity/basic-sanity/main.fmf b/Sanity/basic-sanity/main.fmf new file mode 100644 index 0000000..561ec0a --- /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: + - Tier1 +tier: '1' +component: + - libutempter +recommend: + - libutempter diff --git a/Sanity/basic-sanity/runtest.sh b/Sanity/basic-sanity/runtest.sh new file mode 100755 index 0000000..892ca2a --- /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/libutempter/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:-libutempter} + +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 diff --git a/plans/ci.fmf b/plans/ci.fmf new file mode 100644 index 0000000..8ad6b03 --- /dev/null +++ b/plans/ci.fmf @@ -0,0 +1,6 @@ +summary: CI plan, picks up all tests, runs in beakerlib. +discover: + - name: fedora + how: fmf +execute: + how: tmt