mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-30 18:56:23 +03:00
Add the ZFS Test Suite
Add the ZFS Test Suite and test-runner framework from illumos.
This is a continuation of the work done by Turbo Fredriksson to
port the ZFS Test Suite to Linux. While this work was originally
conceived as a stand alone project integrating it directly with
the ZoL source tree has several advantages:
* Allows the ZFS Test Suite to be packaged in zfs-test package.
* Facilitates easy integration with the CI testing.
* Users can locally run the ZFS Test Suite to validate ZFS.
This testing should ONLY be done on a dedicated test system
because the ZFS Test Suite in its current form is destructive.
* Allows the ZFS Test Suite to be run directly in the ZoL source
tree enabled developers to iterate quickly during development.
* Developers can easily add/modify tests in the framework as
features are added or functionality is changed. The tests
will then always be in sync with the implementation.
Full documentation for how to run the ZFS Test Suite is available
in the tests/README.md file.
Warning: This test suite is designed to be run on a dedicated test
system. It will make modifications to the system including, but
not limited to, the following.
* Adding new users
* Adding new groups
* Modifying the following /proc files:
* /proc/sys/kernel/core_pattern
* /proc/sys/kernel/core_uses_pid
* Creating directories under /
Notes:
* Not all of the test cases are expected to pass and by default
these test cases are disabled. The failures are primarily due
to assumption made for illumos which are invalid under Linux.
* When updating these test cases it should be done in as generic
a way as possible so the patch can be submitted back upstream.
Most existing library functions have been updated to be Linux
aware, and the following functions and variables have been added.
* Functions:
* is_linux - Used to wrap a Linux specific section.
* block_device_wait - Waits for block devices to be added to /dev/.
* Variables: Linux Illumos
* ZVOL_DEVDIR "/dev/zvol" "/dev/zvol/dsk"
* ZVOL_RDEVDIR "/dev/zvol" "/dev/zvol/rdsk"
* DEV_DSKDIR "/dev" "/dev/dsk"
* DEV_RDSKDIR "/dev" "/dev/rdsk"
* NEWFS_DEFAULT_FS "ext2" "ufs"
* Many of the disabled test cases fail because 'zfs/zpool destroy'
returns EBUSY. This is largely causes by the asynchronous nature
of device handling on Linux and is expected, the impacted test
cases will need to be updated to handle this.
* There are several test cases which have been disabled because
they can trigger a deadlock. A primary example of this is to
recursively create zpools within zpools. These tests have been
disabled until the root issue can be addressed.
* Illumos specific utilities such as (mkfile) should be added to
the tests/zfs-tests/cmd/ directory. Custom programs required by
the test scripts can also be added here.
* SELinux should be either is permissive mode or disabled when
running the tests. The test cases should be updated to conform
to a standard policy.
* Redundant test functionality has been removed (zfault.sh).
* Existing test scripts (zconfig.sh) should be migrated to use
the framework for consistency and ease of testing.
* The DISKS environment variable currently only supports loopback
devices because of how the ZFS Test Suite expects partitions to
be named (p1, p2, etc). Support must be added to generate the
correct partition name based on the device location and name.
* The ZFS Test Suite is part of the illumos code base at:
https://github.com/illumos/illumos-gate/tree/master/usr/src/test
Original-patch-by: Turbo Fredriksson <turbo@bayour.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #6
Closes #1534
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/online_offline
|
||||
dist_pkgdata_SCRIPTS = \
|
||||
online_offline.cfg \
|
||||
setup.ksh \
|
||||
cleanup.ksh \
|
||||
online_offline_001_pos.ksh \
|
||||
online_offline_002_neg.ksh \
|
||||
online_offline_003_neg.ksh
|
||||
@@ -0,0 +1,36 @@
|
||||
#!/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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
verify_runnable "global"
|
||||
|
||||
default_cleanup
|
||||
@@ -0,0 +1,38 @@
|
||||
#
|
||||
# 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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
export TESTFILE=testfile.$$
|
||||
export TESTFILE1=testfile1.$$
|
||||
export HOLES_FILESIZE=${HOLES_FILESIZE-"67108864"} # 64 Mb
|
||||
export HOLES_BLKSIZE=${HOLES_BLKSIZE-"512"}
|
||||
export HOLES_SEED=${HOLES_SEED-""}
|
||||
export HOLES_FILEOFFSET=${HOLES_FILEOFFSET-""}
|
||||
export HOLES_COUNT=${HOLES_COUNT-"16384"} # FILESIZE/BLKSIZE/8
|
||||
export STF_TIMEOUT=3600
|
||||
@@ -0,0 +1,94 @@
|
||||
#!/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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013, 2014 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# Turning a disk offline and back online during I/O completes.
|
||||
#
|
||||
# STRATEGY:
|
||||
# 1. Create a mirror and start some random I/O
|
||||
# 2. For each disk in the mirror, set it offline and online
|
||||
# 3. Verify the integrity of the file system and the resilvering.
|
||||
#
|
||||
|
||||
verify_runnable "global"
|
||||
log_onexit cleanup
|
||||
|
||||
DISKLIST=$(get_disklist $TESTPOOL)
|
||||
|
||||
function cleanup
|
||||
{
|
||||
#
|
||||
# Ensure we don't leave disks in the offline state
|
||||
#
|
||||
for disk in $DISKLIST; do
|
||||
log_must $ZPOOL online $TESTPOOL $disk
|
||||
check_state $TESTPOOL $disk "online"
|
||||
if [[ $? != 0 ]]; then
|
||||
log_fail "Unable to online $disk"
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
$KILL $killpid >/dev/null 2>&1
|
||||
[[ -e $TESTDIR ]] && log_must $RM -rf $TESTDIR/*
|
||||
}
|
||||
|
||||
log_assert "Turning a disk offline and back online during I/O completes."
|
||||
|
||||
$FILE_TRUNC -f $((64 * 1024 * 1024)) -b 8192 -c 0 -r $TESTDIR/$TESTFILE1 &
|
||||
typeset killpid="$! "
|
||||
|
||||
for disk in $DISKLIST; do
|
||||
for i in 'do_offline' 'do_offline_while_already_offline'; do
|
||||
log_must $ZPOOL offline $TESTPOOL $disk
|
||||
check_state $TESTPOOL $disk "offline"
|
||||
if [[ $? != 0 ]]; then
|
||||
log_fail "$disk of $TESTPOOL is not offline."
|
||||
fi
|
||||
done
|
||||
|
||||
log_must $ZPOOL online $TESTPOOL $disk
|
||||
check_state $TESTPOOL $disk "online"
|
||||
if [[ $? != 0 ]]; then
|
||||
log_fail "$disk of $TESTPOOL did not match online state"
|
||||
fi
|
||||
done
|
||||
|
||||
log_must $KILL $killpid
|
||||
$SYNC
|
||||
|
||||
typeset dir=$(get_device_dir $DISKS)
|
||||
verify_filesys "$TESTPOOL" "$TESTPOOL/$TESTFS" "$dir"
|
||||
|
||||
log_pass
|
||||
+132
@@ -0,0 +1,132 @@
|
||||
#!/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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013, 2014 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# Turning disks in a pool offline should fail when there is no longer
|
||||
# sufficient redundancy.
|
||||
#
|
||||
# STRATEGY:
|
||||
# 1. Start some random I/O on the mirror or raidz.
|
||||
# 2. Verify that we can offline as many disks as the redundancy level
|
||||
# will support, but not more.
|
||||
# 3. Verify the integrity of the file system and the resilvering.
|
||||
#
|
||||
|
||||
verify_runnable "global"
|
||||
|
||||
DISKLIST=$(get_disklist $TESTPOOL)
|
||||
|
||||
function cleanup
|
||||
{
|
||||
#
|
||||
# Ensure we don't leave disks in the offline state
|
||||
#
|
||||
for disk in $DISKLIST; do
|
||||
log_must $ZPOOL online $TESTPOOL $disk
|
||||
check_state $TESTPOOL $disk "online"
|
||||
if [[ $? != 0 ]]; then
|
||||
log_fail "Unable to online $disk"
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
$KILL $killpid >/dev/null 2>&1
|
||||
[[ -e $TESTDIR ]] && log_must $RM -rf $TESTDIR/*
|
||||
}
|
||||
|
||||
log_assert "Turning both disks offline should fail."
|
||||
|
||||
log_onexit cleanup
|
||||
|
||||
$FILE_TRUNC -f $((64 * 1024 * 1024)) -b 8192 -c 0 -r $TESTDIR/$TESTFILE1 &
|
||||
typeset killpid="$! "
|
||||
|
||||
disks=($DISKLIST)
|
||||
|
||||
#
|
||||
# The setup script will give us either a mirror or a raidz. The former can have
|
||||
# all but one vdev offlined, whereas with raidz there can be only one.
|
||||
#
|
||||
pooltype='mirror'
|
||||
$ZPOOL list -v $TESTPOOL | $GREP raidz >/dev/null 2>&1 && pooltype='raidz'
|
||||
|
||||
typeset -i i=0
|
||||
while [[ $i -lt ${#disks[*]} ]]; do
|
||||
typeset -i j=0
|
||||
if [[ $pooltype = 'mirror' ]]; then
|
||||
# Hold one disk online, verify the others can be offlined.
|
||||
log_must $ZPOOL online $TESTPOOL ${disks[$i]}
|
||||
check_state $TESTPOOL ${disks[$i]} "online" || \
|
||||
log_fail "Failed to set ${disks[$i]} online"
|
||||
while [[ $j -lt ${#disks[*]} ]]; do
|
||||
if [[ $j -eq $i ]]; then
|
||||
((j++))
|
||||
continue
|
||||
fi
|
||||
log_must $ZPOOL offline $TESTPOOL ${disks[$j]}
|
||||
check_state $TESTPOOL ${disks[$j]} "offline" || \
|
||||
log_fail "Failed to set ${disks[$j]} offline"
|
||||
((j++))
|
||||
done
|
||||
elif [[ $pooltype = 'raidz' ]]; then
|
||||
# Hold one disk offline, verify the others can't be offlined.
|
||||
log_must $ZPOOL offline $TESTPOOL ${disks[$i]}
|
||||
check_state $TESTPOOL ${disks[$i]} "offline" || \
|
||||
log_fail "Failed to set ${disks[$i]} offline"
|
||||
while [[ $j -lt ${#disks[*]} ]]; do
|
||||
if [[ $j -eq $i ]]; then
|
||||
((j++))
|
||||
continue
|
||||
fi
|
||||
log_mustnot $ZPOOL offline $TESTPOOL ${disks[$j]}
|
||||
check_state $TESTPOOL ${disks[$j]} "online" || \
|
||||
log_fail "Failed to set ${disks[$j]} online"
|
||||
check_state $TESTPOOL ${disks[$i]} "offline" || \
|
||||
log_fail "Failed to set ${disks[$i]} offline"
|
||||
((j++))
|
||||
done
|
||||
log_must $ZPOOL online $TESTPOOL ${disks[$i]}
|
||||
check_state $TESTPOOL ${disks[$i]} "online" || \
|
||||
log_fail "Failed to set ${disks[$i]} online"
|
||||
fi
|
||||
((i++))
|
||||
done
|
||||
|
||||
log_must $KILL $killpid
|
||||
$SYNC
|
||||
|
||||
typeset dir=$(get_device_dir $DISKS)
|
||||
verify_filesys "$TESTPOOL" "$TESTPOOL/$TESTFS" "$dir"
|
||||
|
||||
log_pass
|
||||
@@ -0,0 +1,81 @@
|
||||
#!/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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013, 2014 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# Offlining disks in a non-redundant pool should fail.
|
||||
#
|
||||
# STRATEGY:
|
||||
# 1. Create a multidisk stripe and start some random I/O
|
||||
# 2. zpool offline should fail on each disk.
|
||||
#
|
||||
|
||||
verify_runnable "global"
|
||||
|
||||
function cleanup
|
||||
{
|
||||
if poolexists $TESTPOOL1; then
|
||||
destroy_pool $TESTPOOL1
|
||||
fi
|
||||
|
||||
$KILL $killpid >/dev/null 2>&1
|
||||
[[ -e $TESTDIR ]] && log_must $RM -rf $TESTDIR/*
|
||||
}
|
||||
|
||||
log_assert "Offlining disks in a non-redundant pool should fail."
|
||||
|
||||
log_onexit cleanup
|
||||
|
||||
specials_list=""
|
||||
for i in 0 1 2; do
|
||||
$MKFILE 64m $TESTDIR/$TESTFILE1.$i
|
||||
specials_list="$specials_list $TESTDIR/$TESTFILE1.$i"
|
||||
done
|
||||
disk=($specials_list)
|
||||
|
||||
create_pool $TESTPOOL1 $specials_list
|
||||
log_must $ZFS create $TESTPOOL1/$TESTFS1
|
||||
log_must $ZFS set mountpoint=$TESTDIR1 $TESTPOOL1/$TESTFS1
|
||||
|
||||
$FILE_TRUNC -f $((64 * 1024 * 1024)) -b 8192 -c 0 -r $TESTDIR/$TESTFILE1 &
|
||||
typeset killpid="$! "
|
||||
|
||||
for i in 0 1 2; do
|
||||
log_mustnot $ZPOOL offline $TESTPOOL1 ${disk[$i]}
|
||||
check_state $TESTPOOL1 ${disk[$i]} "online"
|
||||
done
|
||||
|
||||
log_must $KILL $killpid
|
||||
$SYNC
|
||||
|
||||
log_pass
|
||||
@@ -0,0 +1,47 @@
|
||||
#!/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 http://www.opensolaris.org/os/licensing.
|
||||
# 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
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
|
||||
# Use is subject to license terms.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2013 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
verify_runnable "global"
|
||||
verify_disk_count "$DISKS" 2
|
||||
|
||||
index=`expr $RANDOM % 2`
|
||||
case $index in
|
||||
0) log_note "Pool Type: Mirror"
|
||||
default_mirror_setup $DISKS
|
||||
;;
|
||||
1) log_note "Pool Type: RAID-Z"
|
||||
default_raidz_setup $DISKS
|
||||
;;
|
||||
esac
|
||||
|
||||
log_pass
|
||||
Reference in New Issue
Block a user