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
44verify_runnable "global"
45
46function cleanup
47{
48	if poolexists $ZPOOL_VERSION_1_NAME; then
49		destroy_pool $ZPOOL_VERSION_1_NAME
50	fi
51
52	if [[ -f $TESTDIR/$ZPOOL_VERSION_1_FILES ]]; then
53		rm -f $TESTDIR/$ZPOOL_VERSION_1_FILES
54	fi
55}
56
57log_assert "Verify that copies cannot be set with pool version 1"
58log_onexit cleanup
59
60cp $STF_SUITE/tests/functional/cli_root/zpool_upgrade/blockfiles/$ZPOOL_VERSION_1_FILES $TESTDIR
61bunzip2 $TESTDIR/$ZPOOL_VERSION_1_FILES
62log_must zpool import -d $TESTDIR $ZPOOL_VERSION_1_NAME
63log_must zfs create $ZPOOL_VERSION_1_NAME/$TESTFS
64log_must zfs create -V 1m $ZPOOL_VERSION_1_NAME/$TESTVOL
65
66for val in 3 2 1; do
67	for ds in $ZPOOL_VERSION_1_NAME/$TESTFS $ZPOOL_VERSION_1_NAME/$TESTVOL; do
68		log_mustnot zfs set copies=$val $ds
69	done
70	for ds in $ZPOOL_VERSION_1_NAME/$TESTFS1 $ZPOOL_VERSION_1_NAME/$TESTVOL1; do
71		log_mustnot zfs create -o copies=$val $ds
72	done
73done
74
75log_pass "Verification pass: copies cannot be set with pool version 1. "
76