1#!/usr/local/bin/ksh93 -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. $STF_SUITE/tests/hotspare/hotspare.kshlib 27 28################################################################################ 29# 30# __stc_assertion_start 31# 32# ID: hotspare_replace_001_neg 33# 34# DESCRIPTION: 35# 'zpool replace <pool> <odev> <ndev>...' should return fail if 36# - try to replace a basic vdev that already has an activated 37# hot spare. 38# - try to replace log device. 39# 40# STRATEGY: 41# 1. Create a storage pool 42# 2. Add hot spare devices to the pool 43# 3. For each scenario, try to replace the basic vdev with the given hot spares 44# 4. Verify the the replace operation get failed 45# 46# TESTABILITY: explicit 47# 48# TEST_AUTOMATION_LEVEL: automated 49# 50# CODING STATUS: COMPLETED (2006-06-07) 51# 52# __stc_assertion_end 53# 54############################################################################### 55 56verify_runnable "global" 57 58function cleanup 59{ 60 poolexists $TESTPOOL && \ 61 destroy_pool $TESTPOOL 62 63 partition_cleanup 64} 65 66function verify_assertion # dev 67{ 68 typeset dev=$1 69 70 for odev in ${pooldevs[@]} ; do 71 log_must $ZPOOL replace $TESTPOOL $odev $dev 72 log_mustnot $ZPOOL replace $TESTPOOL $odev $availdev 73 log_must $ZPOOL detach $TESTPOOL $dev 74 done 75 76 if [[ -n ${logdevs[@]} ]] ; then 77 for odev in ${logdevs[@]} ; do 78 log_mustnot $ZPOOL replace $TESTPOOL $odev $dev 79 done 80 fi 81} 82 83log_assert "'zpool replace <pool> <odev> <ndev>' should fail with inapplicable scenarios." 84 85log_onexit cleanup 86 87set_devs 88 89typeset dev_nonexist 90typeset availdev=${devarray[2]} 91dev_nonexist=${disk}sbad_slice_num 92 93for keyword in "${keywords[@]}" ; do 94 setup_hotspares "$keyword" "${sparedevs[@]} $availdev" 95 96 for odev in ${pooldevs[@]} ; do 97 for ndev in $dev_nonexist ; do 98 log_mustnot $ZPOOL replace $TESTPOOL $odev $ndev 99 done 100 done 101 102 iterate_over_hotspares verify_assertion 103 104 destroy_pool "$TESTPOOL" 105done 106 107log_pass "'zpool replace <pool> <odev> <ndev>' fail with inapplicable scenarios." 108