populate: add _require_populate_commands to check for tools
[xfstests-dev.git] / tests / xfs / 324
1 #! /bin/bash
2 # FS QA Test No. 324
3 #
4 # Reflink a file with a few dozen extents.
5 # Force XFS into "two refcount updates per transaction" mode.
6 #
7 #-----------------------------------------------------------------------
8 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License as
12 # published by the Free Software Foundation.
13 #
14 # This program is distributed in the hope that it would be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write the Free Software Foundation,
21 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22 #-----------------------------------------------------------------------
23
24 seq=`basename $0`
25 seqres=$RESULT_DIR/$seq
26 echo "QA output created by $seq"
27
28 here=`pwd`
29 tmp=/tmp/$$
30 status=1    # failure is the default!
31 trap "_cleanup; exit \$status" 0 1 2 3 15
32
33 _cleanup()
34 {
35         cd /
36         _scratch_unmount > /dev/null 2>&1
37         rm -rf $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/reflink
44 . ./common/inject
45
46 # real QA test starts here
47 _supported_os Linux
48 _supported_fs xfs
49 _require_cp_reflink
50 _require_scratch_reflink
51 _require_error_injection
52 _require_xfs_io_error_injection "refcount_continue_update"
53
54 rm -f $seqres.full
55
56 blksz=65536
57 blks=64
58 sz=$((blksz * blks))
59 echo "Format filesystem"
60 _scratch_mkfs >/dev/null 2>&1
61 _scratch_mount >> $seqres.full
62
63 echo "Create files"
64 _pwrite_byte 0x66 0 $sz $SCRATCH_MNT/file1 >> $seqres.full
65 _cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file2
66 _cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file3
67
68 # Punch holes in file3
69 seq 1 2 $blks | while read off; do
70         $XFS_IO_PROG -c "fpunch $((off * blksz)) $blksz" $SCRATCH_MNT/file3 >> $seqres.full
71 done
72 sync
73
74 echo "Check files"
75 md5sum $SCRATCH_MNT/file1 | _filter_scratch
76 md5sum $SCRATCH_MNT/file2 | _filter_scratch
77 md5sum $SCRATCH_MNT/file3 | _filter_scratch
78
79 echo "Inject error"
80 _scratch_inject_error "refcount_continue_update"
81
82 echo "Reflink all the blocks"
83 _cp_reflink $SCRATCH_MNT/file1 $SCRATCH_MNT/file4
84
85 echo "Remount to replay log"
86 _scratch_inject_logprint >> $seqres.full
87
88 echo "FS should be online, touch should succeed"
89 touch $SCRATCH_MNT/goodfs
90
91 echo "Check files again"
92 md5sum $SCRATCH_MNT/file1 | _filter_scratch
93 md5sum $SCRATCH_MNT/file2 | _filter_scratch
94 md5sum $SCRATCH_MNT/file3 | _filter_scratch
95 md5sum $SCRATCH_MNT/file4 | _filter_scratch
96
97 echo "Done"
98
99 # success, all done
100 status=0
101 exit