4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
28 # Copyright (c) 2013, 2016 by Delphix. All rights reserved.
31 . $STF_SUITE/include/libtest.shlib
35 if datasetexists $TESTPOOL ; then
36 log_must zpool destroy -f $TESTPOOL
38 if datasetexists $TESTPOOL2 ; then
39 log_must zpool destroy -f $TESTPOOL2
44 # Try zpool status/iostat for given pool
48 function display_status
53 zpool status -xv $pool > /dev/null 2>&1
56 zpool iostat > /dev/null 2>&1
59 typeset mntpnt=$(get_prop mountpoint $pool)
60 dd if=/dev/random of=$mntpnt/testfile.$$ &
63 zpool iostat -v 1 3 > /dev/null
72 # Verify the given cache device have correct type and status
79 function verify_cache_device
86 if [[ -z $pool || -z $device || -z $status ]]; then
87 log_fail "Usage: verify_cache_device <pool> <device> " \
92 # Get all the cache devices and status table like below
94 # mirror:/disks/d ONLINE mirror:/disks/e ONLINE stripe:/disks/f ONLINE
96 set -A dev_stat_tab $(zpool status -v $pool | nawk 'BEGIN {start=0} \
98 /\tmirror/ || /\tspares/ || /^$/ {start=0}
99 (start==1) && /\t (\/|[a-zA-Z])/ \
100 {print "stripe:" $1 " " $2}
101 (start==1) && /\t (\/|[a-zA-Z])/ \
102 {print "mirror:" $1 " " $2}
103 # When hotspare is replacing
104 (start==1) && /\t (\/|[a-zA-Z])/ \
105 {print "mirror:" $1 " " $2}'
110 while (( i < ${#dev_stat_tab[@]} )); do
111 typeset dev=${dev_stat_tab[$i]}
112 typeset stat=${dev_stat_tab[((i+1))]}
116 if [[ "$type" == 'mirror' ]]; then
117 log_note "Unexpected type: mirror"
120 if [[ $stat != $status ]]; then
121 log_note "Status($stat) " \
122 "!= Expected stat($status)"
129 if [[ -z "$type" || $type == 'stripe' ]]; then
130 log_note "Unexpected type: stripe"
133 if [[ $stat != $status ]]; then
134 log_note "Status($stat) " \
135 "!= Expected stat($status)"
145 log_note "Can not find device: $device"
149 function verify_cache_support
151 zpool upgrade -v | grep "Cache devices" > /dev/null 2>&1