]> git.proxmox.com Git - mirror_zfs.git/blob - tests/zfs-tests/tests/functional/cli_root/zpool_expand/zpool_expand_002_pos.ksh
zpool reopen should detect expanded devices
[mirror_zfs.git] / tests / zfs-tests / tests / functional / cli_root / zpool_expand / zpool_expand_002_pos.ksh
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 2009 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27
28 #
29 # Copyright (c) 2012, 2018 by Delphix. All rights reserved.
30 # Copyright (c) 2017 Lawrence Livermore National Security, LLC.
31 #
32
33 . $STF_SUITE/include/libtest.shlib
34 . $STF_SUITE/tests/functional/cli_root/zpool_expand/zpool_expand.cfg
35
36 #
37 # DESCRIPTION:
38 # After zpool online -e poolname zvol vdevs, zpool can autoexpand by
39 # Dynamic LUN Expansion
40 #
41 #
42 # STRATEGY:
43 # 1) Create 3 files
44 # 2) Create a pool backed by the files
45 # 3) Expand the files' size with truncate
46 # 4) Use zpool reopen to check the expandsize
47 # 5) Use zpool online -e to online the vdevs
48 # 6) Check that the pool size was expanded
49 #
50
51 verify_runnable "global"
52
53 function cleanup
54 {
55 if poolexists $TESTPOOL1; then
56 log_must zpool destroy $TESTPOOL1
57 fi
58
59 for i in 1 2 3; do
60 [ -e ${TEMPFILE}.$i ] && log_must rm ${TEMPFILE}.$i
61 done
62 }
63
64 log_onexit cleanup
65
66 log_assert "zpool can expand after zpool online -e zvol vdevs on LUN expansion"
67
68 for type in " " mirror raidz raidz2; do
69 # Initialize the file devices and the pool
70 for i in 1 2 3; do
71 log_must truncate -s $org_size ${TEMPFILE}.$i
72 done
73
74 log_must zpool create $TESTPOOL1 $type $TEMPFILE.1 \
75 $TEMPFILE.2 $TEMPFILE.3
76
77 typeset autoexp=$(get_pool_prop autoexpand $TESTPOOL1)
78
79 if [[ $autoexp != "off" ]]; then
80 log_fail "zpool $TESTPOOL1 autoexpand should off but is " \
81 "$autoexp"
82 fi
83 typeset prev_size=$(get_pool_prop size $TESTPOOL1)
84 typeset zfs_prev_size=$(get_prop avail $TESTPOOL1)
85
86 # Increase the size of the file devices
87 for i in 1 2 3; do
88 log_must truncate -s $exp_size ${TEMPFILE}.$i
89 done
90
91 # Reopen the pool and check that the `expandsize` property is set
92 log_must zpool reopen $TESTPOOL1
93 typeset zpool_expandsize=$(get_pool_prop expandsize $TESTPOOL1)
94
95 if [[ $type == "mirror" ]]; then
96 typeset expected_zpool_expandsize=$(($exp_size-$org_size))
97 else
98 typeset expected_zpool_expandsize=$((3*($exp_size-$org_size)))
99 fi
100
101 if [[ "$zpool_expandsize" = "-" ]]; then
102 log_fail "pool $TESTPOOL1 did not detect any " \
103 "expandsize after reopen"
104 fi
105
106 if [[ $zpool_expandsize -ne $expected_zpool_expandsize ]]; then
107 log_fail "pool $TESTPOOL1 did not detect correct " \
108 "expandsize after reopen: found $zpool_expandsize," \
109 "expected $expected_zpool_expandsize"
110 fi
111
112 # Online the devices to add the new space to the pool
113 for i in 1 2 3; do
114 log_must zpool online -e $TESTPOOL1 ${TEMPFILE}.$i
115 done
116
117 sync
118 sleep 10
119 sync
120
121 typeset expand_size=$(get_pool_prop size $TESTPOOL1)
122 typeset zfs_expand_size=$(get_prop avail $TESTPOOL1)
123 log_note "$TESTPOOL1 $type has previous size: $prev_size and " \
124 "expanded size: $expand_size"
125
126 # compare available pool size from zfs
127 if [[ $zfs_expand_size -gt $zfs_prev_size ]]; then
128 # check for zpool history for the pool size expansion
129 if [[ $type == " " ]]; then
130 typeset expansion_size=$(($exp_size-$org_size))
131 typeset size_addition=$(zpool history -il $TESTPOOL1 \
132 | grep "pool '$TESTPOOL1' size:" | \
133 grep "vdev online" | \
134 grep "(+${expansion_size}" | wc -l)
135
136 if [[ $size_addition -ne $i ]]; then
137 log_fail "pool $TESTPOOL1 did not expand " \
138 "after LUN expansion and zpool online -e"
139 fi
140 elif [[ $type == "mirror" ]]; then
141 typeset expansion_size=$(($exp_size-$org_size))
142 zpool history -il $TESTPOOL1 | \
143 grep "pool '$TESTPOOL1' size:" | \
144 grep "vdev online" | \
145 grep "(+${expansion_size})" >/dev/null 2>&1
146
147 if [[ $? -ne 0 ]]; then
148 log_fail "pool $TESTPOOL1 did not expand " \
149 "after LUN expansion and zpool online -e"
150 fi
151 else
152 typeset expansion_size=$((3*($exp_size-$org_size)))
153 zpool history -il $TESTPOOL1 | \
154 grep "pool '$TESTPOOL1' size:" | \
155 grep "vdev online" | \
156 grep "(+${expansion_size})" >/dev/null 2>&1
157
158 if [[ $? -ne 0 ]] ; then
159 log_fail "pool $TESTPOOL1 did not expand " \
160 "after LUN expansion and zpool online -e"
161 fi
162 fi
163 else
164 log_fail "pool $TESTPOOL1 did not expand after LUN expansion " \
165 "and zpool online -e"
166 fi
167 log_must zpool destroy $TESTPOOL1
168 done
169 log_pass "zpool can expand after zpool online -e zvol vdevs on LUN expansion"