From 16f2ab05ece673a82645580ce55f163854800b94 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 22 May 2007 11:46:32 +0200 Subject: [PATCH] tests: add mount by devname test Signed-off-by: Karel Zak --- tests/Makefile.am | 1 + tests/expected/ts-mount-devname | 1 + tests/ts-mount-devname | 53 +++++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 tests/expected/ts-mount-devname create mode 100755 tests/ts-mount-devname diff --git a/tests/Makefile.am b/tests/Makefile.am index b31eea0ff..a9d167d0f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -16,6 +16,7 @@ EXTRA_DIST = expected/ \ ts-ipcs.sh \ ts-login-checktty \ ts-look-separator \ + ts-mount-devname \ ts-mount-label \ ts-mount-move \ ts-mount-mtablock \ diff --git a/tests/expected/ts-mount-devname b/tests/expected/ts-mount-devname new file mode 100644 index 000000000..35821117c --- /dev/null +++ b/tests/expected/ts-mount-devname @@ -0,0 +1 @@ +Success diff --git a/tests/ts-mount-devname b/tests/ts-mount-devname new file mode 100755 index 000000000..dd6e4a358 --- /dev/null +++ b/tests/ts-mount-devname @@ -0,0 +1,53 @@ +#!/bin/bash + +# +# Copyright (C) 2007 Karel Zak +# +# This file is part of util-linux-ng. +# +# This file is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License. +# +# This file 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. +# + +. commands.sh +. functions.sh + +TS_COMPONENT="mount" +TS_DESC="devname" + +ts_init "$1" +ts_skip_nonroot + +set -o pipefail + +MOUNTPOINT="$TS_OUTDIR/${TS_NAME}_mnt" +DEVICE=$(ts_device_init) +[ "$?" == 0 ] || ts_die "Cannot init device" + +mkfs.ext3 $DEVICE &> /dev/null +[ "$?" == "0" ] || ts_die "Cannot make ext3 on $DEVICE" $DEVICE + +ts_device_has "TYPE" "ext3" $DEVICE +[ "$?" == "0" ] || ts_die "Cannot found ext3 on $DEVICE" $DEVICE + +[ -d "$MOUNTPOINT" ] || mkdir -p $MOUNTPOINT + +$TS_CMD_MOUNT $DEVICE $MOUNTPOINT 2>&1 >> $TS_OUTPUT + +grep -q $DEVICE /proc/mounts +[ "$?" == "0" ] || ts_die "Cannot found $DEVICE in /proc/mounts" $DEVICE + +$TS_CMD_UMOUNT $DEVICE +[ "$?" == "0" ] || ts_die "Cannot umount $DEVICE" $DEVICE + +ts_device_deinit $DEVICE + +ts_log "Success" +ts_finalize +