1#!/bin/ksh -p
2
3#
4# This file and its contents are supplied under the terms of the
5# Common Development and Distribution License ("CDDL"), version 1.0.
6# You may only use this file in accordance with the terms of version
7# 1.0 of the CDDL.
8#
9# A full copy of the text of the CDDL should have accompanied this
10# source.  A copy of the CDDL is also available via the Internet at
11# http://www.illumos.org/license/CDDL.
12#
13
14#
15# Copyright (c) 2017, Intel Corporation.
16# Copyright (c) 2018, 2020 by Delphix. All rights reserved.
17#
18
19. $STF_SUITE/tests/functional/alloc_class/alloc_class.kshlib
20
21#
22# DESCRIPTION:
23#	Importing and exporting pool with special device succeeds.
24#
25claim="Import/export of pool with special device mirror succeeds."
26
27verify_runnable "global"
28
29log_assert $claim
30log_onexit cleanup
31
32log_must disk_setup
33
34typeset stype=""
35typeset sdisks=""
36typeset props=""
37
38for type in "" "mirror" "raidz"
39do
40	if [ "$type" = "mirror" ]; then
41		stype="mirror"
42		sdisks="${CLASS_DISK0} ${CLASS_DISK1} ${CLASS_DISK2}"
43		props="-o ashift=12"
44	elif [ "$type" = "raidz" ]; then
45		stype="mirror"
46		sdisks="${CLASS_DISK0} ${CLASS_DISK1}"
47	else
48		stype=""
49		sdisks="${CLASS_DISK0}"
50	fi
51
52	#
53	# 1/3 of the time add the special vdev after creating the pool
54	#
55	if [ $((RANDOM % 3)) -eq 0 ]; then
56		log_must zpool create ${props} $TESTPOOL $type $ZPOOL_DISKS
57		log_must zpool add ${props} $TESTPOOL special $stype $sdisks
58	else
59		log_must zpool create ${props} $TESTPOOL $type $ZPOOL_DISKS \
60		    special $stype $sdisks
61	fi
62
63	log_must zpool export $TESTPOOL
64	log_must zpool import -d $TEST_BASE_DIR -s $TESTPOOL
65	log_must display_status $TESTPOOL
66	log_must zpool destroy -f $TESTPOOL
67done
68
69log_pass $claim
70