7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zpool_offline / zpool_offline_002_neg.ksh
blob14e0ab3fa75be2d3eef03bc4bb8674a5361afd9e
1 #!/bin/ksh -p
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
35 # DESCRIPTION:
36 # Executing 'zpool offline' command with bad options fails.
38 # STRATEGY:
39 # 1. Create an array of badly formed 'zpool offline' options.
40 # 2. Execute each element of the array.
41 # 3. Verify an error code is returned.
44 verify_runnable "global"
46 DISKLIST=$(get_disklist $TESTPOOL)
48 set -A args "" "-?" "-t fakepool" "-f fakepool" "-ev fakepool" "fakepool" \
49 "-t $TESTPOOL" "-t $TESTPOOL/$TESTFS" "-t $TESTPOOL/$TESTFS $DISKLIST" \
50 "-t $TESTPOOL/$TESTCTR" "-t $TESTPOOL/$TESTCTR/$TESTFS1" \
51 "-t $TESTPOOL/$TESTCTR $DISKLIST" "-t $TESTPOOL/$TESTVOL" \
52 "-t $TESTPOOL/$TESTCTR/$TESTFS1 $DISKLIST" \
53 "-t $TESTPOOL/$TESTVOL $DISKLIST" \
54 "-t $DISKLIST" \
55 "-f $TESTPOOL" "-f $TESTPOOL/$TESTFS" "-f $TESTPOOL/$TESTFS $DISKLIST" \
56 "-f $TESTPOOL/$TESTCTR" "-f $TESTPOOL/$TESTCTR/$TESTFS1" \
57 "-f $TESTPOOL/$TESTCTR $DISKLIST" "-f $TESTPOOL/$TESTVOL" \
58 "-f $TESTPOOL/$TESTCTR/$TESTFS1 $DISKLIST" \
59 "-f $TESTPOOL/$TESTVOL $DISKLIST" \
60 "-f $DISKLIST" \
61 "-ft $TESTPOOL" "-ft $TESTPOOL/$TESTFS" \
62 "-ft $TESTPOOL/$TESTFS $DISKLIST" \
63 "-ft $TESTPOOL/$TESTCTR" "-ft $TESTPOOL/$TESTCTR/$TESTFS1" \
64 "-ft $TESTPOOL/$TESTCTR $DISKLIST" "-ft $TESTPOOL/$TESTVOL" \
65 "-ft $TESTPOOL/$TESTCTR/$TESTFS1 $DISKLIST" \
66 "-ft $TESTPOOL/$TESTVOL $DISKLIST" \
67 "-ft $DISKLIST" \
68 "-tf $TESTPOOL" "-tf $TESTPOOL/$TESTFS" \
69 "-tf $TESTPOOL/$TESTFS $DISKLIST" \
70 "-tf $TESTPOOL/$TESTCTR" "-tf $TESTPOOL/$TESTCTR/$TESTFS1" \
71 "-tf $TESTPOOL/$TESTCTR $DISKLIST" "-tf $TESTPOOL/$TESTVOL" \
72 "-tf $TESTPOOL/$TESTCTR/$TESTFS1 $DISKLIST" \
73 "-tf $TESTPOOL/$TESTVOL $DISKLIST" \
74 "-tf $DISKLIST" \
75 "$TESTPOOL" "$TESTPOOL/$TESTFS" "$TESTPOOL/$TESTFS $DISKLIST" \
76 "$TESTPOOL/$TESTCTR" "$TESTPOOL/$TESTCTR/$TESTFS1" \
77 "$TESTPOOL/$TESTCTR $DISKLIST" "$TESTPOOL/$TESTVOL" \
78 "$TESTPOOL/$TESTCTR/$TESTFS1 $DISKLIST" "$TESTPOOL/$TESTVOL $DISKLIST" \
79 "$DISKLIST"
81 log_assert "Executing 'zpool offline' with bad options fails"
83 if [[ -z $DISKLIST ]]; then
84 log_fail "DISKLIST is empty."
87 typeset -i i=0
89 while [[ $i -lt ${#args[*]} ]]; do
91 log_mustnot zpool offline ${args[$i]}
93 (( i = i + 1 ))
94 done
96 log_pass "'zpool offline' command with bad options failed as expected."