]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_003_neg.ksh
Add the ZFS Test Suite
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zfs_rollback / zfs_rollback_003_neg.ksh
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 . $STF_SUITE/include/libtest.shlib
29 . $STF_SUITE/tests/functional/cli_root/zfs_rollback/zfs_rollback_common.kshlib
30
31 #
32 # DESCRIPTION:
33 # Seperately verify 'zfs rollback ''|-f|-r|-rf|-R|-rR will fail in
34 # different conditions.
35 #
36 # STRATEGY:
37 # 1. Create pool and file system
38 # 2. Create 'snap' and 'snap1' of this file system.
39 # 3. Run 'zfs rollback ""|-f <snap>' and it should fail.
40 # 4. Create 'clone1' based on 'snap1'.
41 # 5. Run 'zfs rollback -r|-rf <snap>' and it should fail.
42 #
43
44 verify_runnable "both"
45
46 function cleanup
47 {
48 $PKILL ${DD##*/}
49 for snap in $FSSNAP0 $FSSNAP1 $FSSNAP2; do
50 if snapexists $snap; then
51 log_must $ZFS destroy -Rf $snap
52 fi
53 done
54 }
55
56 log_assert "Seperately verify 'zfs rollback ''|-f|-r|-rf will fail in " \
57 "different conditions."
58 log_onexit cleanup
59
60 # Create snapshot1 and snapshot2 for this file system.
61 #
62 create_snapshot $TESTPOOL/$TESTFS $TESTSNAP
63 create_snapshot $TESTPOOL/$TESTFS $TESTSNAP1
64
65 # Run 'zfs rollback ""|-f <snap>' and it should fail.
66 #
67 log_mustnot $ZFS rollback $TESTPOOL/$TESTFS@$TESTSNAP
68 log_mustnot $ZFS rollback -f $TESTPOOL/$TESTFS@$TESTSNAP
69
70 # Create 'clone1' based on 'snap1'.
71 #
72 create_clone $TESTPOOL/$TESTFS@$TESTSNAP1 $TESTPOOL/$TESTCLONE1
73
74 # Run 'zfs rollback -r|-rf <snap>' and it should fail.
75 #
76 log_mustnot $ZFS rollback -r $TESTPOOL/$TESTFS@$TESTSNAP
77 log_mustnot $ZFS rollback -rf $TESTPOOL/$TESTFS@$TESTSNAP
78
79 log_pass "zfs rollback ''|-f|-r|-rf will fail in different conditions " \
80 "passed."