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_clone_008_neg.ksh	1.1	09/01/13 SMI"
30#
31. $STF_SUITE/include/libtest.kshlib
32. $STF_SUITE/tests/cli_root/zfs_create/properties.kshlib
33
34################################################################################
35#
36# __stc_assertion_start
37#
38# ID: zfs_clone_008_neg
39#
40# DESCRIPTION:
41# 'zfs clone -o <filesystem>' fails with bad <filesystem> arguments, including:
42#	*Same property set multiple times via '-o property=value'
43#	*Volume's property set on filesystem
44#
45# STRATEGY:
46# 1. Create an array of <filesystem> arguments
47# 2. Execute 'zfs clone -o <filesystem>' with each argument
48# 3. Verify an error is returned.
49#
50# TESTABILITY: explicit
51#
52# TEST_AUTOMATION_LEVEL: automated
53#
54# CODING_STATUS: COMPLETED (2008-12-16)
55#
56# __stc_assertion_end
57#
58################################################################################
59
60verify_runnable "both"
61
62function cleanup
63{
64	if snapexists $SNAPFS ; then
65		log_must $ZFS destroy -Rf $SNAPFS
66	fi
67}
68
69if ! $(check_opt_support "clone" "-o") ; then
70	log_unsupported "'zfs clone -o' unsupported."
71fi
72
73log_onexit cleanup
74
75log_assert "Verify 'zfs clone -o <filesystem>' fails with bad <filesystem> argument."
76
77log_must $ZFS snapshot $SNAPFS
78
79typeset -i i=0
80while (( $i < ${#RW_FS_PROP[*]} )); do
81	log_mustnot $ZFS clone -o ${RW_FS_PROP[i]} -o ${RW_FS_PROP[i]} \
82		$SNAPFS $TESTPOOL/$TESTCLONE
83	log_mustnot $ZFS clone -p -o ${RW_FS_PROP[i]} -o ${RW_FS_PROP[i]} \
84		$SNAPFS $TESTPOOL/$TESTCLONE
85	((i = i + 1))
86done
87
88i=0
89while (( $i < ${#VOL_ONLY_PROP[*]} )); do
90	log_mustnot $ZFS clone -o ${VOL_ONLY_PROP[i]} \
91		$SNAPFS $TESTPOOL/$TESTCLONE
92	log_mustnot $ZFS clone -p -o ${VOL_ONLY_PROP[i]} \
93		$SNAPFS $TESTPOOL/$TESTCLONE
94	((i = i + 1))
95done
96
97log_pass "'zfs clone -o <filesystem>' fails with bad <filesystem> argument."
98