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) 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		log_must check_state $TESTPOOL $disk "online"
59
60	done
61}
62
63log_assert "Executing 'zpool offline' with correct options succeeds"
64
65log_onexit cleanup
66
67if [[ -z $DISKLIST ]]; then
68	log_fail "DISKLIST is empty."
69fi
70
71typeset -i i=0
72typeset -i j=1
73
74for disk in $DISKLIST; do
75	i=0
76	while [[ $i -lt ${#args[*]} ]]; do
77		if (( j < num )) ; then
78			log_must zpool offline ${args[$i]} $TESTPOOL $disk
79			log_must check_state $TESTPOOL $disk "offline"
80		else
81			log_mustnot zpool offline ${args[$i]} $TESTPOOL $disk
82			log_must check_state $TESTPOOL $disk "online"
83		fi
84
85		(( i = i + 1 ))
86	done
87	(( j = j + 1 ))
88done
89
90log_note "Issuing repeated 'zpool offline' commands succeeds."
91
92typeset -i iters=20
93typeset -i index=0
94
95for disk in $DISKLIST; do
96        i=0
97        while [[ $i -lt $iters ]]; do
98		index=`expr $RANDOM % ${#args[*]}`
99                log_must zpool offline ${args[$index]} $TESTPOOL $disk
100                log_must check_state $TESTPOOL $disk "offline"
101
102                (( i = i + 1 ))
103        done
104
105	log_must zpool online $TESTPOOL $disk
106	log_must check_state $TESTPOOL $disk "online"
107done
108
109log_pass "'zpool offline -f' succeeded"
110