generic: test for non-zero used blocks while writing into a file
[xfstests-dev.git] / tests / generic / 560
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Red Hat Inc.  All Rights Reserved.
4 #
5 # FS QA Test generic/560
6 #
7 # Iterate dedupe integrity test. Copy an original data0 several
8 # times (d0 -> d1, d1 -> d2, ... dn-1 -> dn), dedupe dataN everytime
9 # before copy. At last, verify dataN same with data0.
10 #
11 seq=`basename $0`
12 seqres=$RESULT_DIR/$seq
13 echo "QA output created by $seq"
14
15 here=`pwd`
16 tmp=/tmp/$$
17 status=1        # failure is the default!
18 trap "_cleanup; exit \$status" 0 1 2 3 15
19
20 _cleanup()
21 {
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/reflink
30
31 # remove previous $seqres.full before test
32 rm -f $seqres.full
33
34 # real QA test starts here
35 _supported_fs generic
36 _require_scratch_duperemove
37
38 _scratch_mkfs > $seqres.full 2>&1
39 _scratch_mount >> $seqres.full 2>&1
40
41 function iterate_dedup_verify()
42 {
43         local src=$srcdir
44         local dest=$dupdir/1
45
46         for ((index = 1; index <= times; index++)); do
47                 cp -a $src $dest
48                 find $dest -type f -exec md5sum {} \; \
49                         > $md5file$index
50                 # Make some noise
51                 $FSSTRESS_PROG $fsstress_opts -d $noisedir \
52                                -n 200 -p $((5 * LOAD_FACTOR)) >/dev/null 2>&1
53                 # Too many output, so only save error output
54                 $DUPEREMOVE_PROG -dr --dedupe-options=same $dupdir \
55                         >/dev/null 2>$seqres.full
56                 md5sum -c --quiet $md5file$index
57                 src=$dest
58                 dest=$dupdir/$((index + 1))
59         done
60 }
61
62 srcdir=$SCRATCH_MNT/src
63 dupdir=$SCRATCH_MNT/dup
64 noisedir=$dupdir/noise
65 mkdir $srcdir $dupdir
66 mkdir $dupdir/noise
67
68 md5file=${tmp}.md5sum
69
70 fsstress_opts="-w -r"
71 # Create some files to be original data
72 $FSSTRESS_PROG $fsstress_opts -d $srcdir \
73                -n 500 -p $((5 * LOAD_FACTOR)) >/dev/null 2>&1
74
75 # Calculate how many test cycles will be run
76 src_size=`du -ks $srcdir | awk '{print $1}'`
77 free_size=`df -kP $SCRATCH_MNT | grep -v Filesystem | awk '{print $4}'`
78 times=$((free_size / src_size))
79 if [ $times -gt $((4 * TIME_FACTOR)) ]; then
80         times=$((4 * TIME_FACTOR))
81 fi
82
83 echo "= Do dedup and verify ="
84 iterate_dedup_verify
85
86 # Use the last checksum file to verify the original data
87 sed -e s#dup/$times#src#g $md5file$times > $md5file
88 echo "= Backwords verify ="
89 md5sum -c --quiet $md5file
90
91 # read from the disk also doesn't show mutations.
92 _scratch_cycle_mount
93 echo "= Verify after cycle mount ="
94 for ((index = 1; index <= times; index++)); do
95         md5sum -c --quiet $md5file$index
96 done
97
98 status=0
99 exit