b2dff1c286a9a12bd8f5f8dd840df927ca00181d
[xfstests-dev.git] / tests / btrfs / 027
1 #! /bin/bash
2 # FS QA Test No. 027
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_fiemap
52 _require_cp_reflink
53
54 TESTDIR1=$TEST_DIR/test-$seq
55 rm -rf $TESTDIR1
56 mkdir $TESTDIR1
57
58 _checksum_files() {
59     for F in original/file1 original/subdir/file2 \
60                  copy1/file1 copy1/subdir/file2 \
61                  copy2/file1 copy2/subdir/file2
62         do
63             md5sum $TESTDIR1/$F | _filter_test_dir
64         done
65 }
66
67 rm -f $seqres.full
68
69 mkdir $TESTDIR1/original
70 mkdir $TESTDIR1/original/subdir
71
72 echo "Create the original files and reflink dirs"
73 $XFS_IO_PROG -f -c 'pwrite -S 0x61 0 9000' $TESTDIR1/original/file1 \
74     >> $seqres.full 2>&1
75 $XFS_IO_PROG -f -c 'pwrite -S 0x62 0 11000' \
76     $TESTDIR1/original/subdir/file2 >> $seqres.full 2>&1
77 cp --recursive --reflink $TESTDIR1/original $TESTDIR1/copy1
78 cp --recursive --reflink $TESTDIR1/copy1 $TESTDIR1/copy2
79
80 _verify_reflink $TESTDIR1/original/file1 $TESTDIR1/copy1/file1
81 _verify_reflink $TESTDIR1/original/subdir/file2 \
82     $TESTDIR1/copy1/subdir/file2
83 _verify_reflink $TESTDIR1/original/file1 $TESTDIR1/copy2/file1
84 _verify_reflink $TESTDIR1/original/subdir/file2 \
85     $TESTDIR1/copy2/subdir/file2
86
87 echo "Original md5sums:"
88 _checksum_files
89
90 echo "Overwrite original/file1 and original/subdir/file2 with new data"
91 $XFS_IO_PROG -c 'pwrite -S 0x63 0 13000' $TESTDIR1/original/file1 \
92     >> $seqres.full 2>&1
93 $XFS_IO_PROG -c 'pwrite -S 0x64 5000 1000' \
94     $TESTDIR1/original/subdir/file2 >> $seqres.full 2>&1
95 echo "md5sums now:"
96 _checksum_files
97
98 echo "Overwrite copy1/file1 and copy1/subdir/file2 with new data"
99 $XFS_IO_PROG -c 'pwrite -S 0x65 0 9000' $TESTDIR1/copy1/file1 \
100     >> $seqres.full 2>&1
101 $XFS_IO_PROG -c 'pwrite -S 0x66 5000 25000' \
102     $TESTDIR1/copy1/subdir/file2 >> $seqres.full 2>&1
103 echo "md5sums now:"
104 _checksum_files
105
106 # success, all done
107 status=0
108 exit