fstests: move test group info to test files
[xfstests-dev.git] / tests / xfs / 211
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. 211
6 #
7 # Test fragmentation in a big file 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 # - Rewrite the whole file to use up reservations.
11 # - Check the number of extents.
12 #
13 . ./common/preamble
14 _begin_fstest clone_stress
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_odirect
27
28 echo "Format and mount"
29 _scratch_mkfs > $seqres.full 2>&1
30 _scratch_mount >> $seqres.full 2>&1
31
32 testdir=$SCRATCH_MNT/test-$seq
33 mkdir $testdir
34
35 blksz=65536
36 nr=50000
37 filesize=$((blksz * nr))
38 bufnr=16
39 bufsize=$((blksz * bufnr))
40
41 _require_fs_space $SCRATCH_MNT $((filesize / 1024 * 2 * 5 / 4))
42 real_blksz=$(_get_block_size $testdir)
43 internal_blks=$((filesize / real_blksz))
44
45 echo "Create the original files"
46 $XFS_IO_PROG -f -c "pwrite -S 0x61 -b $bufsize 0 $((filesize + 1))" $testdir/file1 >> $seqres.full
47 $XFS_IO_PROG -f -c "cowextsize $bufsize" $testdir/file2
48 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
49 _scratch_cycle_mount
50
51 echo "Compare files"
52 md5sum $testdir/file1 | _filter_scratch
53 md5sum $testdir/file2 | _filter_scratch
54
55 echo "CoW and unmount"
56 $XFS_IO_PROG -f -c "cowextsize" $testdir/file2 >> $seqres.full
57 $XFS_IO_PROG -d -f -c "pwrite -R -S 0x63 -b $real_blksz 0 $((filesize + 1))" $testdir/file2 >> $seqres.full
58 $XFS_IO_PROG -d -f -c "pwrite -S 0x63 -b 8388608 0 $filesize" $testdir/file2 >> $seqres.full
59 _scratch_cycle_mount
60
61 echo "Compare files"
62 md5sum $testdir/file1 | _filter_scratch
63 md5sum $testdir/file2 | _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