xfstests 250: remove unwanted new line in 250.out
[xfstests-dev.git] / 107
1 #! /bin/bash
2 # FS QA Test No. 107
3 #
4 # Project quota.
5 # Use of "sync" mount option here is an attempt to get deterministic
6 # allocator behaviour.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2005 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 # creator
27 owner=nathans@sgi.com
28
29 seq=`basename $0`
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1        # failure is the default!
35 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
36
37 # get standard environment, filters and checks
38 . ./common.rc
39 . ./common.filter
40 . ./common.quota
41
42 filter_xfs_quota()
43 {
44         perl -ne "
45 s,$target,[TARGET],;
46 s,$tmp.projects,[PROJECTS_FILE],;
47 s,$SCRATCH_MNT,[SCR_MNT],;
48 s,$SCRATCH_DEV,[SCR_DEV],;
49 s/Inode: \#\d+ \(0 blocks, 0 extents\)/Inode: #[INO] (0 blocks, 0 extents)/;
50 s/Inode: \#\d+ \(\d+ blocks, \d+ extents\)/Inode: #[INO] (X blocks, Y extents)/;
51         print;"
52 }
53
54 _supported_fs xfs
55 _supported_os Linux #IRIX
56 _require_scratch
57 _require_xfs_quota
58
59 # real QA test starts here
60 _scratch_mkfs_xfs | _filter_mkfs 2>$tmp.mkfs
61 cat $tmp.mkfs >$seq.full
62 . $tmp.mkfs
63
64 # setup a default run
65 if [ -z "$MOUNT_OPTIONS" ]; then
66         export MOUNT_OPTIONS="-o pquota,sync"
67 else
68         export MOUNT_OPTIONS="$MOUNT_OPTIONS -o sync"
69 fi
70
71 _qmount
72 _require_prjquota $SCRATCH_DEV
73
74 echo "### create projects file"
75 rm -f $tmp.projects
76 target=$SCRATCH_MNT/project
77 echo "6:$target" | tee -a $seq.full > $tmp.projects
78
79 echo "### populate filesystem"
80 mkdir $target           || exit
81 FSSTRESS_AVOID="$FSSTRESS_AVOID -fmknod=0 -fsymlink=0"
82 $FSSTRESS_PROG -s 0xfeed -m8 -w -p4 -n1000 $FSSTRESS_AVOID -d $target
83 $FSSTRESS_PROG -s 0xbabe -m8 -z -p4 -n500 -fsetxattr=250 -fchown=250 -d $target
84
85 QARGS="-x -D $tmp.projects -P /dev/null $SCRATCH_MNT"
86
87 echo "### initial report"
88 xfs_quota -c 'quot -p' -c 'quota -ip 6' $QARGS | filter_xfs_quota
89
90 echo "### check the project, should give warnings"
91 xfs_quota -c 'project -c 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
92
93 echo "### recursively setup the project"
94 xfs_quota -c 'project -s 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
95 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
96
97 echo "### check the project, should give no warnings now"
98 xfs_quota -c 'project -c 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
99
100 echo "### deny a hard link - wrong project ID"
101 rm -f $SCRATCH_MNT/outer $target/inner
102 $XFS_IO_PROG -f -c 'chproj 789' $SCRATCH_MNT/outer
103 ln $SCRATCH_MNT/outer $target/inner 2>/dev/null
104 if [ $? -eq 0 ]; then
105         echo hard link succeeded
106         ls -ld $SCRATCH_MNT/outer $target/inner
107 else
108         echo hard link failed
109 fi
110 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
111
112 echo "### allow a hard link - right project ID"
113 $XFS_IO_PROG -c 'chproj 6' $SCRATCH_MNT/outer
114 ln $SCRATCH_MNT/outer $target/inner
115 if [ $? -eq 0 ]; then
116         echo hard link succeeded
117 else
118         echo hard link failed
119         ls -ld $SCRATCH_MNT/outer $target/inner
120 fi
121 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
122
123 echo "### recursively clear the project"
124 xfs_quota -c 'project -C 6' $QARGS | LC_COLLATE=POSIX sort | filter_xfs_quota
125 #no output...
126 xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
127
128 status=0
129 exit