QA tests for filestreams
[xfstests-dev.git] / 052
1 #! /bin/sh
2 # FS QA Test No. 052
3 #
4 # Ensure that quota(1) displays blocksizes matching ondisk dquots.
5 #
6 # MOUNT_OPTIONS can be set to gquota to test group quota,
7 # defaults to uquota if MOUNT_OPTIONS is not set.
8 #
9 #-----------------------------------------------------------------------
10 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
11 #-----------------------------------------------------------------------
12 #
13 # creator
14 owner=nathans@sgi.com
15
16 seq=`basename $0`
17 echo "QA output created by $seq"
18
19 here=`pwd`
20 tmp=/tmp/$$
21 status=1        # failure is the default!
22
23 # get standard environment, filters and checks
24 . ./common.rc
25 . ./common.filter
26 . ./common.quota
27
28 _cleanup()
29 {
30         cd /
31         umount $SCRATCH_MNT 2>/dev/null
32         rm -f $tmp.*
33 }
34 trap "_cleanup; exit \$status" 0 1 2 3 15
35
36 # real QA test starts here
37 _supported_fs xfs
38 _supported_os IRIX Linux
39
40 rm -f $seq.full
41
42 _require_scratch
43 _require_quota
44 _require_nobody
45
46 # setup a default run
47 _qmount_option uquota
48
49 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
50 cat $tmp.mkfs >>$seq.full
51 chmod a+w $seq.full     # arbitrary users will write here
52
53 # keep the blocksize from mkfs ($dbsize)
54 . $tmp.mkfs
55
56 _qmount
57
58 # setup user/group to test
59 if src/feature -U $SCRATCH_DEV ; then
60         type=u; eval `_choose_uid`
61 elif src/feature -G $SCRATCH_DEV ; then
62         type=g; eval `_choose_gid`
63 elif src/feature -P $SCRATCH_DEV ; then
64         type=p; eval `_choose_prid`
65 else
66         _notrun "No quota support at mount time"
67 fi
68
69 # create 100 (fs-blocksize) blocks
70 _file_as_id $SCRATCH_MNT/foo $id $type $dbsize 220
71 sync
72
73 # set limit at 1001 (1k) blocks
74 bsoft=1001
75 bhard=1001
76 isoft=10
77 ihard=10
78 xfs_quota -x \
79         -c "limit -$type bsoft=${bsoft}k bhard=${bhard}k $id" \
80         -c "limit -$type isoft=$isoft ihard=$ihard $id" \
81         $SCRATCH_DEV
82
83 # cross check blks, softblks, hardblks <-> quota, xfs_db
84 xfs_quota -c "quota -$type -birnN $id" $SCRATCH_DEV |
85                         tr -s '[:space:]' | tee -a $seq.full | perl -ne '
86         if (m[^\s*'$SCRATCH_DEV'\s+(\d+)\s+(\d+)\s+(\d+)]) {
87                 print "used_blocks=", $1, "\n";
88                 print "soft_blocks=", $2, "\n";
89                 print "hard_blocks=", $3, "\n";
90                 $next = 0;
91         }' | LC_COLLATE=POSIX sort >$tmp.quota
92
93 echo ===quota output >> $seq.full
94 cat $tmp.quota >> $seq.full
95 [ ! -s $tmp.quota ] && echo "warning: quota output file is empty"
96
97 umount $SCRATCH_MNT
98
99 # note - does (insitu) conversion from fs blocks to 1K blocks
100 xfs_db -rc "dquot -$type $id" -c p $SCRATCH_DEV | tee -a $seq.full | perl -ne '
101         if (/^diskdq.bcount = (\d+)$/) {
102                  print "used_blocks=", $1 * '$dbsize' / 1024, "\n";
103         }
104         elsif (/^diskdq.blk_hardlimit = (\d+)$/) {
105                  print "hard_blocks=", $1 * '$dbsize' / 1024, "\n";
106         }
107         elsif (/^diskdq.blk_softlimit = (\d+)$/) {
108                 print "soft_blocks=", $1 * '$dbsize' / 1024, "\n";
109         }' | LC_COLLATE=POSIX sort >$tmp.xfs_db
110
111 echo ===xfs_db output >> $seq.full
112 cat $tmp.xfs_db >> $seq.full
113 [ ! -s $tmp.xfs_db ] && echo "warning: xfs_db output file is empty"
114
115 echo Comparing out of xfs_quota and xfs_db
116 diff $tmp.quota $tmp.xfs_db
117 [ $? -eq 0 ] && echo OK.
118
119 # success, all done
120 status=0
121 exit