]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
tests: improve libmount context mount and umount test
authorKarel Zak <kzak@redhat.com>
Tue, 23 Nov 2010 12:06:46 +0000 (13:06 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 3 Jan 2011 11:28:46 +0000 (12:28 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
12 files changed:
shlibs/mount/src/context.c
tests/commands.sh.in
tests/expected/libmount/context [moved from tests/expected/libmount/mount with 100% similarity]
tests/expected/libmount/context-mount-by-devname [new file with mode: 0644]
tests/expected/libmount/context-mount-by-label [new file with mode: 0644]
tests/expected/libmount/context-mount-by-uuid [new file with mode: 0644]
tests/expected/libmount/context-mount-flags [new file with mode: 0644]
tests/expected/libmount/context-umount-by-devname [new file with mode: 0644]
tests/expected/libmount/context-umount-by-mountpoint [new file with mode: 0644]
tests/functions.sh
tests/ts/libmount/context [new file with mode: 0755]
tests/ts/libmount/mount [deleted file]

index 923d719189cac4758802f6cd7997acfc6fa925dc..2cc76a0adcd0ed9cf2a9f681f9a30e960461405b 100644 (file)
@@ -1318,6 +1318,8 @@ int test_mount(struct mtest *ts, int argc, char *argv[])
        rc = mnt_context_do_mount(cxt);
        if (rc)
                printf("failed to mount %s\n", strerror(errno));
+       else
+               printf("successfully mounted\n");
 
        mnt_free_context(cxt);
        return rc;
@@ -1370,6 +1372,8 @@ int test_umount(struct mtest *ts, int argc, char *argv[])
        rc = mnt_context_do_umount(cxt);
        if (rc)
                printf("failed to umount\n");
+       else
+               printf("successfully umounted\n");
 err:
        mnt_free_context(cxt);
        return rc;
index 9e56810626f78cd5d0a8d70d3ea6093015d6dcb3..19193922db231654d3b4018f969d4a61211038b6 100644 (file)
@@ -60,5 +60,7 @@ TS_CMD_LSCPU=${TS_CMD_LSCPU-"$top_builddir/sys-utils/lscpu"}
 
 TS_CMD_BLKID=${TS_CMD_BLKID-"$top_builddir/misc-utils/blkid"}
 TS_CMD_PARTX=${TS_CMD_PARTX-"$top_builddir/partx/partx"}
+TS_CMD_FINDMNT=${TS_CMD_FINDMNT-"$top_builddir/misc-utils/findmnt"}
+
 TS_CMD_FDISK=${TS_CMD_FDISK-"$top_builddir/fdisk/fdisk"}
 
diff --git a/tests/expected/libmount/context-mount-by-devname b/tests/expected/libmount/context-mount-by-devname
new file mode 100644 (file)
index 0000000..7504a7e
--- /dev/null
@@ -0,0 +1 @@
+successfully mounted
diff --git a/tests/expected/libmount/context-mount-by-label b/tests/expected/libmount/context-mount-by-label
new file mode 100644 (file)
index 0000000..7504a7e
--- /dev/null
@@ -0,0 +1 @@
+successfully mounted
diff --git a/tests/expected/libmount/context-mount-by-uuid b/tests/expected/libmount/context-mount-by-uuid
new file mode 100644 (file)
index 0000000..2f44fc4
--- /dev/null
@@ -0,0 +1,2 @@
+successfully mounted
+successfully umounted
diff --git a/tests/expected/libmount/context-mount-flags b/tests/expected/libmount/context-mount-flags
new file mode 100644 (file)
index 0000000..fc73aff
--- /dev/null
@@ -0,0 +1,3 @@
+successfully mounted
+ro,nosuid,noexec
+successfully umounted
diff --git a/tests/expected/libmount/context-umount-by-devname b/tests/expected/libmount/context-umount-by-devname
new file mode 100644 (file)
index 0000000..319236f
--- /dev/null
@@ -0,0 +1 @@
+successfully umounted
diff --git a/tests/expected/libmount/context-umount-by-mountpoint b/tests/expected/libmount/context-umount-by-mountpoint
new file mode 100644 (file)
index 0000000..319236f
--- /dev/null
@@ -0,0 +1 @@
+successfully umounted
index 7c74b0166bfc60f66c0e7d458546a3ec022d6db4..70bd45a2357a51f877fc43dfea4e4a4506aea784 100644 (file)
@@ -86,9 +86,10 @@ function ts_init_core_env {
 function ts_init_core_subtest_env {
        TS_NS="$TS_COMPONENT/$TS_TESTNAME-$TS_SUBNAME"
        TS_OUTPUT="$TS_OUTDIR/$TS_TESTNAME-$TS_SUBNAME"
+       > $TS_OUTPUT
        TS_DIFF="$TS_DIFFDIR/$TS_TESTNAME-$TS_SUBNAME"
        TS_EXPECTED="$TS_TOPDIR/expected/$TS_NS"
-       TS_MOUNTPOINT="$TS_OUTDIR/${TS_TESTNAME-$TS_SUBNAME}-mnt"
+       TS_MOUNTPOINT="$TS_OUTDIR/${TS_TESTNAME}-${TS_SUBNAME}-mnt"
 }
 
 function ts_init_env {
@@ -191,7 +192,7 @@ function ts_init_suid {
 function ts_gen_diff {
        local res=0
 
-       if [ -s $TS_OUTPUT ]; then
+       if [ -s "$TS_OUTPUT" ]; then
                diff -u $TS_EXPECTED $TS_OUTPUT > $TS_DIFF
                [ -s $TS_DIFF ] && res=1
        else
@@ -203,7 +204,7 @@ function ts_gen_diff {
 function ts_finalize_subtest {
        local res=0
 
-       if [ -s $TS_EXPECTED ]; then
+       if [ -s "$TS_EXPECTED" ]; then
                ts_gen_diff
                if [ $? -eq 1 ]; then
                        ts_failed_subtest "$1"
diff --git a/tests/ts/libmount/context b/tests/ts/libmount/context
new file mode 100755 (executable)
index 0000000..66e2dab
--- /dev/null
@@ -0,0 +1,111 @@
+#!/bin/bash
+
+# Copyright (C) 2010 Karel Zak <kzak@redhat.com>
+
+TS_TOPDIR="$(dirname $0)/../.."
+TS_DESC="context"
+
+. $TS_TOPDIR/functions.sh
+ts_init "$*"
+ts_skip_nonroot
+
+TESTPROG="$TS_HELPER_LIBMOUNT_CONTEXT"
+LABEL=libmount-test
+UUID=$(uuidgen)
+MOUNTPOINT="$TS_MOUNTPOINT"
+
+modprobe --dry-run --quiet scsi_debug
+[ "$?" == 0 ] || ts_skip "missing scsi_debug module"
+
+ts_log "Init device"
+rmmod scsi_debug &> /dev/null
+modprobe scsi_debug dev_size_mb=100
+[ "$?" == 0 ] || ts_die "Cannot init device"
+
+sleep 3
+
+DEVNAME=$(grep scsi_debug /sys/block/*/device/model | awk -F '/' '{print $4}')
+[ "x${DEVNAME}" == "x" ] && ts_die "Cannot found device"
+
+DEVICE="/dev/${DEVNAME}"
+
+ts_log "Create partitions"
+$TS_CMD_FDISK ${DEVICE} >> /dev/null 2>&1 <<EOF
+n
+p
+1
+
+
+w
+q
+EOF
+
+DEVICE="/dev/${DEVNAME}1"
+
+sleep 3
+
+ts_log "Create filesystem"
+mkfs.ext4 -L "$LABEL" -U "$UUID" $DEVICE &> /dev/null
+
+ts_log "Do tests..."
+
+export LIBMOUNT_MTAB=$TS_OUTPUT.mtab
+> $LIBMOUNT_MTAB
+
+
+ts_init_subtest "mount-by-devname"
+mkdir -p $MOUNTPOINT &>  /dev/null
+$TESTPROG --mount $DEVICE $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB || \
+       echo "(by device) cannot found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_init_subtest "umount-by-devname"
+$TESTPROG --umount $DEVICE >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB &&
+       echo "umount (device) failed: found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_init_subtest "mount-by-label"
+mkdir -p $MOUNTPOINT &>  /dev/null
+$TESTPROG --mount LABEL="$LABEL" $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB || \
+       echo "(by label) cannot found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_init_subtest "umount-by-mountpoint"
+$TESTPROG --umount $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB && \
+       echo "umount (mountpoint) failed: found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_init_subtest "mount-by-uuid"
+mkdir -p $MOUNTPOINT &> /dev/null
+$TESTPROG --mount UUID="$UUID" $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB || \
+       echo "(by uuid) cannot found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+$TESTPROG --umount $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB &&
+       echo "umount failed: found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_init_subtest "mount-flags"
+mkdir -p $MOUNTPOINT &> /dev/null
+$TESTPROG --mount -o ro,noexec,nosuid,strictatime $DEVICE $MOUNTPOINT >> $TS_OUTPUT 2>&1
+$TS_CMD_FINDMNT --kernel $MOUNTPOINT -o VFS-OPTIONS -n >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB || \
+       echo "cannot found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+$TESTPROG --umount $MOUNTPOINT >> $TS_OUTPUT 2>&1
+grep -q $DEVICE $LIBMOUNT_MTAB &&
+       echo "umount failed: found $DEVICE in $LIBMOUNT_MTAB" >> $TS_OUTPUT 2>&1
+ts_finalize_subtest
+
+
+ts_log "...done."
+rmmod scsi_debug
+ts_finalize
diff --git a/tests/ts/libmount/mount b/tests/ts/libmount/mount
deleted file mode 100755 (executable)
index 75fcd0a..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-#!/bin/bash
-
-# Copyright (C) 2010 Karel Zak <kzak@redhat.com>
-
-TS_TOPDIR="$(dirname $0)/../.."
-TS_DESC="mount"
-
-. $TS_TOPDIR/functions.sh
-ts_init "$*"
-ts_skip_nonroot
-
-TESTPROG="$TS_HELPER_LIBMOUNT_CONTEXT"
-LABEL=libmount-test
-UUID=$(uuidgen)
-
-modprobe --dry-run --quiet scsi_debug
-[ "$?" == 0 ] || ts_skip "missing scsi_debug module"
-
-ts_log "Init device"
-rmmod scsi_debug &> /dev/null
-modprobe scsi_debug dev_size_mb=100
-[ "$?" == 0 ] || ts_die "Cannot init device"
-
-sleep 3
-
-DEVNAME=$(grep scsi_debug /sys/block/*/device/model | awk -F '/' '{print $4}')
-[ "x${DEVNAME}" == "x" ] && ts_die "Cannot found device"
-
-DEVICE="/dev/${DEVNAME}"
-
-ts_log "Create partitions"
-$TS_CMD_FDISK ${DEVICE} >> /dev/null 2>&1 <<EOF
-n
-p
-1
-
-
-w
-q
-EOF
-
-DEVICE="/dev/${DEVNAME}1"
-
-sleep 3
-
-ts_log "Create filesystem"
-mkfs.ext4 -L "$LABEL" -U "$UUID" $DEVICE &> /dev/null
-
-ts_log "Do tests..."
-
-export LIBMOUNT_MTAB=$TS_OUTPUT.mtab
-> $LIBMOUNT_MTAB
-
-
-ts_init_subtest "by-devname"
-mkdir -p $TS_MOUNTPOINT &>  /dev/null
-$TESTPROG --mount $DEVICE $TS_MOUNTPOINT &> $TS_OUTPUT
-grep -q $DEVICE $LIBMOUNT_MTAB || \
-       echo "(by device) cannot found $DEVICE in $LIBMOUNT_MTAB" &> $TS_OUTPUT
-umount $TS_MOUNTPOINT
-ts_finalize_subtest
-
-
-ts_init_subtest "by-label"
-mkdir -p $TS_MOUNTPOINT &>  /dev/null
-$TESTPROG --mount LABEL="$LABEL" $TS_MOUNTPOINT &> $TS_OUTPUT
-grep -q $DEVICE $LIBMOUNT_MTAB || \
-       echo "(by label) cannot found $DEVICE in $LIBMOUNT_MTAB" &> $TS_OUTPUT
-umount $TS_MOUNTPOINT
-ts_finalize_subtest
-
-
-ts_init_subtest "by-uuid"
-mkdir -p $TS_MOUNTPOINT &>  /dev/null
-$TESTPROG --mount UUID="$UUID" $TS_MOUNTPOINT &> $TS_OUTPUT
-grep -q $DEVICE $LIBMOUNT_MTAB || \
-       echo "(by uuid) cannot found $DEVICE in $LIBMOUNT_MTAB" &> $TS_OUTPUT
-umount $TS_MOUNTPOINT
-ts_finalize_subtest
-
-ts_log "...done."
-rmmod scsi_debug
-ts_finalize