xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zfs_promote/zfs_promote_005_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 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28. $STF_SUITE/include/libtest.shlib
29
30#
31# DESCRIPTION:
32#	The original fs was unmounted, 'zfs promote' still should succeed.
33#
34# STRATEGY:
35#	1. Create pool, fs and snapshot.
36#	2. Create clone of fs.
37#	3. Unmount fs, then verify 'zfs promote' clone still succeed.
38#
39
40verify_runnable "both"
41
42function cleanup
43{
44	if datasetexists $fssnap ; then
45		datasetexists $clone && log_must $ZFS destroy $clone
46		log_must $ZFS destroy $fssnap
47	fi
48	if datasetexists $clone ; then
49		log_must $ZFS promote $fs
50		log_must $ZFS destroy $clone
51		log_must $ZFS destroy $fssnap
52	fi
53}
54
55log_assert "The original fs was unmounted, 'zfs promote' still should succeed."
56log_onexit cleanup
57
58fs=$TESTPOOL/$TESTFS
59clone=$TESTPOOL/$TESTCLONE
60fssnap=$fs@fssnap
61
62log_must $ZFS snapshot $fssnap
63log_must $ZFS clone $fssnap $clone
64log_must $ZFS unmount $fs
65log_must $ZFS promote $clone
66log_must $ZFS unmount $clone
67log_must $ZFS promote $fs
68
69log_pass "Unmount original fs, 'zfs promote' passed."
70