7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zfs_clone / zfs_clone_005_pos.ksh
blob879f837a6688bc569d3b5921e68214c667e63fd2
1 #!/bin/ksh -p
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_create/zfs_create_common.kshlib
34 . $STF_SUITE/tests/functional/cli_root/zfs_create/properties.kshlib
37 # DESCRIPTION:
38 # 'zfs clone -o property=value -V size volume' can successfully create a ZFS
39 # clone volume with correct property set.
41 # STRATEGY:
42 # 1. Create a ZFS clone volume in the storage pool with -o option
43 # 2. Verify the volume created successfully
44 # 3. Verify the property is correctly set
47 verify_runnable "global"
49 function cleanup
51 if snapexists $SNAPFS1 ; then
52 log_must zfs destroy -Rf $SNAPFS1
56 log_onexit cleanup
58 log_assert "'zfs clone -o property=value -V size volume' can successfully" \
59 "create a ZFS clone volume with correct property set."
61 log_must zfs snapshot $SNAPFS1
62 typeset -i i=0
63 while (( $i < ${#RW_VOL_CLONE_PROP[*]} )); do
64 log_must zfs clone -o ${RW_VOL_CLONE_PROP[$i]} $SNAPFS1 $TESTPOOL/$TESTCLONE
65 datasetexists $TESTPOOL/$TESTCLONE || \
66 log_fail "zfs clone $TESTPOOL/$TESTCLONE fail."
67 propertycheck $TESTPOOL/$TESTCLONE ${RW_VOL_CLONE_PROP[i]} || \
68 log_fail "${RW_VOL_CLONE_PROP[i]} is failed to set."
69 log_must zfs destroy -f $TESTPOOL/$TESTCLONE
71 (( i = i + 1 ))
72 done
74 log_pass "'zfs clone -o property=value volume' can successfully" \
75 "create a ZFS clone volume with correct property set."