2602b87ed0
This test should cover cases when setroubleshoot reports "Plugin Exception" during analyses, see https://bugzilla.redhat.com/show_bug.cgi?id=1784564 Example log with the reported problem: setroubleshoot[834]: Plugin Exception catchall_labels setroubleshoot[834]: Plugin Exception file setroubleshoot[834]: Plugin Exception openvpn
58 lines
2.0 KiB
Bash
Executable File
58 lines
2.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# runtest.sh of /CoreOS/setroubleshoot/Regression/no-plugin-exception-during-analyses
|
|
# Description: Does setroubleshoot report any 'Plugin Exception' during analyses?
|
|
# Author: Petr Lautrbach <plautrba@redhat.com>
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Copyright (c) 2020 Red Hat, Inc.
|
|
#
|
|
# This copyrighted material is made available to anyone wishing
|
|
# to use, modify, copy, or redistribute it subject to the terms
|
|
# and conditions of the GNU General Public License version 2.
|
|
#
|
|
# 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, write to the Free
|
|
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
# Include Beaker environment
|
|
. /usr/bin/rhts-environment.sh || exit 1
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
PACKAGE="setroubleshoot"
|
|
|
|
rlJournalStart
|
|
rlPhaseStartSetup
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "no 'Plugin Exception'"
|
|
|
|
SINCE=$(date '+%Y-%m-%d %H:%M:%S')
|
|
RANDOM_NUMBER=${RANDOM}
|
|
rlRun "passwd --help >& /root/output-${RANDOM_NUMBER}.txt"
|
|
rlRun "rm -f /root/output-${RANDOM_NUMBER}.txt"
|
|
sleep 10
|
|
rlRun "journalctl --since=\"$SINCE\" > journal-after.txt"
|
|
rlAssertGrep "setroubleshoot.*: SELinux is preventing passwd" journal-after.txt
|
|
rlAssertNotGrep "setroubleshoot.*: Plugin Exception " journal-after.txt
|
|
rlRun "[[ $? -eq 0 ]] || cat journal-after.txt"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartCleanup
|
|
rlRun "rm -f journal-after.txt"
|
|
rlPhaseEnd
|
|
rlJournalPrintText
|
|
rlJournalEnd
|
|
|