Upload Tizen:Base source
[framework/base/util-linux-ng.git] / tests / ts / mount / fstab-symlink
1 #!/bin/bash
2
3 #
4 # Copyright (C) 2007 Karel Zak <kzak@redhat.com>
5 #
6 # This file is part of util-linux-ng.
7 #
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This file is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18
19 TS_TOPDIR="$(dirname $0)/../.."
20 TS_DESC="by devname (fstab symlink)"
21
22 . $TS_TOPDIR/functions.sh
23 ts_init "$*"
24 ts_skip_nonroot
25
26 set -o pipefail
27
28 LINKNAME="$TS_OUTDIR/${TS_TESTNAME}_lnk"
29
30 DEVICE=$(ts_device_init)
31 [ "$?" == 0 ] || ts_die "Cannot init device"
32
33 mkfs.ext3 $DEVICE &> /dev/null || ts_die "Cannot make ext3 on $DEVICE" $DEVICE
34
35 ts_device_has "TYPE" "ext3" $DEVICE || ts_die "Cannot found ext3 on $DEVICE" $DEVICE
36
37 [ -d "$TS_MOUNTPOINT" ] || mkdir -p $TS_MOUNTPOINT
38
39 rm -rf $LINKNAME
40 ln -s $DEVICE $LINKNAME
41
42 ts_fstab_add $LINKNAME $TS_MOUNTPOINT "auto" "defaults,user"
43
44 # variant A) -- UID=0
45 $TS_CMD_MOUNT $LINKNAME 2>&1 >> $TS_OUTPUT
46 ts_is_mounted $DEVICE || ts_die "A) Cannot found $DEVICE in /proc/mounts" $DEVICE
47 $TS_CMD_UMOUNT $LINKNAME || ts_die "A) Cannot umount $LINKNAME" $DEVICE
48
49 # varian B) -- disabled, the $TS_CMD_MOUNT is usually not a real program, but
50 #              libtool wrapper and the real mount is exec()ed with
51 #              LD_LIBRARY_PATH. This all is bad for suid programs...
52
53 #ts_init_suid $TS_CMD_MOUNT
54 #ts_init_suid $TS_CMD_UMOUNT
55 #
56 #su $TS_TESTUSER -c "$TS_CMD_MOUNT -v -v -v $LINKNAME" 2>&1 >> $TS_OUTPUT
57 #ts_is_mounted $DEVICE
58 #   || ts_die "B) Cannot found $DEVICE in /proc/mounts" $DEVICE
59 #su $TS_TESTUSER -c "$TS_CMD_UMOUNT $LINKNAME" 2>&1 >> $TS_OUTPUT \
60 #   || ts_die "B) Cannot umount $LINKNAME" $DEVICE
61
62 ts_device_deinit $DEVICE
63 ts_fstab_clean
64 rm -f $LINKNAME
65
66 ts_log "Success"
67 ts_finalize
68