xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/rsend_021_pos.ksh (revision d94527b3280cbf89d5360b28aff9e822cd79d0e6)
1#!/usr/bin/ksh
2
3#
4# This file and its contents are supplied under the terms of the
5# Common Development and Distribution License ("CDDL"), version 1.0.
6# You may only use this file in accordance with the terms of version
7# 1.0 of the CDDL.
8#
9# A full copy of the text of the CDDL should have accompanied this
10# source.  A copy of the CDDL is also available via the Internet at
11# http://www.illumos.org/license/CDDL.
12#
13
14#
15# Copyright (c) 2014 by Delphix. All rights reserved.
16#
17
18. $STF_SUITE/include/libtest.shlib
19. $STF_SUITE/tests/functional/rsend/rsend.kshlib
20
21#
22# Description:
23# Verify resumability of a full and incremental ZFS send/receive with the
24# -e (embedded) flag in the presence of a corrupted stream.
25#
26# Strategy:
27# 1. Start a full ZFS send with the -e flag (embedded), redirect output to
28#    a file
29# 2. Mess up the contents of the stream state file on disk
30# 3. Try ZFS receive, which should fail with a checksum mismatch error
31# 4. ZFS send to the stream state file again using the receive_resume_token
32# 5. ZFS receieve and verify the receive completes successfully
33# 6. Repeat steps on an incremental ZFS send
34#
35
36verify_runnable "both"
37
38log_assert "Verify resumability of a full and incremental ZFS send/receive " \
39    "with the -e (embedded) flag"
40log_onexit cleanup_pool $POOL2
41
42sendfs=$POOL/sendfs
43recvfs=$POOL2/recvfs
44streamfs=$POOL/stream
45
46test_fs_setup $POOL $POOL2
47resume_test "$ZFS send -v -e $sendfs@a" $streamfs $recvfs
48resume_test "$ZFS send -v -e -i @a $sendfs@b" $streamfs $recvfs
49file_check $sendfs $recvfs
50
51log_pass "Verify resumability of a full and incremental ZFS send/receive " \
52    "with the -e (embedded) flag"
53