1#!/usr/local/bin/ksh93 -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23# $FreeBSD$
24
25#
26# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
27# Use is subject to license terms.
28#
29# ident	"@(#)zfs_get_008_pos.ksh	1.1	09/06/22 SMI"
30#
31
32. $STF_SUITE/tests/cli_root/zfs_get/zfs_get_common.kshlib
33. $STF_SUITE/tests/cli_root/zfs_get/zfs_get_list_d.kshlib
34
35###############################################################################
36#
37# __stc_assertion_start
38#
39# ID: zfs_get_008_pos
40#
41# DESCRIPTION:
42# Verify "-d <n>" can work with other options
43#
44# STRATEGY:
45# 1. Create pool, filesystem, dataset, volume and snapshot.
46# 2. Getting an -d option, other options and properties random combination.
47# 3. Using the combination as the parameters of 'zfs get' to check the
48# command line return value.
49#
50# TESTABILITY: explicit
51#
52# TEST_AUTOMATION_LEVEL: automated
53#
54# CODING_STATUS: COMPLETED (2009-05-22)
55#
56# __stc_assertion_end
57#
58################################################################################
59
60verify_runnable "both"
61
62if ! zfs_get_list_d_supported ; then
63	log_unsupported "'zfs get -d' is not supported."
64fi
65
66set -A options " " "-r" "-H" "-p" "-rHp" "-o name" \
67	"-s local,default,temporary,inherited,none" \
68	"-o name -s local,default,temporary,inherited,none" \
69	"-rHp -o name -s local,default,temporary,inherited,none"
70
71set -A props type used available creation volsize referenced compressratio \
72	mounted origin recordsize quota reservation mountpoint sharenfs \
73	checksum compression atime devices exec readonly setuid snapdir \
74	aclmode aclinherit canmount primarycache secondarycache \
75	usedbychildren usedbydataset usedbyrefreservation usedbysnapshots \
76	userquota@root groupquota@root userused@root groupused@root
77
78$ZFS upgrade -v > /dev/null 2>&1
79if [[ $? -eq 0 ]]; then
80	set -A all_props ${all_props[*]} version
81fi
82
83set -A dataset $TESTPOOL/$TESTCTR $TESTPOOL/$TESTFS $TESTPOOL/$TESTVOL \
84	$TESTPOOL/$TESTFS@$TESTSNAP $TESTPOOL/$TESTVOL@$TESTSNAP
85
86log_assert "Verify '-d <n>' can work with other options"
87log_onexit cleanup
88
89# Create volume and filesystem's snapshot
90create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
91create_snapshot $TESTPOOL/$TESTVOL $TESTSNAP
92
93typeset -i opt_numb=16
94typeset -i prop_numb=16
95typeset -i i=0
96typeset -i item=0
97typeset -i depth_item=0
98
99for dst in ${dataset[@]}; do
100	(( i=0 ))
101	while (( i < opt_numb )); do
102		(( item = $RANDOM % ${#options[@]} ))
103		(( depth_item = $RANDOM % ${#depth_options[@]} ))
104		for prop in $(gen_option_str "${props[*]}" "" "," $prop_numb)
105		do
106			log_must eval "$ZFS get -${depth_options[depth_item]} ${options[item]} $prop $dst > /dev/null 2>&1"
107		done
108		(( i += 1 ))
109	done
110done
111
112log_pass "Verify '-d <n>' can work with other options"
113
114