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#
24# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26
27. $STF_SUITE/include/libtest.kshlib
28
29################################################################################
30#
31# __stc_assertion_start
32#
33# ID: zfs_inherit_001_neg
34#
35# DESCRIPTION:
36# 'zfs inherit' should return an error when attempting to inherit
37# properties which are not inheritable.
38#
39# STRATEGY:
40# 1. Create an array of properties which cannot be inherited
41# 2. For each property in the array, execute 'zfs inherit'
42# 3. Verify an error is returned.
43#
44# TESTABILITY: explicit
45#
46# TEST_AUTOMATION_LEVEL: automated
47#
48# CODING_STATUS: COMPLETED (2005-07-04)
49#
50# __stc_assertion_end
51#
52################################################################################
53
54verify_runnable "both"
55
56# Define uninherited properties and their short name.
57typeset props_str="type creation \
58		compressratio ratio mounted origin quota reservation \
59		reserv volsize volblocksize volblock"
60
61$ZFS upgrade -v > /dev/null 2>&1
62if [[ $? -eq 0 ]]; then
63	props_str="$props_str version"
64fi
65
66set -A prop $props_str canmount
67
68
69log_assert "'zfs inherit' should return an error when attempting to inherit" \
70	" un-inheritable properties."
71
72typeset -i i=0
73for obj in $TESTPOOL/$TESTFS $TESTPOOL/$TESTVOL; do
74	i=0
75	while [[ $i -lt ${#prop[*]} ]]; do
76		orig_val=$(get_prop ${prop[i]} $obj)
77
78		log_mustnot $ZFS inherit ${prop[i]} $obj
79
80		new_val=$(get_prop ${prop[i]} $obj)
81
82		if [[ $new_val != $orig_val ]]; then
83			log_fail "${prop[i]} property changed from $orig_val "
84				" to $new_val"
85		fi
86		((i = i + 1))
87	done
88done
89
90log_pass "'zfs inherit' failed as expected when attempting to inherit" \
91	" un-inheritable properties."
92