Some qa cleanup.
[xfstests-dev.git] / 020
1 #! /bin/sh
2 # XFS QA Test No. 020
3 #
4 # extended attributes
5 #
6 #-----------------------------------------------------------------------
7 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
8
9 # This program is free software; you can redistribute it and/or modify it
10 # under the terms of version 2 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, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
17 # Further, this software is distributed without any warranty that it is
18 # free of the rightful claim of any third person regarding infringement
19 # or the like.  Any license provided herein, whether implied or
20 # otherwise, applies only to this software file.  Patent licenses, if
21 # any, provided herein do not apply to combinations of this program with
22 # other software, or any other product whatsoever.
23
24 # You should have received a copy of the GNU General Public License along
25 # with this program; if not, write the Free Software Foundation, Inc., 59
26 # Temple Place - Suite 330, Boston MA 02111-1307, USA.
27
28 # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
29 # Mountain View, CA  94043, or:
30
31 # http://www.sgi.com 
32
33 # For further information regarding this notice, see: 
34
35 # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
36 #-----------------------------------------------------------------------
37 #
38 # creator
39 owner=dxm@sgi.com
40
41 seq=`basename $0`
42 echo "QA output created by $seq"
43
44 here=`pwd`
45 tmp=/tmp/$$
46 status=0        # success is the default!
47 trap "rm -f $tmp.* $testfile; exit \$status" 0 1 2 3 15
48
49 # get standard environment, filters and checks
50 . ./common.rc
51 . ./common.filter
52
53 _filter()
54 {
55     sed "s#$TEST_DIR[^ :]*#<TESTFILE>#g; 
56             s#$tmp[^ :]*#<TMPFILE>#g;
57             s#/proc[^ :]*#<PROCFILE>#g" $1
58 }
59
60 _attr()
61 {
62     attr $* 2>$tmp.err >$tmp.out
63     exit=$?
64     _filter $tmp.out
65     _filter $tmp.err 1>&2
66     return $exit
67 }
68
69 _getfattr()
70 {
71     getfattr $* 2>$tmp.err >$tmp.out
72     exit=$?
73     _filter $tmp.out
74     _filter $tmp.err 1>&2
75     return $exit
76 }
77
78 _attr_list()
79 {
80     file=$1
81     
82     echo "   *** print attributes"
83     if ! _getfattr -d -e text --absolute-names $file
84     then
85         echo "      !!! error return"
86         return 1
87     fi
88 }
89
90 [ -x /usr/bin/attr ] || _notrun "attr is not installed"
91 [ -x /usr/bin/getfattr ] || _notrun "getfattr is not installed"
92
93 # real QA test starts here
94
95 rm -f $seq.full
96
97 testfile=$TEST_DIR/attribute_$$
98
99 echo "*** list non-existant file"
100 _attr_list $testfile
101
102 echo "*** list non-xfs file (in /proc)"
103 _attr_list /proc/devices
104
105 echo "*** list empty file"
106 touch $testfile
107 _attr_list $testfile
108
109 echo "*** query non-existant attribute"
110 _attr -g "nonexistant" $testfile 2>&1
111
112 echo "*** one attribute"
113 echo "fish" | _attr -s fish $testfile
114 _attr_list $testfile
115
116 echo "*** replace attribute"
117 echo "fish3" | _attr -s fish $testfile
118 _attr_list $testfile
119
120 echo "*** add attribute"
121 echo "fish2" | _attr -s snrub $testfile
122 _attr_list $testfile
123
124 echo "*** remove attribute"
125 _attr -r fish $testfile
126 _attr_list $testfile
127
128 echo "*** add lots of attributes"
129 v=0
130 while [ $v -lt 1000 ]
131 do
132     echo "value_$v" | attr -s "attribute_$v" $testfile >>$seq.full
133     if [ $? -ne 0 ]
134     then
135         echo "!!! failed to add \"attribute_$v\""
136         exit 1
137     fi
138     
139     let "v = v + 1"
140 done
141
142 echo "*** check"
143 # don't print it all out...
144 getfattr --absolute-names $testfile \
145     | tee -a $seq.full \
146     | $AWK_PROG '
147         /^#/ { next }
148         /^[     ]*$/ { next }
149         { l++ } 
150         END {print "   *** " (l - 1) " attribute(s)" }'
151
152 echo "*** remove lots of attributes"
153 v=0
154 while [ $v -lt 1000 ]
155 do
156     if ! attr -r "attribute_$v" $testfile >>$seq.full
157     then
158         echo "!!! failed to remove \"attribute_$v\""
159         exit 1
160     fi
161     
162     let "v = v + 1"
163 done
164
165 _attr_list $testfile
166
167 echo "*** really long value"
168 dd if=/dev/zero bs=1024 count=100 2>/dev/null \
169     | _attr -s "long_attr" $testfile >/dev/null
170     
171 _attr -g "long_attr" $testfile | tail -n +2 | od -t x1
172 _attr -r "long_attr" $testfile >/dev/null
173
174
175 echo "*** set/get/remove really long names (expect failure)"
176 short="XXXXXXXXXX"
177 long="$short$short$short$short$short$short$short$short$short$short"
178 vlong="$long$long$long"
179
180 _attr -s $vlong -V fish $testfile 2>&1 >/dev/null
181 _attr -g $vlong $testfile 2>&1 >/dev/null
182 _attr -r $vlong $testfile 2>&1 >/dev/null
183
184 echo "*** check final"
185
186 _attr_list $testfile
187
188 echo "*** delete"
189 rm -f $testfile
190
191 exit