f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#!/usr/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#
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy# Copyright (c) 2013, 2016 by Delphix. All rights reserved.
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/include/libtest.shlib
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/cachefile/cachefile.cfg
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy. $STF_SUITE/tests/functional/cachefile/cachefile.kshlib
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# DESCRIPTION:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# Creating a pool with "cachefile" set doesn't update zpool.cache
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# STRATEGY:
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 1. Create a pool with the cachefile property set
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 2. Verify that the pool doesn't have an entry in zpool.cache
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 3. Verify the cachefile property is set
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 4. Create a pool without the cachefile property
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 5. Verify the cachefile property isn't set
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy# 6. Verify that zpool.cache contains an entry for the pool
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy#
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyfunction cleanup
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy{
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy typeset file
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if poolexists $TESTPOOL ; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy destroy_pool $TESTPOOL
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy for file in $CPATH1 $CPATH2 ; do
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if [[ -f $file ]] ; then
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must rm $file
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy done
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyverify_runnable "global"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_assert "Creating a pool with \"cachefile\" set doesn't update zpool.cache"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_onexit cleanup
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedyset -A opts "none" "false" "none" \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$CPATH" "true" "-" \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$CPATH1" "true" "$CPATH1" \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "$CPATH2" "true" "$CPATH2"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedytypeset -i i=0
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedywhile (( i < ${#opts[*]} )); do
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must zpool create -o cachefile=${opts[i]} $TESTPOOL $DISKS
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy case ${opts[((i+1))]} in
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy false) log_mustnot pool_in_cache $TESTPOOL
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ;;
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy true) log_must pool_in_cache $TESTPOOL ${opts[i]}
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy ;;
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy esac
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy PROP=$(get_pool_prop cachefile $TESTPOOL)
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy if [[ $PROP != ${opts[((i+2))]} ]]; then
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy log_fail "cachefile property not set as expected. " \
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy "Expect: ${opts[((i+2))]}, Current: $PROP"
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy fi
1d32ba663e202c24a5a1f2e5aef83fffb447cb7fJohn Wren Kennedy log_must zpool destroy $TESTPOOL
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy (( i = i + 3 ))
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedydone
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedy
f38cb554a534c6df738be3f4d23327e69888e634John Wren Kennedylog_pass "Creating a pool with \"cachefile\" set doesn't update zpool.cache"