xfs/{263,106}: erase max warnings printout
[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 _supported_os Linux
37 _require_scratch_duperemove
38
39 _scratch_mkfs > $seqres.full 2>&1
40 _scratch_mount >> $seqres.full 2>&1
41
42 function iterate_dedup_verify()
43 {
44         local src=$srcdir
45         local dest=$dupdir/1
46
47         for ((index = 1; index <= times; index++)); do
48                 cp -a $src $dest
49                 find $dest -type f -exec md5sum {} \; \
50                         > $md5file$index
51                 # Make some noise
52                 $FSSTRESS_PROG $fsstress_opts -d $noisedir \
53                                -n 200 -p $((5 * LOAD_FACTOR)) >/dev/null 2>&1
54                 # Too many output, so only save error output
55                 $DUPEREMOVE_PROG -dr --dedupe-options=same $dupdir \
56                         >/dev/null 2>$seqres.full
57                 md5sum -c --quiet $md5file$index
58                 src=$dest
59                 dest=$dupdir/$((index + 1))
60         done
61 }
62
63 srcdir=$SCRATCH_MNT/src
64 dupdir=$SCRATCH_MNT/dup
65 noisedir=$dupdir/noise
66 mkdir $srcdir $dupdir
67 mkdir $dupdir/noise
68
69 md5file=${tmp}.md5sum
70
71 fsstress_opts="-w -r"
72 # Create some files to be original data
73 $FSSTRESS_PROG $fsstress_opts -d $srcdir \
74                -n 500 -p $((5 * LOAD_FACTOR)) >/dev/null 2>&1
75
76 # Calculate how many test cycles will be run
77 src_size=`du -ks $srcdir | awk '{print $1}'`
78 free_size=`df -kP $SCRATCH_MNT | grep -v Filesystem | awk '{print $4}'`
79 times=$((free_size / src_size))
80 if [ $times -gt $((4 * TIME_FACTOR)) ]; then
81         times=$((4 * TIME_FACTOR))
82 fi
83
84 echo "= Do dedup and verify ="
85 iterate_dedup_verify
86
87 # Use the last checksum file to verify the original data
88 sed -e s#dup/$times#src#g $md5file$times > $md5file
89 echo "= Backwords verify ="
90 md5sum -c --quiet $md5file
91
92 # read from the disk also doesn't show mutations.
93 _scratch_cycle_mount
94 echo "= Verify after cycle mount ="
95 for ((index = 1; index <= times; index++)); do
96         md5sum -c --quiet $md5file$index
97 done
98
99 status=0
100 exit