9da3f40363ca1938bccd4a5e2d3fbb1787566013
[xfstests-dev.git] / tests / generic / 111
1 #! /bin/bash
2 # FS QA Test No. 111
3 #
4 # Tests file clone functionality of btrfs ("reflinks") on directory
5 # trees.
6 #   - Create directory and subdirectory, each having one file
7 #   - Create 2 recursive reflinked copies of the tree
8 #   - Modify the original files
9 #   - Modify one of the copies
10 #
11 #-----------------------------------------------------------------------
12 # Copyright (c) 2014, Oracle and/or its affiliates.  All Rights Reserved.
13 #
14 # This program is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU General Public License as
16 # published by the Free Software Foundation.
17 #
18 # This program is distributed in the hope that it would be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write the Free Software Foundation,
25 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
26 #-----------------------------------------------------------------------
27
28 seq=`basename $0`
29 seqres=$RESULT_DIR/$seq
30 echo "QA output created by $seq"
31
32 here=`pwd`
33 tmp=/tmp/$$
34 status=1    # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
36
37 _cleanup()
38 {
39     cd /
40     rm -f $tmp.*
41 }
42
43 # get standard environment, filters and checks
44 . common/rc
45 . common/filter
46
47 # real QA test starts here
48 _supported_fs btrfs
49 _supported_os Linux
50
51 _require_xfs_io_command "fiemap"
52 _require_cp_reflink
53 _require_test
54
55 TESTDIR1=$TEST_DIR/test-$seq
56 rm -rf $TESTDIR1
57 mkdir $TESTDIR1
58
59 _checksum_files() {
60     for F in original/file1 original/subdir/file2 \
61                  copy1/file1 copy1/subdir/file2 \
62                  copy2/file1 copy2/subdir/file2
63         do
64             md5sum $TESTDIR1/$F | _filter_test_dir
65         done
66 }
67
68 rm -f $seqres.full
69
70 mkdir $TESTDIR1/original
71 mkdir $TESTDIR1/original/subdir
72
73 echo "Create the original files and reflink dirs"
74 $XFS_IO_PROG -f -c 'pwrite -S 0x61 0 9000' $TESTDIR1/original/file1 \
75     >> $seqres.full 2>&1
76 $XFS_IO_PROG -f -c 'pwrite -S 0x62 0 11000' \
77     $TESTDIR1/original/subdir/file2 >> $seqres.full 2>&1
78 cp --recursive --reflink $TESTDIR1/original $TESTDIR1/copy1
79 cp --recursive --reflink $TESTDIR1/copy1 $TESTDIR1/copy2
80
81 _verify_reflink $TESTDIR1/original/file1 $TESTDIR1/copy1/file1
82 _verify_reflink $TESTDIR1/original/subdir/file2 \
83     $TESTDIR1/copy1/subdir/file2
84 _verify_reflink $TESTDIR1/original/file1 $TESTDIR1/copy2/file1
85 _verify_reflink $TESTDIR1/original/subdir/file2 \
86     $TESTDIR1/copy2/subdir/file2
87
88 echo "Original md5sums:"
89 _checksum_files
90
91 echo "Overwrite original/file1 and original/subdir/file2 with new data"
92 $XFS_IO_PROG -c 'pwrite -S 0x63 0 13000' $TESTDIR1/original/file1 \
93     >> $seqres.full 2>&1
94 $XFS_IO_PROG -c 'pwrite -S 0x64 5000 1000' \
95     $TESTDIR1/original/subdir/file2 >> $seqres.full 2>&1
96 echo "md5sums now:"
97 _checksum_files
98
99 echo "Overwrite copy1/file1 and copy1/subdir/file2 with new data"
100 $XFS_IO_PROG -c 'pwrite -S 0x65 0 9000' $TESTDIR1/copy1/file1 \
101     >> $seqres.full 2>&1
102 $XFS_IO_PROG -c 'pwrite -S 0x66 5000 25000' \
103     $TESTDIR1/copy1/subdir/file2 >> $seqres.full 2>&1
104 echo "md5sums now:"
105 _checksum_files
106
107 # success, all done
108 status=0
109 exit