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) 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/include/libtest.shlib
33
34#
35# DESCRIPTION:
36# Executing 'zpool offline' with valid parameters succeeds.
37#
38# STRATEGY:
39# 1. Create an array of correctly formed 'zpool offline' options
40# 2. Execute each element of the array.
41# 3. Verify use of each option is successful.
42
43verify_runnable "global"
44
45DISKLIST=$(get_disklist $TESTPOOL)
46set -A disks $DISKLIST
47typeset -i num=${#disks[*]}
48
49set -A args "" "-t"
50
51function cleanup
52{
53	#
54	# Ensure we don't leave disks in the offline state
55	#
56	for disk in $DISKLIST; do
57		log_must zpool online $TESTPOOL $disk
58		check_state $TESTPOOL $disk "online"
59		if [[ $? != 0 ]]; then
60			log_fail "Unable to online $disk"
61		fi
62
63	done
64}
65
66log_assert "Executing 'zpool offline' with correct options succeeds"
67
68log_onexit cleanup
69
70if [[ -z $DISKLIST ]]; then
71	log_fail "DISKLIST is empty."
72fi
73
74typeset -i i=0
75typeset -i j=1
76
77for disk in $DISKLIST; do
78	i=0
79	while [[ $i -lt ${#args[*]} ]]; do
80		if (( j < num )) ; then
81			log_must zpool offline ${args[$i]} $TESTPOOL $disk
82			check_state $TESTPOOL $disk "offline"
83			if [[ $? != 0 ]]; then
84				log_fail "$disk of $TESTPOOL did not match offline state"
85			fi
86		else
87			log_mustnot zpool offline ${args[$i]} $TESTPOOL $disk
88			check_state $TESTPOOL $disk "online"
89			if [[ $? != 0 ]]; then
90				log_fail "$disk of $TESTPOOL did not match online state"
91			fi
92		fi
93
94		(( i = i + 1 ))
95	done
96	(( j = j + 1 ))
97done
98
99log_note "Issuing repeated 'zpool offline' commands succeeds."
100
101typeset -i iters=20
102typeset -i index=0
103
104for disk in $DISKLIST; do
105        i=0
106        while [[ $i -lt $iters ]]; do
107		index=`expr $RANDOM % ${#args[*]}`
108                log_must zpool offline ${args[$index]} $TESTPOOL $disk
109                check_state $TESTPOOL $disk "offline"
110                if [[ $? != 0 ]]; then
111                        log_fail "$disk of $TESTPOOL is not offline."
112                fi
113
114                (( i = i + 1 ))
115        done
116
117	log_must zpool online $TESTPOOL $disk
118	check_state $TESTPOOL $disk "online"
119	if [[ $? != 0 ]]; then
120		log_fail "$disk of $TESTPOOL did not match online state"
121	fi
122done
123
124log_pass "'zpool offline -f' succeeded"
125