forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZTS: Add block cloning test case for large offset
Signed-off-by: Ameer Hamza <ahamza@ixsystems.com>
- Loading branch information
Showing
4 changed files
with
100 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 96 additions & 0 deletions
96
tests/zfs-tests/tests/functional/block_cloning/block_cloning_large_offset.ksh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
#!/bin/ksh -p | ||
# | ||
# CDDL HEADER START | ||
# | ||
# The contents of this file are subject to the terms of the | ||
# Common Development and Distribution License (the "License"). | ||
# You may not use this file except in compliance with the License. | ||
# | ||
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE | ||
# or https://opensource.org/licenses/CDDL-1.0. | ||
# See the License for the specific language governing permissions | ||
# and limitations under the License. | ||
# | ||
# When distributing Covered Code, include this CDDL HEADER in each | ||
# file and include the License file at usr/src/OPENSOLARIS.LICENSE. | ||
# If applicable, add the following below this CDDL HEADER, with the | ||
# fields enclosed by brackets "[]" replaced with your own identifying | ||
# information: Portions Copyright [yyyy] [name of copyright owner] | ||
# | ||
# CDDL HEADER END | ||
# | ||
|
||
. $STF_SUITE/include/libtest.shlib | ||
. $STF_SUITE/tests/functional/block_cloning/block_cloning.kshlib | ||
|
||
# | ||
# DESCRIPTION: | ||
# Verify that cloning a file at a large offset is possible. | ||
# | ||
# STRATEGY: | ||
# 1. Create source and destination dataset. | ||
# 2. Populate the source file with 1024 blocks. | ||
# 3. Clone 1024 blocks at a 1024-block offset in the destination file. | ||
# 4. Compare the cloned file with the original file. | ||
# | ||
|
||
verify_runnable "global" | ||
|
||
if is_linux && [[ $(linux_version) -lt $(linux_version "4.5") ]]; then | ||
log_unsupported "copy_file_range not available before Linux 4.5" | ||
fi | ||
|
||
export VDIR=$TEST_BASE_DIR/disk-bclone | ||
export VDEV="$VDIR/a $VDIR/b $VDIR/c" | ||
log_must rm -rf $VDIR | ||
log_must mkdir -p $VDIR | ||
log_must truncate -s 512M $VDEV | ||
SRC="$TESTPOOL/src" | ||
DST="$TESTPOOL/dst" | ||
|
||
claim="The first clone at a big offset is functional" | ||
|
||
log_assert $claim | ||
|
||
function cleanup | ||
{ | ||
datasetexists $TESTPOOL && destroy_pool $TESTPOOL | ||
rm -rf $TESTDIR $VDIR | ||
} | ||
|
||
log_onexit cleanup | ||
|
||
# | ||
# 1. Create source and destination dataset. | ||
# | ||
log_must zpool create -o feature@block_cloning=enabled $TESTPOOL $VDEV | ||
log_must zfs create $SRC | ||
log_must zfs set recordsize=128k $SRC | ||
log_must zfs create $DST | ||
log_must zfs set recordsize=128k $DST | ||
sync_pool $TESTPOOL | ||
|
||
# | ||
# 2. Populate the source file with 1024 blocks. | ||
# | ||
log_must dd if=/dev/urandom of=/$SRC/file1 \ | ||
oflag=sync bs=128k count=1024 | ||
|
||
# | ||
# 3. Clone 1024 blocks at a 1024-block offset in the destination file. | ||
# | ||
log_must clonefile -f /$SRC/file1 /$DST/clone1 0 134217728 134217728 | ||
|
||
# | ||
# 4. Compare the cloned file with the original file. | ||
# | ||
log_must have_same_content /$SRC/file1 /$DST/clone1 | ||
typeset blocks=$(get_same_blocks $SRC file1 \ | ||
$DS clone1) | ||
log_must [ "$blocks" = "0 1 2 3" ] | ||
|
||
# FreeBSD's seq(1) leaves a trailing space, remove it with sed(1). | ||
log_must [ "$blocks" = "$(seq -s " " 0 1023 | sed 's/ $//')" ] | ||
|
||
log_pass $claim | ||
|