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_004_pos.ksh
blob9773286ff45149253d3676ddb4da19e9a7d026d1
1 #!/usr/bin/ksh
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 2008 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/tests/functional/cli_root/zpool_create/zpool_create.shlib
35 # DESCRIPTION:
36 # Create a storage pool with many file based vdevs.
38 # STRATEGY:
39 # 1. Create assigned number of files in ZFS filesystem as vdevs.
40 # 2. Creating a new pool based on the vdevs should work.
41 # 3. Creating a pool with a file based vdev that is too small should fail.
44 verify_runnable "global"
46 function cleanup
48 typeset pool=""
50 poolexists $TESTPOOL1 && destroy_pool $TESTPOOL1
51 poolexists $TESTPOOL && destroy_pool $TESTPOOL
53 [[ -d $TESTDIR ]] && log_must rm -rf $TESTDIR
54 partition_disk $SIZE $disk 6
57 log_assert "Storage pools with 16 file based vdevs can be created."
58 log_onexit cleanup
60 disk=${DISKS%% *}
61 create_pool $TESTPOOL $disk
62 log_must zfs create -o mountpoint=$TESTDIR $TESTPOOL/$TESTFS
64 vdevs_list=$(echo $TESTDIR/file.{01..16})
65 log_must mkfile $MINVDEVSIZE $vdevs_list
67 create_pool "$TESTPOOL1" $vdevs_list
68 log_must vdevs_in_pool "$TESTPOOL1" "$vdevs_list"
70 if poolexists $TESTPOOL1; then
71 destroy_pool $TESTPOOL1
72 else
73 log_fail "Creating pool with large numbers of file-vdevs failed."
76 log_must mkfile 32m $TESTDIR/broken_file
77 vdevs_list="$vdevs_list $TESTDIR/broken_file"
78 log_mustnot zpool create -f $TESTPOOL1 $vdevs_list
80 log_pass "Storage pools with many file based vdevs can be created."