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 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 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2014, 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/include/libtest.shlib
33. $STF_SUITE/tests/functional/cli_root/zpool_add/zpool_add.kshlib
34
35#
36# DESCRIPTION:
37#	'zpool add <pool> <vdev> ...' can successfully add the specified
38# devices to the given pool
39#
40# STRATEGY:
41#	1. Create a storage pool
42#	2. Add spare devices to the pool
43#	3. Verify the devices are added to the pool successfully
44#
45
46verify_runnable "global"
47
48function cleanup
49{
50	poolexists $TESTPOOL && destroy_pool $TESTPOOL
51	rm -f $disk0 $disk1
52}
53
54log_assert "'zpool add <pool> <vdev> ...' can add devices to the pool."
55
56log_onexit cleanup
57
58set -A keywords "" "mirror" "raidz" "raidz1" "draid:1s" "draid1:1s" "spare"
59
60pooldevs="${DISK0} \
61	\"${DISK0} ${DISK1}\" \
62	\"${DISK0} ${DISK1} ${DISK2}\""
63mirrordevs="\"${DISK0} ${DISK1}\""
64raidzdevs="\"${DISK0} ${DISK1}\""
65draiddevs="\"${DISK0} ${DISK1} ${DISK2}\""
66
67disk0=$TEST_BASE_DIR/disk0
68disk1=$TEST_BASE_DIR/disk1
69disk2=$TEST_BASE_DIR/disk2
70truncate -s $MINVDEVSIZE $disk0 $disk1 $disk2
71
72typeset -i i=0
73typeset vdev
74eval set -A poolarray $pooldevs
75eval set -A mirrorarray $mirrordevs
76eval set -A raidzarray $raidzdevs
77eval set -A draidarray $draiddevs
78
79while (( $i < ${#keywords[*]} )); do
80
81        case ${keywords[i]} in
82        ""|spare)
83		for vdev in "${poolarray[@]}"; do
84			create_pool "$TESTPOOL" "$disk0"
85			log_must poolexists "$TESTPOOL"
86			log_must zpool add -f "$TESTPOOL" ${keywords[i]} $vdev
87			log_must vdevs_in_pool "$TESTPOOL" "$vdev"
88			destroy_pool "$TESTPOOL"
89		done
90
91		;;
92        mirror)
93		for vdev in "${mirrorarray[@]}"; do
94			create_pool "$TESTPOOL" "${keywords[i]}" \
95				"$disk0" "$disk1"
96			log_must poolexists "$TESTPOOL"
97			log_must zpool add "$TESTPOOL" ${keywords[i]} $vdev
98			log_must vdevs_in_pool "$TESTPOOL" "$vdev"
99			destroy_pool "$TESTPOOL"
100		done
101
102		;;
103        raidz|raidz1)
104		for vdev in "${raidzarray[@]}"; do
105			create_pool "$TESTPOOL" "${keywords[i]}" \
106				"$disk0" "$disk1"
107			log_must poolexists "$TESTPOOL"
108			log_must zpool add "$TESTPOOL" ${keywords[i]} $vdev
109			log_must vdevs_in_pool "$TESTPOOL" "$vdev"
110			destroy_pool "$TESTPOOL"
111		done
112
113		;;
114        draid:1s|draid1:1s)
115		for vdev in "${draidarray[@]}"; do
116			create_pool "$TESTPOOL" "${keywords[i]}" \
117				"$disk0" "$disk1" "$disk2"
118			log_must poolexists "$TESTPOOL"
119			log_must zpool add "$TESTPOOL" ${keywords[i]} $vdev
120			log_must vdevs_in_pool "$TESTPOOL" "$vdev"
121			log_must vdevs_in_pool "$TESTPOOL" "draid1-0-0"
122			log_must vdevs_in_pool "$TESTPOOL" "draid1-1-0"
123			destroy_pool "$TESTPOOL"
124		done
125
126		;;
127        esac
128
129        (( i = i+1 ))
130done
131
132log_pass "'zpool add <pool> <vdev> ...' executes successfully"
133