From 3f5bda012d51a2935c3f2ce909c9080e4e3217c1 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 17 May 2007 20:16:25 +0200 Subject: tests: add functions for label, uuid and fstype detection Signed-off-by: Karel Zak --- tests/functions.sh | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) (limited to 'tests/functions.sh') 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 +} -- cgit v1.2.3-55-g7522