1#!/bin/ksh
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 https://opensource.org/licenses/CDDL-1.0.
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 2008 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/tests/functional/cli_root/zpool_create/zpool_create.shlib
33
34#
35# DESCRIPTION:
36# Create a storage pool with many file based vdevs.
37#
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.
42#
43
44verify_runnable "global"
45
46function cleanup
47{
48	poolexists $TESTPOOL1 && destroy_pool $TESTPOOL1
49	poolexists $TESTPOOL && destroy_pool $TESTPOOL
50
51	rm -rf $TESTDIR
52}
53
54log_assert "Storage pools with 16 file based vdevs can be created."
55log_onexit cleanup
56
57create_pool $TESTPOOL $DISK0
58log_must zfs create -o mountpoint=$TESTDIR $TESTPOOL/$TESTFS
59
60vdevs_list=$(echo $TESTDIR/file.{01..16})
61log_must truncate -s $MINVDEVSIZE $vdevs_list
62
63create_pool $TESTPOOL1 $vdevs_list
64log_must vdevs_in_pool $TESTPOOL1 "$vdevs_list"
65
66if poolexists $TESTPOOL1; then
67	destroy_pool $TESTPOOL1
68else
69	log_fail "Creating pool with large numbers of file-vdevs failed."
70fi
71
72log_must mkfile 32m $TESTDIR/broken_file
73vdevs_list="$vdevs_list $TESTDIR/broken_file"
74log_mustnot zpool create -f $TESTPOOL1 $vdevs_list
75
76log_pass "Storage pools with many file based vdevs can be created."
77