fstests: move test group info to test files
[xfstests-dev.git] / tests / generic / 518
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. 518
6 #
7 # Test that we can not clone a range from a file A into the middle of a file B
8 # when the range includes the last block of file A and file A's size is not
9 # aligned with the filesystem's block size. Allowing such case would lead to
10 # data corruption since the data between EOF and the end of its block is
11 # undefined.
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 generic
22 _require_scratch_reflink
23
24 _scratch_mkfs >>$seqres.full 2>&1
25 _scratch_mount
26
27 foo_size=$((256 * 1024 + 100)) # 256Kb + 100 bytes
28 bar_size="1M"
29
30 $XFS_IO_PROG -f -c "pwrite -S 0x3c 0 $foo_size" $SCRATCH_MNT/foo | _filter_xfs_io
31 $XFS_IO_PROG -f -c "pwrite -S 0xb5 0 $bar_size" $SCRATCH_MNT/bar | _filter_xfs_io
32
33 # Cloning the EOF block of a file into the middle of another file should fail
34 # with an invalid argument error.
35 $XFS_IO_PROG -c "reflink $SCRATCH_MNT/foo 0 512K $foo_size" $SCRATCH_MNT/bar
36
37 # Unmount the filesystem and mount it again. This guarantees any file data in
38 # the page cache is dropped.
39 _scratch_cycle_mount
40
41 # Verify no changes were made to the file.
42 echo "File content after failed reflink:"
43 od -A d -t x1 $SCRATCH_MNT/bar
44
45 status=0
46 exit