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
49verify_runnable "global"
50
51function cleanup
52{
53	log_must set_tunable32 zfs_scan_suspend_progress 0
54	log_must rm -f $mntpnt/biggerfile
55}
56
57log_onexit cleanup
58
59log_assert "Verify scrub, scrub -p, and scrub -s show the right status."
60
61# Create 1G of additional data
62mntpnt=$(get_prop mountpoint $TESTPOOL/$TESTFS)
63log_must file_write -b 1048576 -c 1024 -o create -d 0 -f $mntpnt/biggerfile
64sync_all_pools
65
66log_must set_tunable32 zfs_scan_suspend_progress 1
67log_must zpool scrub $TESTPOOL
68log_must is_pool_scrubbing $TESTPOOL true
69log_must zpool scrub -p $TESTPOOL
70log_must is_pool_scrub_paused $TESTPOOL true
71log_mustnot zpool scrub -p $TESTPOOL
72log_must is_pool_scrub_paused $TESTPOOL true
73log_must zpool scrub $TESTPOOL
74log_must is_pool_scrubbing $TESTPOOL true
75log_must zpool scrub -s $TESTPOOL
76log_must is_pool_scrub_stopped $TESTPOOL true
77
78log_pass "Verified scrub, -s, and -p show expected status."
79