mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +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,2 @@
|
||||
/commands.cfg
|
||||
/default.cfg
|
||||
@@ -0,0 +1,10 @@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/include
|
||||
dist_pkgdata_SCRIPTS = \
|
||||
commands.cfg \
|
||||
default.cfg \
|
||||
libtest.shlib \
|
||||
math.shlib \
|
||||
properties.shlib
|
||||
|
||||
EXTRA_DIST = \
|
||||
zfs_commands.cfg
|
||||
@@ -0,0 +1,119 @@
|
||||
export AWK="@AWK@"
|
||||
export BLOCKDEV="@BLOCKDEV@"
|
||||
export BASENAME="@BASENAME@"
|
||||
export BC="@BC@"
|
||||
export BUNZIP2="@BUNZIP2@"
|
||||
export BZCAT="@BZCAT@"
|
||||
export CAT="@CAT@"
|
||||
export CD="@CD@"
|
||||
export CHACL="@CHACL@"
|
||||
export CHGRP="@CHGRP@"
|
||||
export CHMOD="@CHMOD@"
|
||||
export CHOWN="@CHOWN@"
|
||||
export CKSUM="@CKSUM@"
|
||||
export CMP="@CMP@"
|
||||
export COMPRESS="@COMPRESS@"
|
||||
export COREADM="@COREADM@"
|
||||
export CP="@CP@"
|
||||
export CPIO="@CPIO@"
|
||||
export CUT="@CUT@"
|
||||
export DATE="@DATE@"
|
||||
export DD="@DD@"
|
||||
export DF="@DF@"
|
||||
export DIFF="@DIFF@"
|
||||
export DIRCMP="@DIRCMP@"
|
||||
export DIRNAME="@DIRNAME@"
|
||||
export DU="@DU@"
|
||||
export DUMPADM="@DUMPADM@"
|
||||
export ECHO="@ECHO@"
|
||||
export EGREP="@EGREP@"
|
||||
export FDISK="@FDISK@"
|
||||
export FGREP="@FGREP@"
|
||||
export FILE="@FILE@"
|
||||
export FIND="@FIND@"
|
||||
export FORMAT="@FORMAT@"
|
||||
export FSCK="@FSCK@"
|
||||
export GETENT="@GETENT@"
|
||||
export GETFACL="@GETFACL@"
|
||||
export GETMAJOR="@GETMAJOR@"
|
||||
export GNUDD="@GNUDD@"
|
||||
export GREP="@GREP@"
|
||||
export GROUPADD="@GROUPADD@"
|
||||
export GROUPDEL="@GROUPDEL@"
|
||||
export GROUPMOD="@GROUPMOD@"
|
||||
export HEAD="@HEAD@"
|
||||
export HOSTNAME="@HOSTNAME@"
|
||||
export ID="@ID@"
|
||||
export ISAINFO="@ISAINFO@"
|
||||
export KILL="@KILL@"
|
||||
export KSH="@KSH@"
|
||||
export KSTAT="@KSTAT@"
|
||||
export LOCKFS="@LOCKFS@"
|
||||
export LOFIADM="@LOFIADM@"
|
||||
export LOGNAME="@LOGNAME@"
|
||||
export LS="@LS@"
|
||||
export MD5SUM="@MD5SUM@"
|
||||
export MKDIR="@MKDIR@"
|
||||
export MKNOD="@MKNOD@"
|
||||
export MKTEMP="@MKTEMP@"
|
||||
export MNTTAB="@MNTTAB@"
|
||||
export MODINFO="@MODINFO@"
|
||||
export MODUNLOAD="@MODUNLOAD@"
|
||||
export MOUNT="@MOUNT@"
|
||||
export MV="@MV@"
|
||||
export NAWK="@AWK@"
|
||||
export NEWFS="@NEWFS@"
|
||||
export NPROC="@NPROC@"
|
||||
export PAGESIZE="@PAGESIZE@"
|
||||
export PFEXEC="@PFEXEC@"
|
||||
export PGREP="@PGREP@"
|
||||
export PING="@PING@"
|
||||
export PKGINFO="@PKGINFO@"
|
||||
export PKILL="@PKILL@"
|
||||
export PRINTF="@PRINTF@"
|
||||
export PRTVTOC="@PRTVTOC@"
|
||||
export PS="@PS@"
|
||||
export PSRINFO="@PSRINFO@"
|
||||
export PYTHON="@PYTHON@"
|
||||
export REBOOT="@REBOOT@"
|
||||
export RM="@RM@"
|
||||
export RMDIR="@RMDIR@"
|
||||
export RSH="@RSH@"
|
||||
export SED="@SED@"
|
||||
export SETFACL="@SETFACL@"
|
||||
export SHARE="@SHARE@"
|
||||
export SHUF="@SHUF@"
|
||||
export SLEEP="@SLEEP@"
|
||||
export SORT="@SORT@"
|
||||
export STRINGS="@STRINGS@"
|
||||
export SU="@SU@"
|
||||
export SUM="@SUM@"
|
||||
export SVCADM="@SVCADM@"
|
||||
export SVCS="@SVCS@"
|
||||
export SWAP="@SWAP@"
|
||||
export SWAPADD="@SWAPADD@"
|
||||
export SYNC="@SYNC@"
|
||||
export TAIL="@TAIL@"
|
||||
export TAR="@TAR@"
|
||||
export TOUCH="@TOUCH@"
|
||||
export TR="@TR@"
|
||||
export TRUE="@TRUE@"
|
||||
export TRUNCATE="@TRUNCATE@"
|
||||
export UDEVADM="@UDEVADM@"
|
||||
export UFSDUMP="@UFSDUMP@"
|
||||
export UFSRESTORE="@UFSRESTORE@"
|
||||
export UMASK="@UMASK@"
|
||||
export UMOUNT="@UMOUNT@"
|
||||
export UMOUNTALL="@UMOUNTALL@"
|
||||
export UNAME="@UNAME@"
|
||||
export UNCOMPRESS="@UNCOMPRESS@"
|
||||
export UNIQ="@UNIQ@"
|
||||
export UNSHARE="@UNSHARE@"
|
||||
export USERADD="@USERADD@"
|
||||
export USERDEL="@USERDEL@"
|
||||
export USERMOD="@USERMOD@"
|
||||
export WAIT="@WAIT@"
|
||||
export WC="@WC@"
|
||||
export ZONEADM="@ZONEADM@"
|
||||
export ZONECFG="@ZONECFG@"
|
||||
export ZONENAME="@ZONENAME@"
|
||||
@@ -0,0 +1,200 @@
|
||||
#
|
||||
# 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) 2016 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
. $STF_SUITE/include/commands.cfg
|
||||
. $STF_SUITE/include/libtest.shlib
|
||||
|
||||
# Optionally override the installed ZFS commands to run in-tree
|
||||
if [[ -f "$STF_SUITE/include/zfs_commands.cfg" ]]; then
|
||||
. $STF_SUITE/include/zfs_commands.cfg
|
||||
fi
|
||||
|
||||
# Define run length constants
|
||||
export RT_LONG="3"
|
||||
export RT_MEDIUM="2"
|
||||
export RT_SHORT="1"
|
||||
|
||||
# Define macro for zone test
|
||||
export ZONE_POOL="zonepool"
|
||||
export ZONE_CTR="zonectr"
|
||||
|
||||
# Common paths
|
||||
bindir=@bindir@
|
||||
sbindir=@sbindir@
|
||||
helperdir=@datarootdir@/@PACKAGE@/zfs-tests/bin
|
||||
|
||||
# ZFS Commands
|
||||
ZDB=${ZDB:-${sbindir}/zdb}
|
||||
ZFS=${ZFS:-${sbindir}/zfs}
|
||||
ZHACK=${ZHACK:-${sbindir}/zhack}
|
||||
ZINJECT=${ZINJECT:-${sbindir}/zinject}
|
||||
ZPOOL=${ZPOOL:-${sbindir}/zpool}
|
||||
ZTEST=${ZTEST:-${sbindir}/ztest}
|
||||
ZPIOS=${ZPIOS:-${sbindir}/zpios}
|
||||
|
||||
# Test Suite Specific Commands
|
||||
export CHG_USR_EXEC=${CHG_USR_EXEC:-${helperdir}/chg_usr_exec}
|
||||
export DEVNAME2DEVID=${DEVNAME2DEVID:-${helperdir}/devname2devid}
|
||||
export DIR_RD_UPDATE=${DIR_RD_UPDATE:-${helperdir}/dir_rd_update}
|
||||
export FILE_CHECK=${FILE_CHECK:-${helperdir}/file_check}
|
||||
export FILE_TRUNC=${FILE_TRUNC:-${helperdir}/file_trunc}
|
||||
export FILE_WRITE=${FILE_WRITE:-${helperdir}/file_write}
|
||||
export LARGEST_FILE=${LARGEST_FILE:-${helperdir}/largest_file}
|
||||
export MKBUSY=${MKBUSY:-${helperdir}/mkbusy}
|
||||
export MKFILE=${MKFILE:-${helperdir}/mkfile}
|
||||
export MKFILES=${MKFILES:-${helperdir}/mkfiles}
|
||||
export MKTREE=${MKTREE:-${helperdir}/mktree}
|
||||
export MMAP_EXEC=${MMAP_EXEC:-${helperdir}/mmap_exec}
|
||||
export MMAPWRITE=${MMAPWRITE:-${helperdir}/mmapwrite}
|
||||
export RANDFREE_FILE=${RANDFREE_FILE:-${helperdir}/randfree_file}
|
||||
export READMMAP=${READMMAP:-${helperdir}/readmmap}
|
||||
export RENAME_DIR=${RENAME_DIR:-${helperdir}/rename_dir}
|
||||
export RM_LNKCNT_ZERO_FILE=${RM_LNKCNT_ZERO_FILE:-${helperdir}/rm_lnkcnt_zero_file}
|
||||
export THREADSAPPEND=${THREADSAPPEND:-${helperdir}/threadsappend}
|
||||
export XATTRTEST=${XATTRTEST:-${helpdir}/xattrtest}
|
||||
|
||||
# ensure we're running in the C locale, since
|
||||
# localised messages may result in test failures
|
||||
export LC_ALL="C"
|
||||
export LANG="C"
|
||||
|
||||
#
|
||||
# pattern to ignore from 'zpool list'.
|
||||
#
|
||||
export NO_POOLS="no pools available"
|
||||
|
||||
# pattern to ignore from 'zfs list'.
|
||||
export NO_DATASETS="no datasets available"
|
||||
|
||||
export TEST_BASE_DIR="/var/tmp"
|
||||
|
||||
# Default to compression ON
|
||||
export COMPRESSION_PROP=on
|
||||
|
||||
# Default to using the checksum
|
||||
export CHECKSUM_PROP=on
|
||||
|
||||
# some common variables used by test scripts :
|
||||
|
||||
# some test pool names
|
||||
export TESTPOOL=testpool.$$
|
||||
export TESTPOOL1=testpool1.$$
|
||||
export TESTPOOL2=testpool2.$$
|
||||
export TESTPOOL3=testpool3.$$
|
||||
|
||||
# some test file system names
|
||||
export TESTFS=testfs.$$
|
||||
export TESTFS1=testfs1.$$
|
||||
export TESTFS2=testfs2.$$
|
||||
export TESTFS3=testfs3.$$
|
||||
|
||||
# some test directory names
|
||||
export TESTDIR=${TEST_BASE_DIR%%/}/testdir$$
|
||||
export TESTDIR0=${TEST_BASE_DIR%%/}/testdir0$$
|
||||
export TESTDIR1=${TEST_BASE_DIR%%/}/testdir1$$
|
||||
export TESTDIR2=${TEST_BASE_DIR%%/}/testdir2$$
|
||||
|
||||
export ZFSROOT=
|
||||
|
||||
export TESTSNAP=testsnap$$
|
||||
export TESTSNAP1=testsnap1$$
|
||||
export TESTSNAP2=testsnap2$$
|
||||
export TESTCLONE=testclone$$
|
||||
export TESTCLONE1=testclone1$$
|
||||
export TESTCLONE2=testclone2$$
|
||||
export TESTCLCT=testclct$$
|
||||
export TESTCTR=testctr$$
|
||||
export TESTCTR1=testctr1$$
|
||||
export TESTCTR2=testctr2$$
|
||||
export TESTVOL=testvol$$
|
||||
export TESTVOL1=testvol1$$
|
||||
export TESTVOL2=testvol2$$
|
||||
export TESTFILE0=testfile0.$$
|
||||
export TESTFILE1=testfile1.$$
|
||||
export TESTFILE2=testfile2.$$
|
||||
|
||||
export LONGPNAME="poolname50charslong_012345678901234567890123456789"
|
||||
export LONGFSNAME="fsysname50charslong_012345678901234567890123456789"
|
||||
export SNAPFS="$TESTPOOL/$TESTFS@$TESTSNAP"
|
||||
export SNAPFS1="$TESTPOOL/$TESTVOL@$TESTSNAP"
|
||||
|
||||
export VOLSIZE=150m
|
||||
export BIGVOLSIZE=1eb
|
||||
|
||||
# Default to limit disks to be checked
|
||||
export MAX_FINDDISKSNUM=6
|
||||
|
||||
# For iscsi target support
|
||||
export ISCSITGTFILE=/tmp/iscsitgt_file
|
||||
export ISCSITGT_FMRI=svc:/system/iscsitgt:default
|
||||
|
||||
#
|
||||
# finally, if we're running in a local zone
|
||||
# we take some additional actions
|
||||
if ! is_global_zone; then
|
||||
reexport_pool
|
||||
fi
|
||||
|
||||
export ZFS_VERSION=5
|
||||
export ZFS_ALL_VERSIONS="1 2 3 4 5"
|
||||
|
||||
for i in $ZFS_ALL_VERSIONS; do
|
||||
eval 'export ZFS_VERSION_$i="v${i}-fs"'
|
||||
done
|
||||
|
||||
if is_linux; then
|
||||
unpack_opts="--sparse -xf"
|
||||
pack_opts="--sparse -cf"
|
||||
verbose=" -v"
|
||||
unpack_preserve=" -xpf"
|
||||
pack_preserve=" -cpf"
|
||||
|
||||
ZVOL_DEVDIR="/dev/zvol"
|
||||
ZVOL_RDEVDIR="/dev/zvol"
|
||||
DEV_DSKDIR="/dev"
|
||||
DEV_RDSKDIR="/dev"
|
||||
|
||||
NEWFS_DEFAULT_FS="ext2"
|
||||
else
|
||||
unpack_opts="xv"
|
||||
pack_opts="cf"
|
||||
verbose="v"
|
||||
unpack_preserve="xpf"
|
||||
pack_preserve="cpf"
|
||||
|
||||
ZVOL_DEVDIR="/dev/zvol/dsk"
|
||||
ZVOL_RDEVDIR="/dev/zvol/rdsk"
|
||||
DEV_DSKDIR="/dev/dsk"
|
||||
DEV_RDSKDIR="/dev/rdsk"
|
||||
|
||||
NEWFS_DEFAULT_FS="ufs"
|
||||
fi
|
||||
export unpack_opts pack_opts verbose unpack_preserve pack_preserve \
|
||||
ZVOL_DEVDIR ZVOL_RDEVDIR NEWFS_DEFAULT_FS DEV_DSKDIR DEV_RDSKDIR
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,43 @@
|
||||
#
|
||||
# This file and its contents are supplied under the terms of the
|
||||
# Common Development and Distribution License ("CDDL"), version 1.0.
|
||||
# You may only use this file in accordance with the terms of version
|
||||
# 1.0 of the CDDL.
|
||||
#
|
||||
# A full copy of the text of the CDDL should have accompanied this
|
||||
# source. A copy of the CDDL is also available via the Internet at
|
||||
# http://www.illumos.org/license/CDDL.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2012 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
#
|
||||
# Return 0 if the percentage difference between $a and $b is $percent or
|
||||
# greater. Return 1 if the percentage is lower or if we would divide by
|
||||
# zero. For use like this:
|
||||
#
|
||||
# Do $action if the calculated percentage is greater or equal to that passed in:
|
||||
# within_percent A B P && $action
|
||||
# Do $action if the calculated percentage is less than that passed in:
|
||||
# within_percent A B P || $action
|
||||
#
|
||||
function within_percent
|
||||
{
|
||||
typeset a=$1
|
||||
typeset b=$1
|
||||
typeset percent=$3
|
||||
|
||||
# Set $a or $b to $2 such that a >= b
|
||||
[[ '1' = $($ECHO "if ($2 > $a) 1" | $BC) ]] && a=$2 || b=$2
|
||||
|
||||
# Prevent division by 0
|
||||
[[ $a =~ [1-9] ]] || return 1
|
||||
|
||||
typeset p=$($ECHO "scale=2; $b * 100 / $a" | $BC)
|
||||
log_note "Comparing $a and $b given $percent% (calculated: $p%)"
|
||||
[[ '1' = $($ECHO "scale=2; if ($p >= $percent) 1" | $BC) ]] && return 0
|
||||
|
||||
return 1
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
#
|
||||
# This file and its contents are supplied under the terms of the
|
||||
# Common Development and Distribution License ("CDDL"), version 1.0.
|
||||
# You may only use this file in accordance with the terms of version
|
||||
# 1.0 of the CDDL.
|
||||
#
|
||||
# A full copy of the text of the CDDL should have accompanied this
|
||||
# source. A copy of the CDDL is also available via the Internet at
|
||||
# http://www.illumos.org/license/CDDL.
|
||||
#
|
||||
|
||||
#
|
||||
# Copyright (c) 2012 by Delphix. All rights reserved.
|
||||
#
|
||||
|
||||
typeset -a compress_props=('on' 'off' 'lzjb' 'gzip' 'gzip-1' 'gzip-2' 'gzip-3'
|
||||
'gzip-4' 'gzip-5' 'gzip-6' 'gzip-7' 'gzip-8' 'gzip-9' 'zle')
|
||||
|
||||
typeset -a checksum_props=('on' 'off' 'fletcher2' 'fletcher4' 'sha256')
|
||||
|
||||
#
|
||||
# Given the property array passed in, return 'num_props' elements to the
|
||||
# user, excluding any elements below 'start.' This allows us to exclude
|
||||
# 'off' and 'on' which can be either unwanted, or a duplicate of another
|
||||
# property respectively.
|
||||
#
|
||||
function get_rand_prop
|
||||
{
|
||||
typeset prop_array=($(eval echo \${$1[@]}))
|
||||
typeset -i num_props=$2
|
||||
typeset -i start=$3
|
||||
typeset retstr=""
|
||||
|
||||
[[ -z $prop_array || -z $num_props || -z $start ]] && \
|
||||
log_fail "get_rand_prop: bad arguments"
|
||||
|
||||
typeset prop_max=$((${#prop_array[@]} - 1))
|
||||
typeset -i i
|
||||
for i in $($SHUF -i $start-$prop_max -n $num_props); do
|
||||
retstr="${prop_array[$i]} $retstr"
|
||||
done
|
||||
echo $retstr
|
||||
}
|
||||
|
||||
function get_rand_compress
|
||||
{
|
||||
get_rand_prop compress_props $1 2
|
||||
}
|
||||
|
||||
function get_rand_compress_any
|
||||
{
|
||||
get_rand_prop compress_props $1 0
|
||||
}
|
||||
|
||||
function get_rand_checksum
|
||||
{
|
||||
get_rand_prop checksum_props $1 2
|
||||
}
|
||||
|
||||
function get_rand_checksum_any
|
||||
{
|
||||
get_rand_prop checksum_props $1 0
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
../../../zfs-script-config.sh
|
||||
Reference in New Issue
Block a user