003 File Manager
Current Path:
/usr/src/tests/sys/cddl/zfs/tests/cli_user/zfs_list
usr
/
src
/
tests
/
sys
/
cddl
/
zfs
/
tests
/
cli_user
/
zfs_list
/
📁
..
📄
Makefile
(697 B)
📄
cleanup.ksh
(1.07 KB)
📄
setup.ksh
(2.13 KB)
📄
zfs_list.cfg
(1.26 KB)
📄
zfs_list.kshlib
(3.16 KB)
📄
zfs_list_001_pos.ksh
(3.69 KB)
📄
zfs_list_002_pos.ksh
(6.32 KB)
📄
zfs_list_003_pos.ksh
(2.32 KB)
📄
zfs_list_004_neg.ksh
(2.14 KB)
📄
zfs_list_005_pos.ksh
(6.92 KB)
📄
zfs_list_006_pos.ksh
(3.46 KB)
📄
zfs_list_007_pos.ksh
(3.14 KB)
📄
zfs_list_008_neg.ksh
(2.12 KB)
📄
zfs_list_test.sh
(7.53 KB)
Editing: zfs_list_001_pos.ksh
#!/usr/local/bin/ksh93 -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 # # $FreeBSD$ # # Copyright 2009 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)zfs_list_001_pos.ksh 1.5 09/06/22 SMI" # . $STF_SUITE/include/libtest.kshlib . $STF_SUITE/tests/cli_root/zfs_get/zfs_get_list_d.kshlib . $STF_SUITE/tests/cli_user/cli_user.kshlib ################################################################################ # # __stc_assertion_start # # ID: zfs_list_001_pos # # DESCRIPTION: # Executing well-formed 'zfs list' commands should return success. # # STRATEGY: # 1. Create an array of valid options. # 2. Execute each element in the array. # 3. Verify success is returned. # # TESTABILITY: explicit # # TEST_AUTOMATION_LEVEL: automated # # CODING_STATUS: COMPLETED (2005-07-04) # # __stc_assertion_end # ################################################################################ verify_runnable "both" set -A args "list" "list -r" "list -H" \ "list $TESTPOOL/$TESTFS" \ "list -r $TESTPOOL/$TESTFS" "list -H $TESTPOOL/$TESTFS" \ "list -rH $TESTPOOL/$TESTFS" "list -Hr $TESTPOOL/$TESTFS" \ "list -o name $TESTPOOL/$TESTFS" "list -r -o name $TESTPOOL/$TESTFS" \ "list -H -o name $TESTPOOL/$TESTFS" "list -rH -o name $TESTPOOL/$TESTFS" \ "list -Hr -o name $TESTPOOL/$TESTFS" if zfs_get_list_d_supported ; then set -A d_args " " "-r" "-H" \ "$TESTPOOL/$TESTFS" \ "-r $TESTPOOL/$TESTFS" "-H $TESTPOOL/$TESTFS" \ "-rH $TESTPOOL/$TESTFS" "-Hr $TESTPOOL/$TESTFS" \ "-o name $TESTPOOL/$TESTFS" "-r -o name $TESTPOOL/$TESTFS" \ "-H -o name $TESTPOOL/$TESTFS" "-rH -o name $TESTPOOL/$TESTFS" \ "-Hr -o name $TESTPOOL/$TESTFS" typeset -i m=${#args[*]} typeset -i n=0 typeset -i k=0 while (( n<${#depth_options[*]} )); do (( k=0 )) while (( k<${#d_args[*]} )); do args[$m]="list"" -${depth_options[$n]}"" ${d_args[$k]}" (( k+=1 )) (( m+=1 )) done (( n+=1 )) done fi set -A pathargs "list -r $TESTDIR" "list -H $TESTDIR" \ "list -r ./../$TESTDIR" "list -H ./../$TESTDIR" if zfs_get_list_d_supported ; then set -A d_pathargs " $TESTDIR" "-r $TESTDIR" "-H $TESTDIR" \ "-r ./../$TESTDIR" "-H ./../$TESTDIR" (( m=${#pathargs[*]} )) (( n=0 )) (( k=0 )) while (( n<${#depth_options[*]} )); do (( k=0 )) while (( k<${#d_pathargs[*]} )); do pathargs[$m]="list"" -${depth_options[$n]}"" ${d_pathargs[$k]}" (( k+=1 )) (( m+=1 )) done (( n+=1 )) done fi log_assert "Verify 'zfs list [-rH] [-o property[,prop]*] [fs|clct|vol]'." typeset -i i=0 while [[ $i -lt ${#args[*]} ]]; do log_must run_unprivileged "eval $ZFS ${args[i]} > /dev/null" ((i = i + 1)) done # Verify 'zfs list <path>' will succeed on absolute or relative path. cd /tmp typeset -i i=0 while [[ $i -lt ${#pathargs[*]} ]]; do log_must run_unprivileged "eval $ZFS ${pathargs[i]} > /dev/null" ((i = i + 1)) done log_pass "The sub-command 'list' succeeds as non-root."
Upload File
Create Folder