1#!/usr/local/bin/ksh93 -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. $STF_SUITE/include/libtest.kshlib
27
28################################################################################
29#
30# __stc_assertion_start
31#
32# ID: zfs_create_008_neg
33#
34# DESCRIPTION:
35# 'zfs create' should return an error with badly formed parameters.
36#
37# STRATEGY:
38# 1. Create an array of parameters
39# 2. For each parameter in the array, execute 'zfs create'
40# 3. Verify an error is returned.
41#
42# TESTABILITY: explicit
43#
44# TEST_AUTOMATION_LEVEL: automated
45#
46# CODING_STATUS: COMPLETED (2005-07-04)
47#
48# __stc_assertion_end
49#
50################################################################################
51
52verify_runnable "both"
53
54function cleanup
55{
56	if datasetexists $TESTPOOL/$TESTFS1 ; then
57		log_must $ZFS destroy -f $TESTPOOL/$TESTFS1
58	fi
59}
60
61log_onexit cleanup
62
63set -A args "ab" "-?" "-cV" "-Vc" "-c -V" "c" "V" "--c" "-e" "-s" \
64    "-blah" "-cV 12k" "-s -cV 1P" "-sc" "-Vs 5g" "-o" "--o" "-O" "--O" \
65    "-o QuOta=none" "-o quota=non" "-o quota=abcd" "-o quota=0" "-o quota=" \
66    "-o ResErVaTi0n=none" "-o reserV=none" "-o reservation=abcd" "-o reserv=" \
67    "-o recorDSize=64k" "-o recordsize=256K" "-o recordsize=256" \
68    "-o recsize=" "-o recsize=zero" "-o recordsize=0" \
69    "-o mountPoint=/tmp/tmpfile${TESTCASE_ID}" "-o mountpoint=non0" "-o mountpoint=" \
70    "-o mountpoint=LEGACY" "-o mounpoint=none" \
71    "-o sharenfs=ON" "-o ShareNFS=off" "-o sharenfs=sss" \
72    "-o checkSUM=on" "-o checksum=SHA256" "-o chsum=off" "-o checksum=aaa" \
73    "-o checkSUM=on -V $VOLSIZE" "-o checksum=SHA256 -V $VOLSIZE" \
74    "-o chsum=off -V $VOLSIZE" "-o checksum=aaa -V $VOLSIZE" \
75    "-o compression=of" "-o ComPression=lzjb" "-o compress=ON" "-o compress=a" \
76    "-o compression=of -V $VOLSIZE" "-o ComPression=lzjb -V $VOLSIZE" \
77    "-o compress=ON -V $VOLSIZE" "-o compress=a -V $VOLSIZE" \
78    "-o atime=ON" "-o ATime=off" "-o atime=bbb" \
79    "-o deviCes=on" "-o devices=OFF" "-o devices=aaa" \
80    "-o exec=ON" "-o EXec=off" "-o exec=aaa" \
81    "-o readonly=ON" "-o reADOnly=off" "-o rdonly=OFF" "-o rdonly=aaa" \
82    "-o readonly=ON -V $VOLSIZE" "-o reADOnly=off -V $VOLSIZE" \
83    "-o rdonly=OFF -V $VOLSIZE" "-o rdonly=aaa -V $VOLSIZE" \
84    "-o zoned=ON" "-o ZoNed=off" "-o zoned=aaa" \
85    "-o snapdIR=hidden" "-o snapdir=VISible" "-o snapdir=aaa" \
86    "-o aclmode=DIScard" "-o aclmODE=groupmask" "-o aclmode=aaa" \
87    "-o aclinherit=deny" "-o aclinHerit=secure" "-o aclinherit=aaa" \
88    "-o type=volume" "-o type=snapshot" "-o type=filesystem" \
89    "-o type=volume -V $VOLSIZE" "-o type=snapshot -V $VOLSIZE" \
90    "-o type=filesystem -V $VOLSIZE" \
91    "-o creation=aaa" "-o creation=aaa -V $VOLSIZE" \
92    "-o used=10K" "-o used=10K -V $VOLSIZE" \
93    "-o available=10K" "-o available=10K -V $VOLSIZE" \
94    "-o referenced=10K" "-o referenced=10K -V $VOLSIZE" \
95    "-o compressratio=1.00x" "-o compressratio=1.00x -V $VOLSIZE" \
96    "-o version=0" "-o version=1.234" "-o version=10K" "-o version=-1" \
97    "-o version=aaa" "-o version=999"
98
99log_assert "'zfs create' should return an error with badly-formed parameters."
100
101typeset -i i=0
102while [[ $i -lt ${#args[*]} ]]; do
103	log_mustnot $ZFS create ${args[i]} $TESTPOOL/$TESTFS1
104	log_mustnot $ZFS create -p ${args[i]} $TESTPOOL/$TESTFS1
105	((i = i + 1))
106done
107
108log_pass "'zfs create' with badly formed parameters failed as expected."
109