7290 ZFS test suite needs to control what utilities it can run
[unleashed.git] / usr / src / test / zfs-tests / tests / functional / cli_root / zpool_import / zpool_import_005_pos.ksh
blob79f026ede55f4f682d8efa02908b3c99e7b71678
1 #!/bin/ksh -p
3 # CDDL HEADER START
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.
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.
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]
20 # CDDL HEADER END
24 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
29 # Copyright (c) 2012, 2016 by Delphix. All rights reserved.
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zpool_import/zpool_import.cfg
36 # DESCRIPTION:
37 # Destroyed pools devices was renamed, it still can be imported correctly.
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.
45 verify_runnable "global"
47 function cleanup
49 destroy_pool $TESTPOOL1
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
59 log_assert "Destroyed pools devices was renamed, it still can be imported " \
60 "correctly."
61 log_onexit cleanup
63 log_must zpool create $TESTPOOL1 $VDEV0 $VDEV1 $VDEV2
64 typeset guid=$(get_config $TESTPOOL1 pool_guid)
65 typeset target=$TESTPOOL1
66 if (( RANDOM % 2 == 0 )) ; then
67 target=$guid
68 log_note "Import by guid."
70 log_must zpool destroy $TESTPOOL1
72 log_note "Part of devices was renamed in the same directory."
73 log_must mv $VDEV0 $DEVICE_DIR/vdev0-new
74 log_must zpool import -d $DEVICE_DIR -D -f $target
75 log_must zpool destroy -f $TESTPOOL1
77 log_note "All of devices was rename to different directories."
78 log_must mkdir $DEVICE_DIR/newdir1 $DEVICE_DIR/newdir2
79 log_must mv $VDEV1 $DEVICE_DIR/newdir1/vdev1-new
80 log_must mv $VDEV2 $DEVICE_DIR/newdir2/vdev2-new
81 log_must zpool import -d $DEVICE_DIR/newdir1 -d $DEVICE_DIR/newdir2 \
82 -d $DEVICE_DIR -D -f $target
83 log_must zpool destroy -f $TESTPOOL1
85 log_pass "Destroyed pools devices was renamed, 'zpool import -D' passed."