summaryrefslogtreecommitdiff
path: root/097
blob: d3174e40d37c578c4a19dc6d4927c41a4307d636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
#! /bin/bash
# FS QA Test No. 097. Modifed from UDFQA test 033.
#
# simple attr tests for EAs:
#  - set
#  - get
#  - list
#  - remove
# Basic testing.
#
#-----------------------------------------------------------------------
# Copyright (c) 2000-2004 Silicon Graphics, Inc.  All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
#
#-----------------------------------------------------------------------
#

seq=`basename $0`
echo "QA output created by $seq"

here=`pwd`
tmp=/tmp/$$
status=1	# failure is the default!
TARGET_DIR=
trap "_cleanup; exit \$status" 0 1 2 3 15

_cleanup()
{
    rm -f $tmp.*
    cd $TARGET_DIR
    rm -f foo
}

_umount_and_mount()
{
    cd /
    umount $TARGET_DIR
    if [ "$FSTYP" == "xfs" ]; then
	_test_mount
    else
	_scratch_mount
    fi
    
    cd $TARGET_DIR
}

# get standard environment, filters and checks
. ./common.rc
. ./common.filter

# link correct .out file
# This is done bacause udf and xfs print attrs in different orders.
rm -rf $seq.out
if [ "$FSTYP" == "xfs" ]; then
    ln -s $seq.out.xfs $seq.out
else
    ln -s $seq.out.udf $seq.out
fi

# real QA test starts here
_supported_fs generic
_supported_os IRIX

_require_scratch
_require_attrs

_setup_testdir 

TARGET_DIR=$SCRATCH_MNT
[ "$FSTYP" == "xfs" ] && TARGET_DIR=$TEST_DIR
cd $TARGET_DIR

echo "create file foo"
rm -f foo 
touch foo

echo "should be no EAs for foo:"
${ATTR_PROG} -l foo

echo "set EA <noise,woof>:"
${ATTR_PROG} -s noise -V woof foo

echo "set EA <colour,blue>:"
${ATTR_PROG} -s colour -V blue foo

echo "set EA <size,small>:"
${ATTR_PROG} -s size -V small foo

echo "list the EAs for foo: noise, colour, size" 
${ATTR_PROG} -l foo

echo "check the list again for foo"
${ATTR_PROG} -l foo

echo "unmount the FS and see if EAs are persistent"
_umount_and_mount

echo "check the list again for foo after umount/mount"
${ATTR_PROG} -l foo

echo "get the value of the noise EA"
${ATTR_PROG} -g noise foo

echo "get the value of the colour EA which was removed earlier"
${ATTR_PROG} -g colour foo

echo "get the value of the size EA"
${ATTR_PROG} -g size foo

echo "remove the colour EA on foo"
${ATTR_PROG} -r colour foo

echo "list EAs for foo: noise, size"
${ATTR_PROG} -l foo

echo "get the value of the noise EA"
${ATTR_PROG} -g noise foo

echo "get the value of the colour EA which was removed earlier"
${ATTR_PROG} -g colour foo

echo "get the value of the size EA"
${ATTR_PROG} -g size foo

echo "list all the EAs again: noise, size"
${ATTR_PROG} -l foo

echo "change the value of the size EA from small to huge"
${ATTR_PROG} -s size -V huge foo

echo "get the size EA which should now have value huge"
${ATTR_PROG} -g size foo

echo "list EAs: noise, size"
${ATTR_PROG} -l foo

echo "remove the size EA from foo"
${ATTR_PROG} -r size foo

echo "list EAs: noise (size EA has been removed)"
${ATTR_PROG} -l foo

echo "get the noise EA: woof"
${ATTR_PROG} -g noise foo

echo "try removing non-existent EA named woof"
${ATTR_PROG} -r woof foo

echo "try removing already removed EA size"
${ATTR_PROG} -r size foo

echo "list EAs: noise"
${ATTR_PROG} -l foo

echo "try removing already removed EA colour"
${ATTR_PROG} -r colour foo

echo "list EAs: noise"
${ATTR_PROG} -l foo

echo "remove remaining EA noise"
${ATTR_PROG} -r noise foo

echo "list EAs: should be no EAs left now"
${ATTR_PROG} -l foo

echo "unmount the FS and see if EAs are persistent"
_umount_and_mount

echo "list EAs: should still be no EAs left"
${ATTR_PROG} -l foo

echo ""
echo "*** Test out the root namespace ***"
echo ""

echo "set EA <root:colour,marone>:"
${ATTR_PROG} -R -s colour -V marone foo

echo "set EA <user:colour,beige>:"
${ATTR_PROG} -s colour -V beige foo

echo "set EA <user:vomit,pizza>:"
${ATTR_PROG} -s vomit -V pizza foo

echo "set EA <root:noise,whack>:"
${ATTR_PROG} -R -s noise -V whack foo

echo "list root EAs: <root:colour,noise>:"
${ATTR_PROG} -R -l foo

echo "list user EAs: <user:colour,vomit>:"
${ATTR_PROG} -l foo

echo "get root EA colour: marone"
${ATTR_PROG} -R -g colour foo

echo "get root EA noise: whack"
${ATTR_PROG} -R -g noise foo

echo "get root EA vomit which is a user EA => find nothing"
${ATTR_PROG} -R -g vomit foo

echo ""
echo "unmount the FS and see if EAs are persistent"
echo ""
_umount_and_mount

echo "get root EA colour: marone"
${ATTR_PROG} -R -g colour foo

echo "get root EA noise: whack"
${ATTR_PROG} -R -g noise foo

echo "get user EA vomit: pizza" 
${ATTR_PROG} -g vomit foo

echo "remove the root colour EA"
${ATTR_PROG} -R -r colour foo

echo "list root EAs: <root:noise>:"
${ATTR_PROG} -R -l foo

echo "list user EAs: <user:colour,vomit>:"
${ATTR_PROG} -l foo

echo "remove the final root EA noise"
${ATTR_PROG} -R -r noise foo

echo "list root EAs: none"
${ATTR_PROG} -R -l foo

cd /
_cleanup_testdir

# Check the filesystem
_check_scratch_fs

# optional stuff if your test has verbose output to help resolve problems
#echo
#echo "If failure, check $seq.full (this) and $seq.full.ok (reference)"

# success, all done
status=0
exit