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/include/libtest.kshlib
28. $STF_SUITE/tests/cachefile/cachefile.kshlib
29
30################################################################################
31#
32# __stc_assertion_start
33#
34# ID: cachefile_003_pos
35#
36# DESCRIPTION:
37#
38# Setting altroot=<path> and cachefile=$CPATH for zpool create is succeed
39#
40# STRATEGY:
41# 1. Attempt to create a pool with -o altroot=<path> -o cachefile=<value>
42# 2. Verify the command succeed
43#
44#
45# TESTABILITY: explicit
46#
47# TEST_AUTOMATION_LEVEL: automated
48#
49# CODING_STATUS: COMPLETED (2007-09-10)
50#
51# __stc_assertion_end
52#
53################################################################################
54
55TESTDIR=/altdir.${TESTCASE_ID}
56
57function cleanup
58{
59	typeset file
60
61	destroy_pool $TESTPOOL
62
63        for file in $CPATH1 $CPATH2 ; do
64                if [[ -f $file ]] ; then
65                        log_must $RM $file
66                fi
67        done
68
69	if [ -d $TESTDIR ]
70	then
71		$RMDIR $TESTDIR
72	fi
73}
74
75verify_runnable "global"
76
77log_assert "Setting altroot=path and cachefile=$CPATH for zpool create succeed."
78log_onexit cleanup
79
80typeset -i i=0
81
82CPATHARG="-"
83set -A opts "none" "none" \
84	"$CPATH" "$CPATHARG" \
85	"$CPATH1" "$CPATH1" \
86	"$CPATH2" "$CPATH2"
87
88
89while (( i < ${#opts[*]} )); do
90	log_must $ZPOOL create -o altroot=$TESTDIR -o cachefile=${opts[i]} \
91		$TESTPOOL $DISKS
92	if [[ ${opts[i]} != none ]]; then
93		log_must pool_in_cache $TESTPOOL ${opts[i]}
94	else
95		log_mustnot pool_in_cache $TESTPOOL
96	fi
97
98	PROP=$(get_pool_prop cachefile $TESTPOOL)
99	if [[ $PROP != ${opts[((i+1))]} ]]; then
100		log_fail "cachefile property not set as expected. " \
101			"Expect: ${opts[((i+1))]}, Current: $PROP"
102	fi
103	log_must $ZPOOL destroy -f $TESTPOOL
104	(( i = i + 2 ))
105done
106
107log_pass "Setting altroot=path and cachefile=$CPATH for zpool create succeed."
108
109