xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_rename/zfs_rename_011_pos.ksh (revision b6805bf78d2bbbeeaea8909a05623587b42d58b3)
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. $STF_SUITE/include/libtest.shlib
28. $STF_SUITE/tests/functional/cli_root/zfs_rename/zfs_rename.kshlib
29
30#
31# DESCRIPTION
32#       'zfs rename -p' should work as expected
33#
34# STRATEGY:
35#	1. Make sure the upper level of $newdataset does not exist
36#       2. Make sure without -p option, 'zfs rename' will fail
37#       3. With -p option, rename works
38#
39
40verify_runnable "both"
41
42function additional_cleanup
43{
44	if datasetexists $TESTPOOL/notexist ; then
45		log_must $ZFS destroy -Rf $TESTPOOL/notexist
46	fi
47
48	if datasetexists $TESTPOOL/$TESTFS ; then
49		log_must $ZFS destroy -Rf $TESTPOOL/$TESTFS
50	fi
51	log_must $ZFS create $TESTPOOL/$TESTFS
52
53	if is_global_zone ; then
54		if datasetexists $TESTPOOL/$TESTVOL ; then
55			log_must $ZFS destroy -Rf $TESTPOOL/$TESTVOL
56		fi
57		log_must $ZFS create -V $VOLSIZE $TESTPOOL/$TESTVOL
58	fi
59}
60
61log_onexit additional_cleanup
62
63log_assert "'zfs rename -p' should work as expected"
64
65log_must verify_opt_p_ops "rename" "fs" "$TESTPOOL/$TESTFS" \
66	"$TESTPOOL/notexist/new/$TESTFS1"
67
68if is_global_zone; then
69	log_must verify_opt_p_ops "rename" "vol" "$TESTPOOL/$TESTVOL" \
70		"$TESTPOOL/notexist/new/$TESTVOL1"
71fi
72
73log_pass "'zfs rename -p' should work as expected"
74