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_002_pos.ksh
blob8e69a7adcc3d423f0331de4aea90906916222bb9
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
35 # DESCRIPTION:
36 # 'zfs clone -p' should work as expected
38 # STRATEGY:
39 # 1. prepare snapshots
40 # 2. make sure without -p option, 'zfs clone' will fail
41 # 3. with -p option, the clone can be created
42 # 4. run 'zfs clone -p' again, the exit code should be zero
45 verify_runnable "both"
47 function setup_all
49 log_note "Create snapshots and mount them..."
51 for snap in $SNAPFS $SNAPFS1 ; do
52 if ! snapexists $snap ; then
53 log_must zfs snapshot $snap
55 done
57 return 0
60 function cleanup_all
63 if datasetexists $TESTPOOL/notexist ; then
64 log_must zfs destroy -rRf $TESTPOOL/notexist
67 for snap in $SNAPFS $SNAPFS1 ; do
68 if snapexists $snap ; then
69 log_must zfs destroy -Rf $snap
71 done
73 return 0
76 log_assert "clone -p should work as expected."
77 log_onexit cleanup_all
79 setup_all
81 log_must verify_opt_p_ops "clone" "fs" $SNAPFS \
82 $TESTPOOL/notexist/new/clonefs$$
84 if is_global_zone ; then
85 log_must verify_opt_p_ops "clone" "vol" $SNAPFS1 \
86 $TESTPOOL/notexist/new/clonevol$$
89 log_pass "clone -p should work as expected."