tests: don't leave cruft behind on the TEST_MNT
[xfstests-dev.git] / tests / xfs / 129
1 #! /bin/bash
2 # FS QA Test No. 129
3 #
4 # Ensure that we can create enough distinct reflink entries to force creation
5 # of a multi-level refcount btree, and that metadump will successfully copy
6 # said block.
7 #
8 #-----------------------------------------------------------------------
9 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License as
13 # published by the Free Software Foundation.
14 #
15 # This program is distributed in the hope that it would be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write the Free Software Foundation,
22 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
23 #-----------------------------------------------------------------------
24
25 seq=`basename "$0"`
26 seqres=$RESULT_DIR/$seq
27 echo "QA output created by $seq"
28
29 here=`pwd`
30 tmp=/tmp/$$
31 status=1    # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36     cd /
37     umount "$SCRATCH_MNT" > /dev/null 2>&1
38     rm -rf "$tmp".* "$TESTDIR" "$METADUMP_FILE" "$TEST_DIR/image"
39 }
40
41 # get standard environment, filters and checks
42 . ./common/rc
43 . ./common/filter
44 . ./common/reflink
45
46 # real QA test starts here
47 _supported_os Linux
48 _supported_fs xfs
49 _require_scratch_reflink
50
51 rm -f "$seqres.full"
52
53 _scratch_mkfs >/dev/null 2>&1
54 _scratch_mount
55
56 TESTDIR="$SCRATCH_MNT/test-$seq"
57 rm -rf "$TESTDIR"
58 mkdir "$TESTDIR"
59 METADUMP_FILE="$TEST_DIR/${seq}_metadump"
60
61 echo "Create the original file blocks"
62 BLKSZ="$(stat -f "$TESTDIR" -c '%S')"
63 NR_BLKS=$((4 * BLKSZ / 12))
64 _pwrite_byte 0x61 0 $((BLKSZ * NR_BLKS)) "$TESTDIR/file1" >> "$seqres.full"
65
66 echo "Reflink every other block"
67 seq 1 $((NR_BLKS / 2)) | while read nr; do
68         _reflink_range  "$TESTDIR/file1" $((nr * 2 * BLKSZ)) \
69                         "$TESTDIR/file2" $((nr * 2 * BLKSZ)) $BLKSZ >> "$seqres.full"
70 done
71
72 echo "Create metadump file"
73 _scratch_unmount
74 _scratch_metadump "$METADUMP_FILE"
75
76 # Now restore the obfuscated one back and take a look around
77 echo "Restore metadump"
78 xfs_mdrestore "$METADUMP_FILE" "$TEST_DIR/image"
79 _mount -t $FSTYP "$TEST_DIR/image" "$SCRATCH_MNT"
80 umount "$SCRATCH_MNT"
81
82 echo "Check restored fs"
83 _check_generic_filesystem "$METADUMP_FILE"
84
85 # success, all done
86 status=0
87 exit