]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_008_neg.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / cli_root / zfs_create / zfs_create_008_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 2007 Sun Microsystems, Inc.  All rights reserved.
25 # Use is subject to license terms.
26 #
27
28 #
29 # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
30 #
31
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_create/zfs_create.cfg
34
35 #
36 # DESCRIPTION:
37 # 'zfs create' should return an error with badly formed parameters.
38 #
39 # STRATEGY:
40 # 1. Create an array of parameters
41 # 2. For each parameter in the array, execute 'zfs create'
42 # 3. Verify an error is returned.
43 #
44
45 verify_runnable "both"
46
47 function cleanup
48 {
49         if datasetexists $TESTPOOL/$TESTFS1 ; then
50                 log_must zfs destroy -f $TESTPOOL/$TESTFS1
51         fi
52 }
53
54 log_onexit cleanup
55
56 set -A args "ab" "-?" "-cV" "-Vc" "-c -V" "c" "V" "--c" "-e" "-s" \
57     "-blah" "-cV 12k" "-s -cV 1P" "-sc" "-Vs 5g" "-o" "--o" "-O" "--O" \
58     "-o QuOta=none" "-o quota=non" "-o quota=abcd" "-o quota=0" "-o quota=" \
59     "-o ResErVaTi0n=none" "-o reserV=none" "-o reservation=abcd" "-o reserv=" \
60     "-o recorDSize=64k" "-o recordsize=2048K" "-o recordsize=2M" \
61     "-o recordsize=256" "-o recsize=" "-o recsize=zero" "-o recordsize=0" \
62     "-o mountPoint=/tmp/tmpfile$$" "-o mountpoint=non0" "-o mountpoint=" \
63     "-o mountpoint=LEGACY" "-o mounpoint=none" \
64     "-o sharenfs=ON" "-o ShareNFS=off" "-o sharenfs=sss" \
65     "-o checkSUM=on" "-o checksum=SHA256" "-o chsum=off" "-o checksum=aaa" \
66     "-o checkSUM=on -V $VOLSIZE" "-o checksum=SHA256 -V $VOLSIZE" \
67     "-o chsum=off -V $VOLSIZE" "-o checksum=aaa -V $VOLSIZE" \
68     "-o compression=of" "-o ComPression=lzjb" "-o compress=ON" "-o compress=a" \
69     "-o compression=of -V $VOLSIZE" "-o ComPression=lzjb -V $VOLSIZE" \
70     "-o compress=ON -V $VOLSIZE" "-o compress=a -V $VOLSIZE" \
71     "-o atime=ON" "-o ATime=off" "-o atime=bbb" \
72     "-o deviCes=on" "-o devices=OFF" "-o devices=aaa" \
73     "-o exec=ON" "-o EXec=off" "-o exec=aaa" \
74     "-o readonly=ON" "-o reADOnly=off" "-o rdonly=OFF" "-o rdonly=aaa" \
75     "-o readonly=ON -V $VOLSIZE" "-o reADOnly=off -V $VOLSIZE" \
76     "-o rdonly=OFF -V $VOLSIZE" "-o rdonly=aaa -V $VOLSIZE" \
77     "-o snapdIR=hidden" "-o snapdir=VISible" "-o snapdir=aaa" \
78     "-o aclmode=DIScard" "-o aclmODE=groupmask" "-o aclmode=aaa" \
79     "-o aclinherit=deny" "-o aclinHerit=secure" "-o aclinherit=aaa" \
80     "-o type=volume" "-o type=snapshot" "-o type=filesystem" \
81     "-o type=volume -V $VOLSIZE" "-o type=snapshot -V $VOLSIZE" \
82     "-o type=filesystem -V $VOLSIZE" \
83     "-o creation=aaa" "-o creation=aaa -V $VOLSIZE" \
84     "-o used=10K" "-o used=10K -V $VOLSIZE" \
85     "-o available=10K" "-o available=10K -V $VOLSIZE" \
86     "-o referenced=10K" "-o referenced=10K -V $VOLSIZE" \
87     "-o compressratio=1.00x" "-o compressratio=1.00x -V $VOLSIZE" \
88     "-o version=0" "-o version=1.234" "-o version=10K" "-o version=-1" \
89     "-o version=aaa" "-o version=999"
90 if is_freebsd; then
91         args+=("-o jailed=ON" "-o JaiLed=off" "-o jailed=aaa")
92 else
93         args+=("-o zoned=ON" "-o ZoNed=off" "-o zoned=aaa")
94 fi
95
96 log_assert "'zfs create' should return an error with badly-formed parameters."
97
98 typeset -i i=0
99 while [[ $i -lt ${#args[*]} ]]; do
100         typeset arg=${args[i]}
101         if is_freebsd; then
102                 # FreeBSD does not strictly validate share options (yet).
103                 if [[ "$arg" == "-o sharenfs="* ]]; then
104                         ((i = i + 1))
105                         continue
106                 fi
107         fi
108         log_mustnot zfs create $arg $TESTPOOL/$TESTFS1
109         log_mustnot zfs create -p $arg $TESTPOOL/$TESTFS1
110         ((i = i + 1))
111 done
112
113 log_pass "'zfs create' with badly formed parameters failed as expected."