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#
24# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26
27. $STF_SUITE/include/libtest.kshlib
28. $STF_SUITE/tests/cli_root/zfs_rollback/zfs_rollback_common.kshlib
29
30#################################################################################
31#
32# __stc_assertion_start
33#
34# ID: zfs_rollback_003_neg
35#
36# DESCRIPTION:
37#	Separately verify 'zfs rollback ''|-f|-r|-rf|-R|-rR will fail in
38#	different conditions.
39#
40# STRATEGY:
41#	1. Create pool and file system
42#	2. Create 'snap' and 'snap1' of this file system.
43#	3. Run 'zfs rollback ""|-f <snap>' and it should fail.
44#	4. Create 'clone1' based on 'snap1'.
45#	5. Run 'zfs rollback -r|-rf <snap>' and it should fail.
46#
47# TESTABILITY: explicit
48#
49# TEST_AUTOMATION_LEVEL: automated
50#
51# CODING_STATUS: COMPLETED (2005-07-20)
52#
53# __stc_assertion_end
54#
55################################################################################
56
57verify_runnable "both"
58
59function cleanup
60{
61	$PKILL ${DD##*/}
62	for snap in $FSSNAP0 $FSSNAP1 $FSSNAP2; do
63		if snapexists $snap; then
64			log_must $ZFS destroy -Rf $snap
65		fi
66	done
67}
68
69log_assert "Separately verify 'zfs rollback ''|-f|-r|-rf will fail in " \
70	"different conditions."
71log_onexit cleanup
72
73# Create snapshot1 and snapshot2 for this file system.
74#
75create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
76create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1
77
78# Run 'zfs rollback ""|-f <snap>' and it should fail.
79#
80log_mustnot $ZFS rollback $TESTPOOL/$TESTFS@$TESTSNAP
81log_mustnot $ZFS rollback -f $TESTPOOL/$TESTFS@$TESTSNAP
82
83# Create 'clone1' based on 'snap1'.
84#
85create_clone $TESTPOOL/$TESTFS@$TESTSNAP1 $TESTPOOL/$TESTCLONE1
86
87# Run 'zfs rollback -r|-rf <snap>' and it should fail.
88#
89log_mustnot $ZFS rollback -r $TESTPOOL/$TESTFS@$TESTSNAP
90log_mustnot $ZFS rollback -rf $TESTPOOL/$TESTFS@$TESTSNAP
91
92log_pass "zfs rollback ''|-f|-r|-rf will fail in different conditions " \
93	"passed."
94