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_005_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 2008 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # # ident "@(#)zfs_list_005_pos.ksh 1.2 08/11/03 SMI" # . $STF_SUITE/tests/cli_user/zfs_list/zfs_list.kshlib . $STF_SUITE/tests/cli_user/cli_user.kshlib ################################################################################# # # __stc_assertion_start # # ID: zfs_list_005_pos # # DESCRIPTION: # Verify 'zfs list' evaluate multiple '-s' options from left to right # in decreasing order of importance. # # STRATEGY: # 1. Setting user property f:color for filesystem and volume. # 2. Setting user property f:amount for filesystem and volume. # 3. Setting reservation for filesystem and volume # 3. Verify 'zfs list' evaluated multiple -s options from left to right. # # TESTABILITY: explicit # # TEST_AUTOMATION_LEVEL: automated # # CODING_STATUS: COMPLETED (2008-07-23) # # __stc_assertion_end # ################################################################################ verify_runnable "both" log_assert "Verify 'zfs list' evaluate multiple '-s' options " \ "from left to right in decreasing order of importance." COLOR="red yellow green blue red yellow white" AMOUNT="0217 812 0217 0781 7 1364 687" RESERVATION="2048K 1024 2048K 512K 16M 3072 128K" basefs=$TESTPOOL/$TESTFS typeset -i n=0 for ds in $DATASETS ; do color=$($ECHO $COLOR | $AWK '{print $1}') log_must $ZFS set f:color=$color $basefs/$ds if is_global_zone ; then log_must $ZFS set f:color=$color $basefs/${ds}-vol fi eval COLOR=\${COLOR#$color } amount=$($ECHO $AMOUNT | $AWK '{print $1}') log_must $ZFS set f:amount=$amount $basefs/$ds if is_global_zone ; then log_must $ZFS set f:amount=$amount $basefs/${ds}-vol fi eval AMOUNT=\${AMOUNT#$amount } reserv=$($ECHO $RESERVATION | $AWK '{print $1}') log_must $ZFS set reservation=$reserv $basefs/$ds if is_global_zone ; then log_must $ZFS set reservation=$reserv $basefs/${ds}-vol fi eval RESERVATION=\${RESERVATION#$reserv } done # # we must be in the C locale here, as running in other locales # will make zfs use that locale's sort order. # LC_ALL=C; export LC_ALL fs_color_amount="Orange Carrot Apple apple carrot banana Banana" fs_amount_color="Carrot Apple Orange banana carrot apple Banana" fs_color_reserv="Orange Carrot Apple apple carrot Banana banana" fs_reserv_color="Banana banana carrot Orange Carrot Apple apple" fs_reserv_amount_color="Banana banana carrot Orange Carrot Apple apple" vol_color_amount="Orange-vol Carrot-vol Apple-vol apple-vol carrot-vol" vol_color_amount="$vol_color_amount banana-vol Banana-vol" vol_amount_color="Carrot-vol Apple-vol Orange-vol banana-vol carrot-vol" vol_amount_color="$vol_amount_color apple-vol Banana-vol" vol_color_reserv="Orange-vol Carrot-vol Apple-vol apple-vol carrot-vol" vol_color_reserv="$vol_color_reserv Banana-vol banana-vol" vol_reserv_color="Banana-vol banana-vol carrot-vol Orange-vol Carrot-vol" vol_reserv_color="$vol_reserv_color Apple-vol apple-vol" vol_reserv_amount_color="Banana-vol banana-vol carrot-vol Orange-vol Carrot-vol" vol_reserv_amount_color="$vol_reserv_amount_color Apple-vol apple-vol" if is_global_zone ; then snap_list="Apple@snap Apple-vol@snap Banana@snap Banana-vol@snap" snap_list="$snap_list Carrot@snap Carrot-vol@snap Orange@snap Orange-vol@snap" snap_list="$snap_list apple@snap apple-vol@snap banana@snap banana-vol@snap" snap_list="$snap_list carrot@snap carrot-vol@snap" else snap_list="Apple@snap Banana@snap" snap_list="$snap_list Carrot@snap Orange@snap" snap_list="$snap_list apple@snap banana@snap" snap_list="$snap_list carrot@snap" fi # Sort by color,amount verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s f:amount -t filesystem $basefs" \ "$fs_color_amount" "f:color,f:amount" if is_global_zone ; then verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s f:amount -t volume $basefs" \ "$vol_color_amount" "f:color,f:amount" fi # Sort by amount,color verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:amount -s f:color -t filesystem $basefs" \ "$fs_amount_color" "f:amount,f:color" if is_global_zone ; then verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:amount -s f:color -t volume $basefs" \ "$vol_amount_color" "f:amount,f:color" fi # Sort by color reservation verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s reserv -t filesystem $basefs" \ "$fs_color_reserv" "f:color,reserv" if is_global_zone ; then verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s reserv -t volume $basefs" \ "$vol_color_reserv" "f:color,reserv" fi # Sort by reserv, color verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s f:color -t filesystem $basefs" \ "$fs_reserv_color" "reserv,f:color" if is_global_zone ; then verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s f:color -t volume $basefs" \ "$vol_reserv_color" "reserv,f:color" fi # Sort by reservation, amount, color verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s reserv -s f:amount -s f:color -t filesystem $basefs" \ "$fs_reserv_amount_color" "reserv,:amount,f:color" if is_global_zone ; then verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s f:amount -s f:color -t volume $basefs" \ "$vol_reserv_amount_color" "reserv,:amount,f:color" fi # User property and reservation was not stored in snapshot verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:amount -s f:color -t snapshot $basefs" \ "$snap_list" "f:amount,f:color" verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s f:amount -t snapshot $basefs" \ "$snap_list" "f:color,f:amount" verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s f:color -s reserv -t snapshot $basefs" \ "$snap_list" "f:color,reservation" verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s f:color -t snapshot $basefs" \ "$snap_list" "reserv,f:color" verify_sort \ "run_unprivileged $ZFS list -H -r -o name -s reserv -s f:amount -s f:color -t snapshot $basefs" \ "$snap_list" "reservation,f:color,f:amount" log_pass "Verify 'zfs list' evaluate multiple '-s' options " \ "from left to right in decreasing order of importance."
Upload File
Create Folder