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) 2012, 2016 by Delphix. All rights reserved.
30#
31
32. $STF_SUITE/tests/functional/cli_root/cli_common.kshlib
33
34#
35# DESCRIPTION:
36#	Verify 'zfs receive' fails with malformed parameters.
37#
38# STRATEGY:
39#	1. Define malformed parameters array
40#	2. Feed the malformed parameters to 'zfs receive'
41#	3. Verify the command should be failed
42#
43
44verify_runnable "both"
45
46function cleanup
47{
48	typeset snap
49	typeset bkup
50
51	for snap in $init_snap $inc_snap $init_topsnap $inc_topsnap ; do
52		snapexists $snap && destroy_dataset $snap -Rf
53	done
54
55	for bkup in $full_bkup $inc_bkup $full_topbkup $inc_topbkup; do
56		[[ -e $bkup ]] && \
57			log_must rm -f $bkup
58	done
59}
60
61log_assert "Verify that invalid parameters to 'zfs receive' are caught."
62log_onexit cleanup
63
64init_snap=$TESTPOOL/$TESTFS@initsnap
65inc_snap=$TESTPOOL/$TESTFS@incsnap
66full_bkup=$TEST_BASE_DIR/full_bkup.$$
67inc_bkup=$TEST_BASE_DIR/inc_bkup.$$
68
69init_topsnap=$TESTPOOL@initsnap
70inc_topsnap=$TESTPOOL@incsnap
71full_topbkup=$TEST_BASE_DIR/full_topbkup.$$
72inc_topbkup=$TEST_BASE_DIR/inc_topbkup.$$
73
74log_must zfs snapshot $init_topsnap
75log_must eval "zfs send $init_topsnap > $full_topbkup"
76log_must touch /$TESTPOOL/foo
77
78log_must zfs snapshot $inc_topsnap
79log_must eval "zfs send -i $init_topsnap $inc_topsnap > $inc_topbkup"
80log_must touch /$TESTPOOL/bar
81
82log_must zfs snapshot $init_snap
83log_must eval "zfs send $init_snap > $full_bkup"
84log_must touch /$TESTDIR/foo
85
86log_must zfs snapshot $inc_snap
87log_must eval "zfs send -i $init_snap $inc_snap > $inc_bkup"
88log_must touch /$TESTDIR/bar
89
90sync_all_pools
91
92set -A badargs \
93    "" "nonexistent-snap" "blah@blah" "-d" "-d nonexistent-dataset" \
94    "$TESTPOOL1" "$TESTPOOL/fs@" "$TESTPOOL/fs@@mysnap" \
95    "$TESTPOOL/fs@@" "$TESTPOOL/fs/@mysnap" "$TESTPOOL/fs@/mysnap" \
96    "$TESTPOOL/nonexistent-fs/nonexistent-fs" "-d $TESTPOOL/nonexistent-fs" \
97    "-d $TESTPOOL/$TESTFS/nonexistent-fs"
98
99typeset -i i=0
100while (( i < ${#badargs[*]} ))
101do
102	for bkup in $full_bkup $inc_bkup $full_topbkup $inc_topbkup ; do
103		log_mustnot eval "zfs receive ${badargs[i]} < $bkup"
104	done
105
106	(( i = i + 1 ))
107done
108
109log_pass "Invalid parameters to 'zfs receive' are caught as expected."
110