common/rc: add _scratch_{u}mount_idmapped() helpers
[xfstests-dev.git] / tests / generic / 136
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. 136
6 #
7 # Ensure that we can dedupe the last block of a file whose size isn't
8 # block-aligned.
9 #   - Create two 'a' files file whose size isn't block-aligned.
10 #   - Create two 'b' files file whose size isn't block-aligned.
11 #   - Dedupe the last block of file1 to the last block in file2 and file3.
12 #   - Check that files 1-2 match, and that 3-4 match.
13 #   - Check that the ends of 1-2 and 3-4 match, and that 1-3 don't match.
14 #
15 seq=`basename $0`
16 seqres=$RESULT_DIR/$seq
17 echo "QA output created by $seq"
18
19 here=`pwd`
20 tmp=/tmp/$$
21 status=1    # failure is the default!
22 trap "_cleanup; exit \$status" 0 1 2 3 15
23
24 _cleanup()
25 {
26     cd /
27     rm -rf $tmp.* $testdir
28 }
29
30 # get standard environment, filters and checks
31 . ./common/rc
32 . ./common/filter
33 . ./common/reflink
34
35 # real QA test starts here
36 _require_test_dedupe
37
38 rm -f $seqres.full
39
40 testdir=$TEST_DIR/test-$seq
41 rm -rf $testdir
42 mkdir $testdir
43
44 echo "Create the original files"
45 blksz=65536
46 _pwrite_byte 0x61 0 $((blksz + 37)) $testdir/file1 >> $seqres.full
47 _pwrite_byte 0x61 0 $((blksz + 37)) $testdir/file2 >> $seqres.full
48 _pwrite_byte 0x62 0 $((blksz + 37)) $testdir/file3 >> $seqres.full
49 _pwrite_byte 0x62 0 $((blksz + 37)) $testdir/file4 >> $seqres.full
50 _test_cycle_mount
51
52 md5sum $testdir/file1 | _filter_test_dir
53 md5sum $testdir/file2 | _filter_test_dir
54 md5sum $testdir/file3 | _filter_test_dir
55 md5sum $testdir/file4 | _filter_test_dir
56
57 c1="$(_md5_checksum $testdir/file1)"
58 c2="$(_md5_checksum $testdir/file2)"
59 c3="$(_md5_checksum $testdir/file3)"
60 c4="$(_md5_checksum $testdir/file4)"
61
62 test ${c1} = ${c2} || echo "file1 and file2 should match"
63 test ${c1} != ${c3} || echo "file1 and file3 should not match"
64 test ${c1} != ${c4} || echo "file1 and file4 should not match"
65 test ${c2} != ${c3} || echo "file2 and file3 should not match"
66 test ${c2} != ${c4} || echo "file2 and file4 should not match"
67 test ${c3} = ${c4} || echo "file3 and file4 should match"
68
69 echo "Dedupe the last blocks together"
70 echo "1->2"
71 _dedupe_range $testdir/file1 $blksz $testdir/file2 $blksz 37 >> $seqres.full
72 echo "1->3"
73 _dedupe_range $testdir/file1 $blksz $testdir/file3 $blksz 37 2>&1 | _filter_dedupe_error
74 _test_cycle_mount
75
76 md5sum $testdir/file1 | _filter_test_dir
77 md5sum $testdir/file2 | _filter_test_dir
78 md5sum $testdir/file3 | _filter_test_dir
79 md5sum $testdir/file4 | _filter_test_dir
80
81 c1="$(_md5_checksum $testdir/file1)"
82 c2="$(_md5_checksum $testdir/file2)"
83 c3="$(_md5_checksum $testdir/file3)"
84 c4="$(_md5_checksum $testdir/file4)"
85
86 echo "Compare files"
87 test ${c1} = ${c2} || echo "file1 and file2 should match"
88 test ${c1} != ${c3} || echo "file1 and file3 should not match"
89 test ${c1} != ${c4} || echo "file1 and file4 should not match"
90 test ${c2} != ${c3} || echo "file2 and file3 should not match"
91 test ${c2} != ${c4} || echo "file2 and file4 should not match"
92 test ${c3} = ${c4} || echo "file3 and file4 should match"
93
94 echo "Compare sections"
95 _compare_range $testdir/file1 $blksz $testdir/file2 $blksz 37 \
96        || echo "End sections of files 1-2 do not match"
97
98 _compare_range $testdir/file1 $blksz $testdir/file3 $blksz 37 \
99        || echo "End sections of files 1-3 do not match (intentional)"
100
101 _compare_range $testdir/file1 $blksz $testdir/file4 $blksz 37 \
102        || echo "End sections of files 1-4 do not match (intentional)"
103
104 _compare_range $testdir/file2 $blksz $testdir/file3 $blksz 37 \
105        || echo "End sections of files 2-3 do not match (intentional)"
106
107 _compare_range $testdir/file2 $blksz $testdir/file4 $blksz 37 \
108        || echo "End sections of files 2-4 do not match (intentional)"
109
110 _compare_range $testdir/file3 $blksz $testdir/file4 $blksz 37 \
111        || echo "End sections of files 3-4 do not match"
112
113 # success, all done
114 status=0
115 exit