63 lines
2.2 KiB
Bash
Executable file
63 lines
2.2 KiB
Bash
Executable file
#!/bin/bash
|
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# runtest.sh of /CoreOS/python-pyudev/Sanity/smoke
|
|
# Description: List block devices and compare with lsblk output
|
|
# Author: Branislav Nater <bnater@redhat.com>
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Copyright (c) 2015 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 rhts environment
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
PACKAGE=${PACKAGE:-python-pyudev}
|
|
|
|
rlJournalStart
|
|
rlPhaseStartSetup
|
|
if rlIsRHEL '<=7'; then
|
|
rlAssertRpm $PACKAGE
|
|
else
|
|
rlAssertRpm "python3-pyudev" || rlDie "python3-pyudev not installed"
|
|
fi
|
|
rlRun "TmpDir=\$(mktemp -d)" 0 "Creating tmp directory"
|
|
rlRun "cp test.py test3.py $TmpDir" 0 "Copy test.py to $TmpDir"
|
|
rlRun "pushd $TmpDir"
|
|
rlPhaseEnd
|
|
|
|
rlGetTestState && {
|
|
rlPhaseStartTest
|
|
if rlIsRHEL '<=7'; then
|
|
rlRun "python test.py | sort | tee pyudev_devices.txt" 0 "List block devices using pyudev"
|
|
else
|
|
rlRun "python3 test3.py | sort | tee pyudev_devices.txt" 0 "List block devices with pyudev3"
|
|
fi
|
|
rlRun "lsblk -lapno KNAME | sort -u | tee lsblk_devices.txt" 0 "List block devices using lsblk"
|
|
rlAssertNotDiffer pyudev_devices.txt lsblk_devices.txt
|
|
rlPhaseEnd
|
|
}
|
|
|
|
rlPhaseStartCleanup
|
|
rlRun "popd"
|
|
rlRun "rm -r $TmpDir" 0 "Removing tmp directory"
|
|
rlPhaseEnd
|
|
rlJournalEnd
|
|
rlJournalPrintText
|