1#!/bin/ksh -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
28#
29# Copyright (c) 2012, 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/include/libtest.shlib
33. $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.cfg
34
35#
36# DESCRIPTION:
37#	Destroyed pools devices was renamed, it still can be imported correctly.
38#
39# STRATEGY:
40#	1. Create test pool A with several devices.
41#	2. Destroy pool A and rename devices name.
42#	3. Verify 'zpool import -D' succeed.
43#
44
45verify_runnable "global"
46
47function cleanup
48{
49	destroy_pool $TESTPOOL1
50
51	log_must rm -rf $DEVICE_DIR/*
52	typeset i=0
53	while (( i < $MAX_NUM )); do
54		log_must mkfile $FILE_SIZE ${DEVICE_DIR}/${DEVICE_FILE}$i
55		((i += 1))
56	done
57}
58
59log_assert "Destroyed pools devices was renamed, it still can be imported " \
60	"correctly."
61log_onexit cleanup
62
63log_must zpool create $TESTPOOL1 $VDEV0 $VDEV1 $VDEV2
64typeset guid=$(get_config $TESTPOOL1 pool_guid)
65typeset target=$TESTPOOL1
66if (( RANDOM % 2 == 0 )) ; then
67	target=$guid
68	log_note "Import by guid."
69fi
70log_must zpool destroy $TESTPOOL1
71
72log_note "Part of devices was renamed in the same directory."
73log_must mv $VDEV0 $DEVICE_DIR/vdev0-new
74log_must zpool import -d $DEVICE_DIR -D -f $target
75log_must zpool destroy -f $TESTPOOL1
76
77log_note "All of devices was rename to different directories."
78log_must mkdir $DEVICE_DIR/newdir1 $DEVICE_DIR/newdir2
79log_must mv $VDEV1 $DEVICE_DIR/newdir1/vdev1-new
80log_must mv $VDEV2 $DEVICE_DIR/newdir2/vdev2-new
81log_must zpool import -d $DEVICE_DIR/newdir1 -d $DEVICE_DIR/newdir2 \
82	-d $DEVICE_DIR -D -f $target
83log_must zpool destroy -f $TESTPOOL1
84
85log_pass "Destroyed pools devices was renamed, 'zpool import -D' passed."
86