]> granicus.if.org Git - zfs/commitdiff
Move some tests to cli_user/zpool_status
authorTony Hutter <hutter2@llnl.gov>
Fri, 19 Jul 2019 18:21:54 +0000 (11:21 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 19 Jul 2019 18:21:54 +0000 (11:21 -0700)
The tests in tests/functional/cli_root/zpool_status should all require
root. However, linux.run has "user =" specified for those tests, which
means they run as a normal user.  When I removed that line to run them
as root, the following tests did not pass:

zpool_status_003_pos
zpool_status_-c_disable
zpool_status_-c_homedir
zpool_status_-c_searchpath

These tests need to be run as a normal user.  To fix this, move these
tests to a new tests/functional/cli_user/zpool_status directory.

Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Giuseppe Di Natale <guss80@gmail.com>
Signed-off-by: Tony Hutter <hutter2@llnl.gov>
Closes #9057

configure.ac
tests/runfiles/linux.run
tests/zfs-tests/tests/functional/cli_root/zpool_status/Makefile.am
tests/zfs-tests/tests/functional/cli_user/Makefile.am
tests/zfs-tests/tests/functional/cli_user/zpool_status/Makefile.am [new file with mode: 0644]
tests/zfs-tests/tests/functional/cli_user/zpool_status/cleanup.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/cli_user/zpool_status/setup.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/cli_user/zpool_status/zpool_status_-c_disable.ksh [moved from tests/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_-c_disable.ksh with 100% similarity]
tests/zfs-tests/tests/functional/cli_user/zpool_status/zpool_status_-c_homedir.ksh [moved from tests/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_-c_homedir.ksh with 100% similarity]
tests/zfs-tests/tests/functional/cli_user/zpool_status/zpool_status_-c_searchpath.ksh [moved from tests/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_-c_searchpath.ksh with 100% similarity]
tests/zfs-tests/tests/functional/cli_user/zpool_status/zpool_status_003_pos.ksh [moved from tests/zfs-tests/tests/functional/cli_root/zpool_status/zpool_status_003_pos.ksh with 100% similarity]

index 9e4f8ff1183098993ab9aa8e834317da3f1c683a..01043422565f151ec1faf0d92582ccb87ff1728e 100644 (file)
@@ -274,6 +274,7 @@ AC_CONFIG_FILES([
        tests/zfs-tests/tests/functional/cli_user/zfs_list/Makefile
        tests/zfs-tests/tests/functional/cli_user/zpool_iostat/Makefile
        tests/zfs-tests/tests/functional/cli_user/zpool_list/Makefile
+       tests/zfs-tests/tests/functional/cli_user/zpool_status/Makefile
        tests/zfs-tests/tests/functional/compression/Makefile
        tests/zfs-tests/tests/functional/cp_files/Makefile
        tests/zfs-tests/tests/functional/ctime/Makefile
index 4a0e151f442dbb3ded0a794d5fabc32ffc4ebe2e..f1337cbc78ade345f10203a9850631b3458faff2 100644 (file)
@@ -458,10 +458,7 @@ tests = ['zpool_split_cliargs', 'zpool_split_devices',
 tags = ['functional', 'cli_root', 'zpool_split']
 
 [tests/functional/cli_root/zpool_status]
-tests = ['zpool_status_001_pos', 'zpool_status_002_pos','zpool_status_003_pos',
-    'zpool_status_-c_disable', 'zpool_status_-c_homedir',
-    'zpool_status_-c_searchpath']
-user =
+tests = ['zpool_status_001_pos', 'zpool_status_002_pos']
 tags = ['functional', 'cli_root', 'zpool_status']
 
 [tests/functional/cli_root/zpool_sync]
@@ -525,6 +522,12 @@ tests = ['zpool_list_001_pos', 'zpool_list_002_neg']
 user =
 tags = ['functional', 'cli_user', 'zpool_list']
 
+[tests/functional/cli_user/zpool_status]
+tests = ['zpool_status_003_pos', 'zpool_status_-c_disable',
+    'zpool_status_-c_homedir', 'zpool_status_-c_searchpath']
+user =
+tags = ['functional', 'cli_user', 'zpool_status']
+
 [tests/functional/compression]
 tests = ['compress_001_pos', 'compress_002_pos', 'compress_003_pos',
     'compress_004_pos']
index aab4de0e7c89c1ad50808001b77414dc29168e86..beb59e3d066b8ef806235b290d32e6ed49df39e0 100644 (file)
@@ -3,8 +3,4 @@ dist_pkgdata_SCRIPTS = \
        setup.ksh \
        cleanup.ksh \
        zpool_status_001_pos.ksh \
-       zpool_status_002_pos.ksh \
-       zpool_status_003_pos.ksh \
-       zpool_status_-c_disable.ksh \
-       zpool_status_-c_homedir.ksh \
-       zpool_status_-c_searchpath.ksh
+       zpool_status_002_pos.ksh
index f1ff32e8d22d5228d97aff5831df3a196348a980..119f8ee187f667aaf7ec2ed9c99c92476fdf7334 100644 (file)
@@ -2,4 +2,5 @@ SUBDIRS = \
        misc \
        zfs_list \
        zpool_iostat \
-       zpool_list
+       zpool_list \
+       zpool_status
diff --git a/tests/zfs-tests/tests/functional/cli_user/zpool_status/Makefile.am b/tests/zfs-tests/tests/functional/cli_user/zpool_status/Makefile.am
new file mode 100644 (file)
index 0000000..e1b3396
--- /dev/null
@@ -0,0 +1,8 @@
+pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_user/zpool_status
+dist_pkgdata_SCRIPTS = \
+       setup.ksh \
+       cleanup.ksh \
+       zpool_status_003_pos.ksh \
+       zpool_status_-c_disable.ksh \
+       zpool_status_-c_homedir.ksh \
+       zpool_status_-c_searchpath.ksh
diff --git a/tests/zfs-tests/tests/functional/cli_user/zpool_status/cleanup.ksh b/tests/zfs-tests/tests/functional/cli_user/zpool_status/cleanup.ksh
new file mode 100755 (executable)
index 0000000..79cd6e9
--- /dev/null
@@ -0,0 +1,30 @@
+#!/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.
+#
+
+. $STF_SUITE/include/libtest.shlib
+
+default_cleanup
diff --git a/tests/zfs-tests/tests/functional/cli_user/zpool_status/setup.ksh b/tests/zfs-tests/tests/functional/cli_user/zpool_status/setup.ksh
new file mode 100755 (executable)
index 0000000..6a9af3b
--- /dev/null
@@ -0,0 +1,32 @@
+#!/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.
+#
+
+. $STF_SUITE/include/libtest.shlib
+
+DISK=${DISKS%% *}
+
+default_setup $DISK