comparison usr/src/test/zfs-tests/tests/functional/cli_root/zfs_rollback/zfs_rollback_004_neg.ksh @ 13899:0bcf78798346

3311 Want a test framework for arbitrary OS unit tests 3312 Add a testrunner package for OS unit tests 3313 Add a testrunner package to convert ZFS tests from STF Reviewed by: Matt Ahrens <matthew.ahrens@delphix.com> Reviewed by: Will Guyette <will.guyette@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Henrik Mattson <henrik.mattson@delphix.com> Reviewed by: Sonu Pillai <sonu.pillai@delphix.com> Reviewed by: Christopher Siden <chris.siden@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Richard Lowe <richlowe@richlowe.net>
author John Wren Kennedy <john.kennedy@delphix.com>
date Wed, 05 Dec 2012 22:04:50 -0500
parents
children
comparison
equal deleted inserted replaced
13898:7f822b09519b 13899:0bcf78798346
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 . $STF_SUITE/tests/functional/cli_root/zfs_rollback/zfs_rollback_common.kshlib
30
31 #
32 # DESCRIPTION:
33 # 'zfs rollback' should fail when passing invalid options, too many
34 # arguments,non-snapshot datasets or missing datasets
35 #
36 # STRATEGY:
37 # 1. Create an array of invalid options
38 # 2. Execute 'zfs rollback' with invalid options, too many arguments
39 # or missing datasets
40 # 3. Verify 'zfs rollback' return with errors
41 #
42
43 verify_runnable "both"
44
45 function cleanup
46 {
47 typeset ds
48
49 for ds in $TESTPOOL $TESTPOOL/$TESTFS $TESTPOOL/$TESTVOL; do
50 if snapexists ${ds}@$TESTSNAP; then
51 log_must $ZFS destroy ${ds}@$TESTSNAP
52 fi
53 done
54 }
55
56 log_assert "'zfs rollback' should fail with bad options,too many arguments," \
57 "non-snapshot datasets or missing datasets."
58 log_onexit cleanup
59
60 set -A badopts "r" "R" "f" "-F" "-rF" "-RF" "-fF" "-?" "-*" "-blah" "-1" "-2"
61
62 for ds in $TESTPOOL $TESTPOOL/$TESTFS $TESTPOOL/$TESTVOL; do
63 log_must $ZFS snapshot ${ds}@$TESTSNAP
64 done
65
66 for ds in $TESTPOOL $TESTPOOL/$TESTFS $TESTPOOL/$TESTVOL; do
67 for opt in "" "-r" "-R" "-f" "-rR" "-rf" "-rRf"; do
68 log_mustnot eval "$ZFS rollback $opt $ds >/dev/null 2>&1"
69 log_mustnot eval "$ZFS rollback $opt ${ds}@$TESTSNAP \
70 ${ds}@$TESTSNAP >/dev/null 2>&1"
71 log_mustnot eval "$ZFS rollback $opt >/dev/null 2>&1"
72 # zfs rollback should fail with non-existen snapshot
73 log_mustnot eval "$ZFS rollback $opt ${ds}@nosnap >/dev/null 2>&1"
74 done
75
76 for badopt in ${badopts[@]}; do
77 log_mustnot eval "$ZFS rollback $badopt ${ds}@$TESTSNAP \
78 >/dev/null 2>&1"
79 done
80 done
81
82 log_pass "'zfs rollback' fails as expected with illegal arguments."