7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zpool_create / zpool_create_010_neg.ksh
blob165939786d405ece6b0ce6a473826c8e8d688922
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) 2012, 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zpool_create/zpool_create.shlib
36 # DESCRIPTION:
37 # 'zpool create' should return an error with VDEVs of size SPA_MINDEVSIZE
39 # STRATEGY:
40 # 1. Create an array of parameters
41 # 2. For each parameter in the array, execute 'zpool create'
42 # 3. Verify an error is returned.
45 log_assert "'zpool create' should return an error with VDEVs SPA_MINDEVSIZE"
47 verify_runnable "global"
49 function cleanup
51 poolexists $TOOSMALL && destroy_pool $TOOSMALL
52 poolexists $TESTPOOL1 && destroy_pool $TESTPOOL1
54 poolexists $TESTPOOL && destroy_pool $TESTPOOL
56 [[ -d $TESTDIR ]] && rm -rf $TESTDIR
58 partition_disk $SIZE $disk 6
60 log_onexit cleanup
62 if [[ -n $DISK ]]; then
63 disk=$DISK
64 else
65 disk=$DISK0
68 create_pool $TESTPOOL $disk
69 log_must zfs create $TESTPOOL/$TESTFS
70 log_must zfs set mountpoint=$TESTDIR $TESTPOOL/$TESTFS
72 typeset -l devsize=$(($SPA_MINDEVSIZE - 1024 * 1024))
73 for files in $TESTDIR/file1 $TESTDIR/file2
75 log_must mkfile $devsize $files
76 done
78 set -A args \
79 "$TOOSMALL $TESTDIR/file1" "$TESTPOOL1 $TESTDIR/file1 $TESTDIR/file2" \
80 "$TOOSMALL mirror $TESTDIR/file1 $TESTDIR/file2" \
81 "$TOOSMALL raidz $TESTDIR/file1 $TESTDIR/file2"
83 typeset -i i=0
84 while [[ $i -lt ${#args[*]} ]]; do
85 log_mustnot zpool create ${args[i]}
86 ((i = i + 1))
87 done
89 log_pass "'zpool create' with badly formed parameters failed as expected."