]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/cli_root/zfs_copies/zfs_copies_005_neg.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / cli_root / zfs_copies / zfs_copies_005_neg.ksh
1 #!/bin/ksh
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 2008 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 #
31
32 . $STF_SUITE/include/libtest.shlib
33 . $STF_SUITE/tests/functional/cli_root/zfs_copies/zfs_copies.kshlib
34
35 #
36 # DESCRIPTION:
37 #       Verify that copies cannot be set with pool version 1
38 #
39 # STRATEGY:
40 #       1. Create filesystems with copies set in a pool with version 1
41 #       2. Verify that the create operations fail
42 #
43
44 verify_runnable "global"
45
46 function cleanup
47 {
48         if poolexists $ZPOOL_VERSION_1_NAME; then
49                 destroy_pool $ZPOOL_VERSION_1_NAME
50         fi
51
52         if [[ -f $TEST_BASE_DIR/$ZPOOL_VERSION_1_FILES ]]; then
53                 rm -f $TEST_BASE_DIR/$ZPOOL_VERSION_1_FILES
54         fi
55
56         if [[ -f $TEST_BASE_DIR/${ZPOOL_VERSION_1_FILES%.*} ]]; then
57                 rm -f $TEST_BASE_DIR/${ZPOOL_VERSION_1_FILES%.*}
58         fi
59 }
60
61 log_assert "Verify that copies cannot be set with pool version 1"
62 log_onexit cleanup
63
64 log_must cp $STF_SUITE/tests/functional/cli_root/zpool_upgrade/blockfiles/$ZPOOL_VERSION_1_FILES $TEST_BASE_DIR
65 log_must bunzip2 $TEST_BASE_DIR/$ZPOOL_VERSION_1_FILES
66 log_must zpool import -d $TEST_BASE_DIR $ZPOOL_VERSION_1_NAME
67 log_must zfs create $ZPOOL_VERSION_1_NAME/$TESTFS
68 log_must zfs create -V 1m $ZPOOL_VERSION_1_NAME/$TESTVOL
69 block_device_wait
70
71 for val in 3 2 1; do
72         for ds in $ZPOOL_VERSION_1_NAME/$TESTFS $ZPOOL_VERSION_1_NAME/$TESTVOL; do
73                 log_mustnot zfs set copies=$val $ds
74         done
75         for ds in $ZPOOL_VERSION_1_NAME/$TESTFS1 $ZPOOL_VERSION_1_NAME/$TESTVOL1; do
76                 log_mustnot zfs create -o copies=$val $ds
77         done
78 done
79
80 log_pass "Verification pass: copies cannot be set with pool version 1. "