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 (c) 2016 by Delphix. All rights reserved.
25# Copyright 2019 Joyent, Inc.
26#
27. $STF_SUITE/include/libtest.shlib
28. $STF_SUITE/tests/functional/cli_root/zpool_initialize/zpool_initialize.kshlib
29
30#
31# DESCRIPTION:
32# Detaching/attaching, adding/removing data devices works with initializing.
33#
34# STRATEGY:
35# 1. Create a single-disk pool.
36# 2. Start initializing.
37# 3. Attach a second disk, ensure initializing continues.
38# 4. Detach the second disk, ensure initializing continues.
39# 5. Add a second disk, ensure initializing continues.
40# 6. Remove the first disk, ensure initializing stops.
41#
42
43DISK1="$(echo $DISKS | cut -d' ' -f1)"
44DISK2="$(echo $DISKS | cut -d' ' -f2)"
45
46log_must zpool create -f $TESTPOOL $DISK1
47
48log_must zpool initialize $TESTPOOL $DISK1
49progress="$(initialize_progress $TESTPOOL $DISK1)"
50[[ -z "$progress" ]] && log_fail "Initializing did not start"
51
52log_must zpool attach $TESTPOOL $DISK1 $DISK2
53new_progress="$(initialize_progress $TESTPOOL $DISK1)"
54[[ "$progress" -le "$new_progress" ]] || \
55        log_fail "Lost initializing progress on demotion to child vdev"
56progress="$new_progress"
57
58log_must zpool detach $TESTPOOL $DISK2
59new_progress="$(initialize_progress $TESTPOOL $DISK1)"
60[[ "$progress" -le "$new_progress" ]] || \
61        log_fail "Lost initializing progress on promotion to top vdev"
62progress="$new_progress"
63
64log_must zpool add $TESTPOOL $DISK2
65log_must zpool remove $TESTPOOL $DISK1
66while $(zpool status $TESTPOOL | grep -q Evacuation); do
67	sleep 0.5
68done
69
70[[ -z "$(initialize_prog_line $TESTPOOL $DISK1)" ]] || \
71        log_fail "Initializing continued after initiating removal"
72
73log_pass "Initializing worked as expected across attach/detach and add/remove"
74