generic/402: Drop useless fail message
[xfstests-dev.git] / tests / generic / 182
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 182
6 #
7 # Test the convention that dedupe with length == 0 always returns success.
8 #   - Create a file.
9 #   - Try to dedupe "zero" bytes.
10 #   - Check that the dedupe happened and nothing changed.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15
16 here=`pwd`
17 tmp=/tmp/$$
18 status=1    # failure is the default!
19 trap "_cleanup; exit \$status" 0 1 2 3 15
20
21 _cleanup()
22 {
23     cd /
24     rm -rf $tmp.* $testdir
25 }
26
27 # get standard environment, filters and checks
28 . ./common/rc
29 . ./common/filter
30 . ./common/reflink
31
32 # real QA test starts here
33 _require_test_dedupe
34
35 rm -f $seqres.full
36
37 testdir=$TEST_DIR/test-$seq
38 rm -rf $testdir
39 mkdir $testdir
40
41 echo "Create the original files"
42 blksz=65536
43 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file1 >> $seqres.full
44 _pwrite_byte 0x62 0 $((blksz * 257)) $testdir/file2 >> $seqres.full
45 _pwrite_byte 0x62 0 $((blksz * 257)) $testdir/file2.chk >> $seqres.full
46 _dedupe_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) 0 >> $seqres.full
47 _test_cycle_mount
48
49 md5sum $testdir/file1 | _filter_test_dir
50 md5sum $testdir/file2 | _filter_test_dir
51 md5sum $testdir/file2.chk | _filter_test_dir
52
53 c1=$(_md5_checksum $testdir/file1)
54 c2=$(_md5_checksum $testdir/file2)
55
56 test ${c1} != ${c2} || echo "file1 and file2 should not match"
57
58 echo "Compare against check files"
59 cmp -s $testdir/file2 $testdir/file2.chk || echo "file2 and file2.chk do not match"
60
61 echo "Make the original file almost dedup-able"
62 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file1 >> $seqres.full
63 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file2 >> $seqres.full
64 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file2.chk >> $seqres.full
65 _dedupe_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) 0 >> $seqres.full
66 _test_cycle_mount
67
68 md5sum $testdir/file1 | _filter_test_dir
69 md5sum $testdir/file2 | _filter_test_dir
70 md5sum $testdir/file2.chk | _filter_test_dir
71
72 c1=$(_md5_checksum $testdir/file1)
73 c2=$(_md5_checksum $testdir/file2)
74
75 test ${c1} != ${c2} || echo "file1 and file2 should not match"
76
77 echo "Compare against check files"
78 cmp -s $testdir/file2 $testdir/file2.chk || echo "file2 and file2.chk do not match"
79
80 echo "Make the original file dedup-able"
81 _pwrite_byte 0x61 0 $((blksz * 256)) $testdir/file1 >> $seqres.full
82 _pwrite_byte 0x61 0 $((blksz * 257)) $testdir/file2 >> $seqres.full
83 _pwrite_byte 0x61 0 $((blksz * 257)) $testdir/file2.chk >> $seqres.full
84 _dedupe_range $testdir/file1 $blksz $testdir/file2 $((blksz * 2)) 0 >> $seqres.full
85 _test_cycle_mount
86
87 md5sum $testdir/file1 | _filter_test_dir
88 md5sum $testdir/file2 | _filter_test_dir
89 md5sum $testdir/file2.chk | _filter_test_dir
90
91 c1=$(_md5_checksum $testdir/file1)
92 c2=$(_md5_checksum $testdir/file2)
93
94 test ${c1} = ${c2} || echo "file1 and file2 should match"
95
96 echo "Compare against check files"
97 cmp -s $testdir/file2 $testdir/file2.chk || echo "file2 and file2.chk do not match"
98
99 # success, all done
100 status=0
101 exit