cache_010_neg.ksh revision f38cb554a534c6df738be3f4d23327e69888e634
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#!/bin/ksh -p
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER START
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# The contents of this file are subject to the terms of the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Common Development and Distribution License (the "License").
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You may not use this file except in compliance with the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# or http://www.opensolaris.org/os/licensing.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# See the License for the specific language governing permissions
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# and limitations under the License.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# When distributing Covered Code, include this CDDL HEADER in each
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# If applicable, add the following below this CDDL HEADER, with the
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# fields enclosed by brackets "[]" replaced with your own identifying
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# information: Portions Copyright [yyyy] [name of copyright owner]
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# CDDL HEADER END
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Use is subject to license terms.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Copyright (c) 2013 by Delphix. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/cache/cache.cfg
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/cache/cache.kshlib
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# DESCRIPTION:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Verify cache device must be a block device.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# STRATEGY:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 1. Create a pool
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 2. Add different object as cache
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 3. Verify character devices and files fail
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyverify_runnable "global"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfunction cleanup_testenv
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy{
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy cleanup
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if [[ -n $lofidev ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must $LOFIADM -d $lofidev
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_assert "Cache device can only be block devices."
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_onexit cleanup_testenv
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren KennedyTESTVOL=testvol1$$
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedydsk1=${DISKS%% *}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must $ZPOOL create $TESTPOOL ${DISKS#$dsk1}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Add nomal /dev/rdsk device
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_mustnot $ZPOOL add $TESTPOOL cache /dev/rdsk/${dsk1}s0
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#log_must verify_cache_device $TESTPOOL $dsk1 'ONLINE'
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Add nomal file
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_mustnot $ZPOOL add $TESTPOOL cache $VDEV2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Add /dev/rlofi device
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylofidev=${VDEV2%% *}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must $LOFIADM -a $lofidev
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylofidev=$($LOFIADM $lofidev)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_mustnot $ZPOOL add $TESTPOOL cache "/dev/rlofi/${lofidev#/dev/lofi/}"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyif [[ -n $lofidev ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_must $LOFIADM -d $lofidev
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy lofidev=""
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Add /dev/zvol/rdsk device
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must $ZPOOL create $TESTPOOL2 $VDEV2
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_must $ZFS create -V $SIZE $TESTPOOL2/$TESTVOL
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_mustnot $ZPOOL add $TESTPOOL cache /dev/zvol/rdsk/$TESTPOOL2/$TESTVOL
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_pass "Cache device can only be block devices."