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 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26
27. $STF_SUITE/include/libtest.kshlib
28
29###############################################################################
30#
31# __stc_assertion_start
32#
33# ID: pool_names_001_pos
34#
35# DESCRIPTION:
36#
37# Test that a set of valid names can be used to create pools. Further
38# verify that the created pools can be destroyed.
39#
40# STRATEGY:
41# 1) For each valid character in the character set, try to create
42# and destroy the pool.
43# 2) Given a list of valid pool names, try to create and destroy
44# pools with the given names.
45#
46# TESTABILITY: explicit
47#
48# TEST_AUTOMATION_LEVEL: automated
49#
50# CODING_STATUS: COMPLETED (2005-11-21)
51#
52# __stc_assertion_end
53#
54################################################################################
55
56verify_runnable "global"
57
58log_assert "Ensure that pool names can use the ASCII subset of UTF-8"
59
60function cleanup
61{
62	[[ -n "$name" ]] && destroy_pool $name
63
64	if [[ -d $TESTDIR ]]; then
65		log_must $RM -rf $TESTDIR
66	fi
67
68}
69
70log_onexit cleanup
71
72if [[ ! -e $TESTDIR ]]; then
73	log_must $MKDIR $TESTDIR
74fi
75
76log_note "Ensure letters of the alphabet are allowable"
77
78typeset name=""
79
80for name in A B C D E F G H I J K L M \
81    N O P Q R S T U V W X Y Z \
82    a b c d e f g h i j k l m \
83    n o p q r s t u v w x y z
84do
85	log_must $ZPOOL create -m $TESTDIR $name $DISK
86	if ! poolexists $name; then
87		log_fail "Could not create a pool called '$name'"
88	fi
89
90	log_must $ZPOOL destroy $name
91done
92
93log_note "Ensure a variety of unusual names passes"
94
95name=""
96
97for name in "a.............................." "a_" "a-" "a:" \
98    "a." "a123456" "bc0t0d0" "m1rr0r_p00l" "ra1dz_p00l" \
99    "araidz2" "C0t2d0" "cc0t0" "raid2:-_." "mirr_:-." \
100    "m1rr0r-p00l" "ra1dz-p00l" "spar3_p00l" \
101    "spar3-p00l" "hiddenmirrorpool" "hiddenraidzpool" \
102    "hiddensparepool"
103do
104	log_must $ZPOOL create -m $TESTDIR $name $DISK
105	if ! poolexists $name; then
106		log_fail "Could not create a pool called '$name'"
107	fi
108
109	#
110	# Since the naming convention applies to datasets too,
111	# create datasets with the same names as above.
112	#
113	log_must $ZFS create $name/$name
114	log_must $ZFS snapshot $name/$name@$name
115	log_must $ZFS clone $name/$name@$name $name/clone_$name
116	log_must $ZFS create -V 150m $name/$name/$name
117
118	log_must $ZPOOL destroy $name
119done
120
121log_pass "Valid pool names were accepted correctly."
122