Add GPL license plate to SGI's test files.
[xfstests-dev.git] / 065
1 #! /bin/sh
2 #
3 #-----------------------------------------------------------------------
4 # Copyright (c) 2000-2002 Silicon Graphics, Inc.  All Rights Reserved.
5 #
6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License as
8 # published by the Free Software Foundation.
9 #
10 # This program is distributed in the hope that it would be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write the Free Software Foundation,
17 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18 #
19 #-----------------------------------------------------------------------
20 #
21 # FS QA Test No. 065
22 #
23 # Testing incremental dumps and cumulative restores with
24 # "adding, deleting, renaming, linking, and unlinking files and
25 #  directories".
26 # Do different operations for each level.
27 #
28 # creator
29 owner=tes@sgi.com
30
31 seq=`basename $0`
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1        # failure is the default!
37 trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
38
39 # get standard environment, filters and checks
40 . ./common.rc
41 . ./common.filter
42 . ./common.dump
43
44 #
45 # list recursively the directory
46 #
47 # e.g. lstat output: src/lstat64 31056 -rwxr-xr-x 38403,0
48 # Don't print out sizes of directories - which can vary - overwrite with XXX.
49 #
50 _list_dir()
51 {
52     __dir=$1
53     find $__dir  -exec $here/src/lstat64 -t {} \; |\
54     sed -e 's/.*dumpdir/dumpdir/' -e '/^dumpdir /d' |\
55     sed -e 's/.*restoredir/restoredir/' -e '/^restoredir /d' |\
56     egrep -v 'housekeeping|dirattr|dirextattr|namreg|state|tree' |\
57     awk '$3 ~ /^d/ { $2 = "XXX" } {print}' |\
58     LC_COLLATE=POSIX sort
59
60
61 # real QA test starts here
62 _supported_fs xfs
63 _supported_os IRIX Linux
64
65 #
66 # too much hassle to get output matching with quotas turned on
67 # so don't run it
68 #
69 umount $SCRATCH_DEV 2>/dev/null
70 _scratch_mount
71 $here/src/feature -U $SCRATCH_DEV && \
72         _notrun "UQuota enabled, test needs controlled xfsdump output"
73 $here/src/feature -G $SCRATCH_DEV && \
74         _notrun "GQuota enabled, test needs controlled xfsdump output"
75 $here/src/feature -P $SCRATCH_DEV && \
76         _notrun "PQuota enabled, test needs controlled xfsdump output"
77 umount $SCRATCH_DEV
78
79 #
80 # adding      - touch/echo, mkdir
81 # deleting    - rm, rmdir
82 # renaming    - mv
83 # linking     - ln
84 # unlinking   - rm
85 # files and directories
86 #
87
88 _wipe_fs
89 mkdir -p $dump_dir || _fail "cannot mkdir \"$dump_dir\""
90 cd $dump_dir
91
92 echo "Do the incremental dumps"
93 i=0
94 num_dumps=8 # do some extra to ensure nothing changes
95 while [ $i -le $num_dumps ]; do
96     cd $dump_dir
97     case $i in
98         0)
99             # adding
100             echo 'add0' >addedfile0
101             echo 'add1' >addedfile1
102             echo 'add2' >addedfile2
103             echo 'add3' >addedfile3
104             mkdir addeddir1
105             mkdir addeddir2
106             mkdir addeddir3
107             mkdir addeddir4
108             echo 'add4' >addeddir3/addedfile4
109             echo 'add5' >addeddir4/addedfile5
110             ;;
111         1)
112             # deleting
113             rm addedfile2
114             rmdir addeddir2
115             rm -rf addeddir3
116             ;;
117         2)
118             # renaming
119             mv addedfile1 addedfile2 # rename to previous existing file
120             mv addeddir4/addedfile5 addeddir4/addedfile4
121             mv addeddir4 addeddir6
122             mv addeddir1 addeddir2 # rename to previous existing dir
123             ;;
124         3)
125             # linking
126             ln addedfile0 linkfile0
127             ln addedfile0 linkfile0_1  # have a 2nd link to file
128             ln addedfile2 linkfile2
129             ln addeddir6/addedfile4 linkfile64
130             ;;
131         4)
132             # unlinking
133             rm linkfile0  # remove a link
134             rm addedfile2 # remove original link
135             rm linkfile64  # remove link
136             rm addeddir6/addedfile4 # remove last link
137             ;;
138         5)  # link first - then onto 6)
139             rm -rf *
140             echo 'add6' >addedfile6
141             ln addedfile6 linkfile6_1
142             ln addedfile6 linkfile6_2
143             ln addedfile6 linkfile6_3
144             ;;
145         6)  # then move the inode that the links point to
146             mv addedfile6 addedfile6_mv
147             rm linkfile6_1
148             rm linkfile6_2
149             rm linkfile6_3
150             ln addedfile6_mv linkfile6_mv_1
151             ln addedfile6_mv linkfile6_mv_2
152             ln addedfile6_mv linkfile6_mv_3
153             ;;
154     esac
155     cd $here
156     sleep 2
157     _stable_fs
158
159     echo "Listing of what files we have at level $i:"
160     _list_dir $dump_dir | tee $tmp.ls.$i
161
162     dump_file=$tmp.df.level$i
163     _do_dump_file -l $i
164     let i=$i+1
165 done
166
167 echo "Look at what files are contained in the inc. dump"
168 i=0
169 while [ $i -le $num_dumps ]; do
170     echo ""
171     echo "restoring from df.level$i"
172     dump_file=$tmp.df.level$i
173     _do_restore_toc
174     let i=$i+1
175 done
176
177 echo "Do the cumulative restores"
178 i=0
179 while [ $i -le $num_dumps ]; do
180     dump_file=$tmp.df.level$i
181     echo ""
182     echo "restoring from df.level$i"
183     _do_restore_file_cum -l $i
184     echo "list restore_dir"
185     _list_dir $restore_dir | _check_quota_file | tee $tmp.restorals.$i
186     let i=$i+1
187 done
188
189 echo ""
190 echo "Do the ls comparison"
191 i=0
192 while [ $i -le $num_dumps ]; do
193     echo "Comparing ls of FS with restored FS at level $i"
194     diff -s $tmp.ls.$i $tmp.restorals.$i | sed "s#$tmp#TMP#g"
195     echo ""
196     let i=$i+1
197 done
198
199
200 # success, all done
201 status=0
202 exit