1#!/usr/local/bin/ksh93 -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 2008 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26
27. $STF_SUITE/tests/rsend/rsend.kshlib
28
29#################################################################################
30#
31# __stc_assertion_start
32#
33# ID: rsend_009_pos
34#
35# DESCRIPTION:
36#	zfs receive can handle out of space correctly.
37#
38# STRATEGY:
39#	1. Create two pools, one is big and another is small.
40#	2. Fill the big pool with data.
41#	3. Take snapshot and backup the whole pool.
42#	4. Receive this stream in small pool.
43#	5. Verify zfs receive can handle the out of space error correctly.
44#
45# TESTABILITY: explicit
46#
47# TEST_AUTOMATION_LEVEL: automated
48#
49# CODING_STATUS: COMPLETED (2007-10-10)
50#
51# __stc_assertion_end
52#
53################################################################################
54
55verify_runnable "global"
56
57function cleanup
58{
59	if datasetexists bpool ; then
60		log_must $ZPOOL destroy -f bpool
61	fi
62	if datasetexists spool ; then
63		log_must $ZPOOL destroy -f spool
64	fi
65}
66
67log_assert "Verify zfs receive can handle out of space correctly."
68log_onexit cleanup
69
70log_must $TRUNCATE -s 100M $TESTDIR/bfile
71log_must $TRUNCATE -s 64M  $TESTDIR/sfile
72log_must $ZPOOL create bpool $TESTDIR/bfile
73log_must $ZPOOL create spool $TESTDIR/sfile
74
75#
76# Test out of space on sub-filesystem
77#
78log_must $ZFS create bpool/fs
79mntpnt=$(get_prop mountpoint bpool/fs)
80log_must $TRUNCATE -s 30M $mntpnt/file
81
82log_must $ZFS snapshot bpool/fs@snap
83log_must eval "$ZFS send -R bpool/fs@snap > $BACKDIR/fs-R"
84log_mustnot eval "$ZFS receive -d -F spool < $BACKDIR/fs-R"
85
86log_must datasetnonexists spool/fs
87log_must ismounted spool
88
89#
90# Test out of space on top filesystem
91#
92mntpnt2=$(get_prop mountpoint bpool)
93log_must $MV $mntpnt/file $mntpnt2
94log_must $ZFS destroy -rf bpool/fs
95
96log_must $ZFS snapshot bpool@snap
97log_must eval "$ZFS send -R bpool@snap > $BACKDIR/bpool-R"
98log_mustnot eval "$ZFS receive -d -F spool < $BACKDIR/bpool-R"
99
100log_must datasetnonexists spool/fs
101log_must ismounted spool
102
103log_pass "zfs receive can handle out of space correctly."
104