summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKarel Zak2007-05-17 20:16:25 +0200
committerKarel Zak2007-05-18 13:09:12 +0200
commit3f5bda012d51a2935c3f2ce909c9080e4e3217c1 (patch)
treedec49fc8e463b74b7cdb46574fb5894c09474eac /tests
parenttests: code refactoring -- new ts_udev_loop_support function (diff)
downloadkernel-qcow2-util-linux-3f5bda012d51a2935c3f2ce909c9080e4e3217c1.tar.gz
kernel-qcow2-util-linux-3f5bda012d51a2935c3f2ce909c9080e4e3217c1.tar.xz
kernel-qcow2-util-linux-3f5bda012d51a2935c3f2ce909c9080e4e3217c1.zip
tests: add functions for label, uuid and fstype detection
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/commands.sh.in4
-rw-r--r--tests/functions.sh51
2 files changed, 54 insertions, 1 deletions
diff --git a/tests/commands.sh.in b/tests/commands.sh.in
index 9ed88a9c2..26c777918 100644
--- a/tests/commands.sh.in
+++ b/tests/commands.sh.in
@@ -4,6 +4,10 @@ TS_TOPDIR=$TOPDIR/tests
# helpers
TS_HELPER_SYSINFO="$TS_TOPDIR/helpers/mnt_test_sysinfo"
+# external commands
+TS_ECMD_BLKID="@BLKID@"
+TS_ECMD_VOLID="@VOLID@"
+
# paths to commands
TS_CMD_MOUNT=${TS_CMD_MOUNT:-"$TOPDIR/mount/mount"}
TS_CMD_UMOUNT=${TS_CMD_UMOUNT:-"$TOPDIR/mount/umount"}
diff --git a/tests/functions.sh b/tests/functions.sh
index 6c0658b1b..7cb374306 100644
--- a/tests/functions.sh
+++ b/tests/functions.sh
@@ -111,4 +111,53 @@ function ts_udev_loop_support {
return 0
}
-
+function ts_uuid_by_devname {
+ local DEV="$1"
+ local UUID=""
+ if [ -x "$TS_ECMD_BLKID" ]; then
+ UUID=$($TS_ECMD_BLKID -c /dev/null -w /dev/null -s "UUID" $DEV | sed 's/.*UUID="//g; s/"//g')
+ elif [ -x "$TS_ECMD_VOLID" ]; then
+ UUID=$($TS_ECMD_VOLID -u $DEV)
+ fi
+ echo $UUID
+}
+
+function ts_label_by_devname {
+ local DEV="$1"
+ local TYPE=""
+ if [ -x "$TS_ECMD_BLKID" ]; then
+ LABEL=$($TS_ECMD_BLKID -c /dev/null -w /dev/null -s "LABEL" $DEV | sed 's/.*LABEL="//g; s/"//g')
+ elif [ -x "$TS_ECMD_VOLID" ]; then
+ LABEL=$($TS_ECMD_VOLID -l $DEV)
+ fi
+ echo $LABEL
+}
+
+function ts_fstype_by_devname {
+ local DEV="$1"
+ local TYPE=""
+ if [ -x "$TS_ECMD_BLKID" ]; then
+ TYPE=$($TS_ECMD_BLKID -c /dev/null -w /dev/null -s "TYPE" $DEV | sed 's/.*TYPE="//g; s/"//g')
+ elif [ -x "$TS_ECMD_VOLID" ]; then
+ TYPE=$($TS_ECMD_VOLID -t $DEV)
+ fi
+ echo $TYPE
+}
+
+function ts_device_has {
+ local TAG="$1"
+ local VAL="$2"
+ local DEV="$3"
+
+ case $TAG in
+ "TYPE") vl=$(ts_fstype_by_devname $DEV);;
+ "LABEL") vl=$(ts_label_by_devname $DEV);;
+ "UUID") vl=$(ts_uuid_by_devname $DEV);;
+ *) return 1;;
+ esac
+
+ if [ "$vl" == "$VAL" ]; then
+ return 0
+ fi
+ return 1
+}