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 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27# ident	"@(#)cache_010_neg.ksh	1.1	08/05/14 SMI"
28#
29
30. $STF_SUITE/tests/cache/cache.kshlib
31
32#################################################################################
33#
34# __stc_assertion_start
35#
36# ID: cache_010_neg
37#
38# DESCRIPTION:
39#	Verify cache device can only be disk or slice.
40#
41# STRATEGY:
42#	1. Create a pool
43#	2. Loop to add different object as cache
44#	3. Verify it fails
45#
46# TESTABILITY: explicit
47#
48# TEST_AUTOMATION_LEVEL: automated
49#
50# CODING_STATUS: COMPLETED (2008-04-24)
51#
52# __stc_assertion_end
53#
54################################################################################
55
56verify_runnable "global"
57
58function cleanup_testenv
59{
60	cleanup
61	if [[ -n $mdconfig_unit ]]; then
62		$MDCONFIG -d -u $mdconfig_unit
63	fi
64}
65
66log_assert "Cache device can only be disk or slice."
67log_onexit cleanup_testenv
68
69log_must $ZPOOL create $TESTPOOL $VDEV
70
71# Add nomal disk
72log_must $ZPOOL add $TESTPOOL cache ${LDEV}
73log_must verify_cache_device $TESTPOOL ${LDEV} 'ONLINE'
74# Add nomal file
75log_mustnot $ZPOOL add $TESTPOOL cache $VDEV2
76
77# Add md
78mdconfig_dev=${VDEV2%% *}
79mdconfig_unit=$($MDCONFIG $mdconfig_dev)
80log_note "$MDCONFIG $mdconfig_dev"
81if [[ $? -eq 0 ]]; then
82	log_note "$mdconfig_unit is created."
83else
84	log_fail "Failed to execute mdconfig."
85fi
86
87log_must $ZPOOL add $TESTPOOL cache $mdconfig_unit
88log_must verify_cache_device $TESTPOOL $mdconfig_unit 'ONLINE'
89log_must $ZPOOL destroy $TESTPOOL
90if [[ -n $mdconfig_unit ]]; then
91	log_must $MDCONFIG -d -u $mdconfig_unit
92	mdconfig_unit=""
93fi
94
95#Add zvol
96log_must $ZPOOL create $TESTPOOL2 $VDEV2
97log_must $ZFS create -V $SIZE $TESTPOOL2/$TESTVOL
98log_mustnot $ZPOOL add $TESTPOOL cache /dev/zvol/$TESTPOOL2/$TESTVOL
99
100log_pass "Cache device can only be disk or slice."
101