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 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/include/libtest.shlib
33. $STF_SUITE/tests/functional/cli_root/zfs_rollback/zfs_rollback_common.kshlib
34
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
48verify_runnable "both"
49
50function cleanup
51{
52	pkill ${DD##*/}
53	for snap in $FSSNAP0 $FSSNAP1 $FSSNAP2; do
54		snapexists $snap && destroy_dataset $snap -Rf
55	done
56}
57
58log_assert "Separately verify 'zfs rollback ''|-f|-r|-rf will fail in " \
59	"different conditions."
60log_onexit cleanup
61
62# Create snapshot1 and snapshot2 for this file system.
63#
64create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
65create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1
66
67# Run 'zfs rollback ""|-f <snap>' and it should fail.
68#
69log_mustnot zfs rollback $TESTPOOL/$TESTFS@$TESTSNAP
70log_mustnot zfs rollback -f $TESTPOOL/$TESTFS@$TESTSNAP
71
72# Create 'clone1' based on 'snap1'.
73#
74create_clone $TESTPOOL/$TESTFS@$TESTSNAP1 $TESTPOOL/$TESTCLONE1
75
76# Run 'zfs rollback -r|-rf <snap>' and it should fail.
77#
78log_mustnot zfs rollback -r $TESTPOOL/$TESTFS@$TESTSNAP
79log_mustnot zfs rollback -rf $TESTPOOL/$TESTFS@$TESTSNAP
80
81log_pass "zfs rollback ''|-f|-r|-rf will fail in different conditions " \
82	"passed."
83