xfstests: move generic tests out of top level dir
[xfstests-dev.git] / tests / generic / 233
1 #! /bin/bash
2 # FSQA Test No. 233
3 #
4 # Run fsstress with quotas enabled and limits set low and verify accounted
5 # quotas in the end
6 #
7 # Derived from test 231
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 echo "QA output created by $seq"
29
30 here=`pwd`
31 tmp=/tmp/$$
32 status=1        # failure is the default!
33 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
34
35 # get standard environment, filters and checks
36 . ./common.rc
37 . ./common.filter
38 . ./common.quota
39
40 FSX_FILE_SIZE=64000000
41 FSX_ARGS="-q -l $FSX_FILE_SIZE -o 65536 -S 191110531 -N 100000"
42
43 _filter_num()
44 {
45         tee -a $here/$seq.full |\
46         sed -e 's/[0-9][0-9]* inodes/I inodes/g' \
47             -e 's/[0-9][0-9]* paths/P paths/g' \
48             -e 's/seed = [0-9][0-9]*/seed = S/'
49 }
50
51 _fsstress()
52 {
53         echo ""
54         echo "Testing fsstress"
55         echo ""
56
57         out=$SCRATCH_MNT/fsstress.$$
58         count=5000
59         args=`_scale_fsstress_args -z \
60 -f rmdir=20 -f link=10 -f creat=10 -f mkdir=10 -f unlink=20 -f symlink=10 \
61 -f rename=10 -f fsync=2 -f write=15 -f dwrite=15 \
62 -n $count -d $out -p 7`
63
64         echo "fsstress $args" >> tee -a $here/$seq.full
65         if ! su $qa_user -c "$FSSTRESS_PROG $args" | tee -a $here/$seq.full | _filter_num
66         then
67                 echo "    fsstress $args returned $?"
68                 cat $tmp.out | tee -a $here/$seq.full
69                 status=1
70         fi
71 }
72
73 # real QA test starts here
74 _supported_fs generic
75 _supported_os Linux
76 _require_scratch
77 _require_quota
78 _require_user
79 _need_to_be_root
80
81 _scratch_mkfs >> $seq.full 2>&1
82 _scratch_mount "-o usrquota,grpquota"
83 chmod 777 $SCRATCH_MNT
84 quotacheck -u -g $SCRATCH_MNT 2>/dev/null
85 quotaon -u -g $SCRATCH_MNT 2>/dev/null
86 setquota -u $qa_user 32000 32000 1000 1000 $SCRATCH_MNT 2>/dev/null
87
88 if ! _fsstress; then
89         umount $SCRATCH_DEV 2>/dev/null
90         exit
91 fi
92
93 if ! _check_quota_usage; then
94         umount $SCRATCH_DEV 2>/dev/null
95         status=1
96         exit
97 fi
98
99 umount $SCRATCH_DEV 2>/dev/null
100 status=0
101 exit