xfstests: remove _need_to_be_root
[xfstests-dev.git] / tests / btrfs / 003
1 #! /bin/bash
2 # FS QA Test No. btrfs/003
3 #
4 # btrfs vol tests
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2011 Oracle.  All Rights Reserved.
8 #
9 # This program is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU General Public License as
11 # published by the Free Software Foundation.
12 #
13 # This program is distributed in the hope that it would 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 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write the Free Software Foundation,
20 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 #-----------------------------------------------------------------------
22 #
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1        # failure is the default!
31 dev_removed=0
32 removed_dev_htl=""
33 trap "_cleanup; exit \$status" 0 1 2 3 15
34
35 _cleanup()
36 {
37     cd /
38     rm -f $tmp.*
39     if [ $dev_removed == 1 ]; then
40         _scratch_unmount
41         _devmgt_add "${removed_dev_htl}"
42     fi
43 }
44
45 # get standard environment, filters and checks
46 . ./common/rc
47 . ./common/filter
48
49 _supported_fs btrfs
50 _supported_os Linux
51 _require_scratch
52 _require_scratch_dev_pool 4
53 _require_deletable_scratch_dev_pool
54 _require_command "$WIPEFS_PROG" wipefs
55
56 rm -f $seqres.full
57
58 # Test cases related to raid in btrfs
59 _test_raid0()
60 {
61         export MKFS_OPTIONS="-m raid0 -d raid0"
62         _scratch_pool_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
63         _scratch_mount
64         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
65         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
66         _scratch_unmount
67 }
68
69 _test_raid1()
70 {
71         export MKFS_OPTIONS="-m raid1 -d raid1"
72         _scratch_pool_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
73         _scratch_mount
74         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
75         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
76         _scratch_unmount
77 }
78
79 _test_raid10()
80 {
81         export MKFS_OPTIONS="-m raid10 -d raid10"
82         _scratch_pool_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
83         _scratch_mount
84         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
85         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
86         _scratch_unmount
87 }
88
89 _test_single()
90 {
91         export MKFS_OPTIONS="-m single -d single"
92         _scratch_pool_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
93         _scratch_mount
94         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
95         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
96         _scratch_unmount
97 }
98
99 _test_add()
100 {
101         local i
102         local devs[]="( $SCRATCH_DEV_POOL )"
103         local n=${#devs[@]}
104
105         n=$(($n-1))
106
107         export MKFS_OPTIONS=""
108         _scratch_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
109         _scratch_mount
110         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
111         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
112         for i in `seq 2 $n`; do
113                 $WIPEFS_PROG -a ${devs[$i]} >> $seqres.full 2>&1 || \
114                         _fail "wipefs failed"
115                 $BTRFS_UTIL_PROG device add ${devs[$i]} $SCRATCH_MNT >> $seqres.full 2>&1 || _fail "device add failed"
116         done
117         $BTRFS_UTIL_PROG filesystem balance $SCRATCH_MNT >> $seqres.full 2>&1 || _fail "balance failed"
118         _scratch_unmount
119 }
120
121 _test_replace()
122 {
123         local i
124         local devs=( $SCRATCH_DEV_POOL )
125         local n=${#devs[@]}
126         local ds
127         local d
128
129         # exclude the first and the last disk in the disk pool
130         n=$(($n-1))
131         ds=${devs[@]:1:$(($n-1))}
132
133         export MKFS_OPTIONS="-m raid1 -d raid1"
134         _scratch_mkfs "$ds" >> $seqres.full 2>&1 || _fail "tr: mkfs failed"
135         _scratch_mount
136         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
137         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
138
139         #pick the 2nd last disk 
140         ds=${devs[@]:$(($n-1)):1}
141
142         # retrive the HTL for this scsi disk
143         d=`echo $ds|cut -d"/" -f3`
144         removed_dev_htl=`ls -l /sys/class/block/${d} | rev | cut -d "/" -f 3 | rev`
145
146         #fail disk
147         _devmgt_remove ${removed_dev_htl} $ds
148         dev_removed=1
149
150         $BTRFS_UTIL_PROG filesystem show $SCRATCH_DEV | grep "Some devices missing" >> $seqres.full || _fail \
151                                                         "btrfs did not report device missing"
152
153         # add a new disk to btrfs
154         ds=${devs[@]:$(($n)):1}
155         $WIPEFS_PROG -a ${ds} >> $seqres.full 2>&1 || _fail "wipefs failed"
156         $BTRFS_UTIL_PROG device add ${ds} $SCRATCH_MNT >> $seqres.full 2>&1 || _fail "dev add failed"
157         # in some system balance fails if there is no delay (a bug)
158         # putting sleep 10 to work around as of now
159         # sleep 10
160         $BTRFS_UTIL_PROG filesystem balance $SCRATCH_MNT >> $seqres.full 2>&1 || _fail "dev balance failed"
161
162         # cleaup. add the removed disk
163         _scratch_unmount
164         _devmgt_add "${removed_dev_htl}"
165         dev_removed=0
166 }
167
168 _test_remove()
169 {
170         _scratch_pool_mkfs >> $seqres.full 2>&1 || _fail "mkfs failed"
171         _scratch_mount
172         dirp=`mktemp -duq $SCRATCH_MNT/dir.XXXXXX`
173         _populate_fs -n 1 -f 20 -d 10 -r $dirp -s 10
174
175         # pick last dev in the list
176         dev_del=`echo ${SCRATCH_DEV_POOL} | awk '{print $NF}'`
177         $BTRFS_UTIL_PROG device delete $dev_del $SCRATCH_MNT || _fail "btrfs device delete failed"
178         $BTRFS_UTIL_PROG filesystem show $SCRATCH_DEV 2>&1 | grep $dev_del >> $seqres.full && _fail "btrfs still shows the deleted dev"
179         _scratch_unmount
180 }
181
182 _test_raid0
183 _test_raid1
184 _test_raid10
185 _test_single
186 _test_add
187 _test_replace
188 _test_remove
189
190 echo "Silence is golden"
191 status=0; exit