]> git.proxmox.com Git - mirror_zfs-debian.git/blob - tests/zfs-tests/tests/functional/cli_root/zpool_scrub/zpool_scrub_002_pos.ksh
New upstream version 0.7.2
[mirror_zfs-debian.git] / tests / zfs-tests / tests / functional / cli_root / zpool_scrub / zpool_scrub_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 2007 Sun Microsystems, Inc. All rights reserved.
25 # Use is subject to license terms.
26 #
27
28 #
29 # Copyright (c) 2016 by Delphix. All rights reserved.
30 # Copyright (c) 2017 Datto Inc.
31 #
32
33 . $STF_SUITE/include/libtest.shlib
34 . $STF_SUITE/tests/functional/cli_root/zpool_scrub/zpool_scrub.cfg
35
36 #
37 # DESCRIPTION:
38 # Verify scrub, scrub -p, and scrub -s show the right status.
39 #
40 # STRATEGY:
41 # 1. Create pool and create a 100MB file in it.
42 # 2. zpool scrub the pool and verify it's doing a scrub.
43 # 3. Pause scrub and verify it's paused.
44 # 4. Try to pause a paused scrub and make sure that fails.
45 # 5. Resume the paused scrub and verify scrub is again being performed.
46 # 6. Verify zpool scrub -s succeed when the system is scrubbing.
47 #
48 # NOTES:
49 # A 10ms delay is added to the ZIOs in order to ensure that the
50 # scrub does not complete before it has a chance to be cancelled.
51 # This can occur when testing with small pools or very fast hardware.
52 #
53
54 verify_runnable "global"
55
56 function cleanup
57 {
58 log_must zinject -c all
59 }
60
61 log_onexit cleanup
62
63 log_assert "Verify scrub, scrub -p, and scrub -s show the right status."
64
65 log_must zinject -d $DISK1 -D20:1 $TESTPOOL
66 log_must zpool scrub $TESTPOOL
67 log_must is_pool_scrubbing $TESTPOOL true
68 log_must zpool scrub -p $TESTPOOL
69 log_must is_pool_scrub_paused $TESTPOOL true
70 log_mustnot zpool scrub -p $TESTPOOL
71 log_must is_pool_scrub_paused $TESTPOOL true
72 log_must zpool scrub $TESTPOOL
73 log_must is_pool_scrubbing $TESTPOOL true
74 log_must zpool scrub -s $TESTPOOL
75 log_must is_pool_scrub_stopped $TESTPOOL true
76
77 log_pass "Verified scrub, -s, and -p show expected status."