]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zpool_resilver/zpool_resilver_bad_args.ksh
9d973bec7874c88ab9897afcfccc86795cd33118
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_resilver / zpool_resilver_bad_args.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 (c) 2018 by Datto. All rights reserved.
25 #
26
27 . $STF_SUITE/include/libtest.shlib
28
29 #
30 # DESCRIPTION:
31 # A badly formed parameter passed to 'zpool resilver' should
32 # return an error.
33 #
34 # STRATEGY:
35 # 1. Create an array containing bad 'zpool reilver' parameters.
36 # 2. For each element, execute the sub-command.
37 # 3. Verify it returns an error.
38 #
39
40 verify_runnable "global"
41
42 set -A args "" "-?" "blah blah" "-%" "--?" "-*" "-=" \
43 "-a" "-b" "-c" "-d" "-e" "-f" "-g" "-h" "-i" "-j" "-k" "-l" \
44 "-m" "-n" "-o" "-p" "-q" "-r" "-s" "-t" "-u" "-v" "-w" "-x" "-y" "-z" \
45 "-A" "-B" "-C" "-D" "-E" "-F" "-G" "-H" "-I" "-J" "-K" "-L" \
46 "-M" "-N" "-O" "-P" "-Q" "-R" "-S" "-T" "-U" "-V" "-W" "-X" "-W" "-Z"
47
48
49 log_assert "Execute 'zpool resilver' using invalid parameters."
50
51 typeset -i i=0
52 while [[ $i -lt ${#args[*]} ]]; do
53 log_mustnot zpool resilver ${args[i]}
54
55 ((i = i + 1))
56 done
57
58 log_pass "Badly formed 'zpool resilver' parameters fail as expected."