1#!/bin/ksh -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#
24# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/tests/functional/cli_root/zfs_get/zfs_get_common.kshlib
33
34#
35# DESCRIPTION:
36# Setting the invalid option and properties, 'zfs get' should failed.
37#
38# STRATEGY:
39# 1. Create pool, filesystem, volume and snapshot.
40# 2. Getting incorrect combination by invalid parameters
41# 3. Using the combination as the parameters of 'zfs get' to check the
42# command line return value.
43#
44
45verify_runnable "both"
46
47typeset val_opts=(p r H)
48typeset v_props=(type used available creation volsize referenced compressratio \
49    mounted origin recordsize quota reservation mountpoint sharenfs checksum \
50    compression atime devices exec readonly setuid snapdir version \
51    aclinherit canmount primarycache secondarycache \
52    usedbychildren usedbydataset usedbyrefreservation usedbysnapshots)
53if is_freebsd; then
54	typeset v_props_os=(jailed aclmode)
55else
56	typeset v_props_os=(zoned acltype)
57fi
58typeset  userquota_props=(userquota@root groupquota@root userused@root \
59    groupused@root)
60typeset val_props=("${v_props[@]}" \
61    "${v_props_os[@]}" \
62    "${userquota_props[@]}")
63set -f	# Force shell does not parse '?' and '*' as the wildcard
64typeset inval_opts=(P R h ? *)
65typeset inval_props=(Type 0 ? * -on --on readonl time USED RATIO MOUNTED)
66
67typeset dataset=($TESTPOOL/$TESTFS $TESTPOOL/$TESTCTR $TESTPOOL/$TESTVOL \
68    $TESTPOOL/$TESTFS@$TESTSNAP $TESTPOOL/$TESTVOL@$TESTSNAP)
69
70typeset -i opt_numb=6
71typeset -i prop_numb=12
72
73val_opts_str=$(gen_option_str "${val_opts[*]}" "-" "" $opt_numb)
74val_props_str=$(gen_option_str "${val_props[*]}" "" "," $prop_numb)
75
76inval_opts_str=$(gen_option_str "${inval_opts[*]}" "-" "" $opt_numb)
77inval_props_str=$(gen_option_str "${inval_props[*]}" "" "," $prop_numb)
78
79typeset val_bookmark_props=(creation)
80typeset bookmark=($TESTPOOL/$TESTFS#$TESTBKMARK $TESTPOOL/$TESTVOL#$TESTBKMARK)
81
82#
83# Test different options and properties combination.
84#
85# $1 options
86# $2 properties
87#
88function test_options
89{
90	typeset opts=$1
91	typeset props=$2
92
93	for dst in ${dataset[@]}; do
94		for opt in $opts; do
95			for prop in $props; do
96				log_mustnot eval "zfs get $opt -- $prop $dst > /dev/null 2>&1"
97			done
98		done
99	done
100}
101
102#
103# Test different options and properties combination for bookmarks.
104#
105# $1 options
106# $2 properties
107#
108function test_options_bookmarks
109{
110	typeset opts=$1
111	typeset props=$2
112
113	for dst in ${bookmark[@]}; do
114		for opt in $opts; do
115			for prop in $props; do
116				log_mustnot eval "zfs get $opt -- $prop $dst > /dev/null 2>&1"
117			done
118		done
119	done
120}
121
122log_assert "Setting the invalid option and properties, 'zfs get' should be \
123    failed."
124log_onexit cleanup
125
126# Create filesystem and volume's snapshot
127create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
128create_snapshot $TESTPOOL/$TESTVOL $TESTSNAP
129
130# Create filesystem and volume's bookmark
131create_bookmark $TESTPOOL/$TESTFS $TESTSNAP $TESTBKMARK
132create_bookmark $TESTPOOL/$TESTVOL $TESTSNAP $TESTBKMARK
133
134log_note "Valid options + invalid properties, 'zfs get' should fail."
135test_options "$val_opts_str" "$inval_props_str"
136test_options_bookmarks "$val_opts_str" "$inval_props_str"
137
138log_note "Invalid options + valid properties, 'zfs get' should fail."
139test_options "$inval_opts_str" "$val_props_str"
140test_options_bookmarks "$inval_opts_str" "$val_bookmark_props"
141
142log_note "Invalid options + invalid properties, 'zfs get' should fail."
143test_options "$inval_opts_str" "$inval_props_str"
144test_options_bookmarks "$inval_opts_str" "$inval_props_str"
145
146log_pass "Setting the invalid options to dataset, 'zfs get' pass."
147