xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/cli_root/zpool_add/zpool_add_005_pos.ksh (revision 2f7f7a62d7a3e8a2e75eb88b95bc65871b6b90cb)
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 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 2009 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27
28#
29# Copyright (c) 2012, 2015 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' should return fail if
38#	1. vdev is part of an active pool
39#	2. vdev is currently mounted
40#	3. vdev is in /etc/vfstab
41#	3. vdev is specified as the dedicated dump device
42#
43# STRATEGY:
44#	1. Create case scenarios
45#	2. For each scenario, try to add the device to the pool
46#	3. Verify the add operation get failed
47#
48
49verify_runnable "global"
50
51function cleanup
52{
53	poolexists "$TESTPOOL" && \
54		destroy_pool "$TESTPOOL"
55	poolexists "$TESTPOOL1" && \
56		destroy_pool "$TESTPOOL1"
57
58	if [[ -n $saved_dump_dev ]]; then
59		log_must eval "$DUMPADM -u -d $saved_dump_dev > /dev/null"
60	fi
61
62	partition_cleanup
63}
64
65log_assert "'zpool add' should fail with inapplicable scenarios."
66
67log_onexit cleanup
68
69mnttab_dev=$(find_mnttab_dev)
70vfstab_dev=$(find_vfstab_dev)
71saved_dump_dev=$(save_dump_dev)
72dump_dev=${disk}s${SLICE3}
73
74create_pool "$TESTPOOL" "${disk}s${SLICE0}"
75log_must poolexists "$TESTPOOL"
76
77create_pool "$TESTPOOL1" "${disk}s${SLICE1}"
78log_must poolexists "$TESTPOOL1"
79
80unset NOINUSE_CHECK
81log_mustnot $ZPOOL add -f "$TESTPOOL" ${disk}s${SLICE1}
82log_mustnot $ZPOOL add -f "$TESTPOOL" $mnttab_dev
83log_mustnot $ZPOOL add -f "$TESTPOOL" $vfstab_dev
84
85log_must $ECHO "y" | $NEWFS /dev/dsk/$dump_dev > /dev/null 2>&1
86log_must $DUMPADM -u -d /dev/dsk/$dump_dev > /dev/null
87log_mustnot $ZPOOL add -f "$TESTPOOL" $dump_dev
88
89log_pass "'zpool add' should fail with inapplicable scenarios."
90