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
45verify_runnable "both"
46
47function cleanup
48{
49	if datasetexists $TESTPOOL/$TESTFS1 ; then
50		log_must zfs destroy -f $TESTPOOL/$TESTFS1
51	fi
52}
53
54log_onexit cleanup
55
56set -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 zoned=ON" "-o ZoNed=off" "-o zoned=aaa" \
78    "-o snapdIR=hidden" "-o snapdir=VISible" "-o snapdir=aaa" \
79    "-o aclmode=DIScard" "-o aclmODE=groupmask" "-o aclmode=aaa" \
80    "-o aclinherit=deny" "-o aclinHerit=secure" "-o aclinherit=aaa" \
81    "-o type=volume" "-o type=snapshot" "-o type=filesystem" \
82    "-o type=volume -V $VOLSIZE" "-o type=snapshot -V $VOLSIZE" \
83    "-o type=filesystem -V $VOLSIZE" \
84    "-o creation=aaa" "-o creation=aaa -V $VOLSIZE" \
85    "-o used=10K" "-o used=10K -V $VOLSIZE" \
86    "-o available=10K" "-o available=10K -V $VOLSIZE" \
87    "-o referenced=10K" "-o referenced=10K -V $VOLSIZE" \
88    "-o compressratio=1.00x" "-o compressratio=1.00x -V $VOLSIZE" \
89    "-o version=0" "-o version=1.234" "-o version=10K" "-o version=-1" \
90    "-o version=aaa" "-o version=999"
91
92log_assert "'zfs create' should return an error with badly-formed parameters."
93
94typeset -i i=0
95while [[ $i -lt ${#args[*]} ]]; do
96	log_mustnot zfs create ${args[i]} $TESTPOOL/$TESTFS1
97	log_mustnot zfs create -p ${args[i]} $TESTPOOL/$TESTFS1
98	((i = i + 1))
99done
100
101log_pass "'zfs create' with badly formed parameters failed as expected."
102