fstests: move test group info to test files
[xfstests-dev.git] / tests / xfs / 192
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 192
6 #
7 # Test fragmentation after a lot of random CoW:
8 # - Create two reflinked files.  Set extsz hint on second file.
9 # - Directio write to random offsets to scatter CoW reservations.
10 # - falloc the whole file to unshare blocks.
11 # - Check the number of extents.
12 #
13 . ./common/preamble
14 _begin_fstest auto quick clone
15
16 # Import common functions.
17 . ./common/filter
18 . ./common/reflink
19
20 # real QA test starts here
21 _supported_fs xfs
22 _require_scratch_reflink
23 _require_cp_reflink
24 _require_xfs_io_command "fiemap"
25 _require_xfs_io_command "cowextsize"
26 _require_xfs_io_command "funshare"
27 _require_odirect
28
29 echo "Format and mount"
30 _scratch_mkfs > $seqres.full 2>&1
31 _scratch_mount >> $seqres.full 2>&1
32
33 testdir=$SCRATCH_MNT/test-$seq
34 mkdir $testdir
35
36 blksz=65536
37 nr=128
38 filesize=$((blksz * nr))
39 bufnr=16
40 bufsize=$((blksz * bufnr))
41
42 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 3 * 5 / 4))
43 real_blksz=$(_get_block_size $testdir)
44 internal_blks=$((filesize / real_blksz))
45
46 echo "Create the original files"
47 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
48 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
49 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
50 _scratch_cycle_mount
51
52 echo "Compare files"
53 md5sum $testdir/file1 | _filter_scratch
54 md5sum $testdir/file2 | _filter_scratch
55
56 echo "CoW and unmount"
57 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
58 $XFS_IO_PROG -d -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $filesize" $testdir/file2 >> $seqres.full
59 $XFS_IO_PROG -d -f -c "funshare 0 $filesize" $testdir/file2 >> $seqres.full
60 _scratch_cycle_mount
61
62 echo "Compare files"
63 md5sum $testdir/file1 | _filter_scratch
64
65 echo "Check extent counts"
66 old_extents=$(_count_extents $testdir/file1)
67 new_extents=$(_count_extents $testdir/file2)
68
69 echo "old extents: $old_extents" >> $seqres.full
70 echo "new extents: $new_extents" >> $seqres.full
71 echo "maximum extents: $internal_blks" >> $seqres.full
72 test $new_extents -lt $((internal_blks / 20)) || test $new_extents -lt 15 \
73         || echo "file2 badly fragmented"
74
75 # success, all done
76 status=0
77 exit