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#	Seperately 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		if snapexists $snap; then
55			log_must zfs destroy -Rf $snap
56		fi
57	done
58}
59
60log_assert "Seperately verify 'zfs rollback ''|-f|-r|-rf will fail in " \
61	"different conditions."
62log_onexit cleanup
63
64# Create snapshot1 and snapshot2 for this file system.
65#
66create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
67create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1
68
69# Run 'zfs rollback ""|-f <snap>' and it should fail.
70#
71log_mustnot zfs rollback $TESTPOOL/$TESTFS@$TESTSNAP
72log_mustnot zfs rollback -f $TESTPOOL/$TESTFS@$TESTSNAP
73
74# Create 'clone1' based on 'snap1'.
75#
76create_clone $TESTPOOL/$TESTFS@$TESTSNAP1 $TESTPOOL/$TESTCLONE1
77
78# Run 'zfs rollback -r|-rf <snap>' and it should fail.
79#
80log_mustnot zfs rollback -r $TESTPOOL/$TESTFS@$TESTSNAP
81log_mustnot zfs rollback -rf $TESTPOOL/$TESTFS@$TESTSNAP
82
83log_pass "zfs rollback ''|-f|-r|-rf will fail in different conditions " \
84	"passed."
85