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