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