xref: /illumos-gate/usr/src/test/zfs-tests/tests/functional/rsend/rsend_022_pos.ksh (revision 9c7f1ae01d2294b79bc57dff1f29ac9b813d6172)
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, 2016 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 an incremental ZFS send/receive with ZFS bookmarks in
24# the presence of a corrupted stream.
25#
26# Strategy:
27# 1. Bookmark a ZFS snapshot
28# 2. Destroy the ZFS sanpshot
29# 3. Destroy the filesystem for the receive
30# 4. Verify receive of the full send stream
31# 5. Start an incremental ZFS send of the ZFS bookmark, redirect output to a
32#    file
33# 6. Mess up the contents of the stream state file on disk
34# 7. Try ZFS receive, which should fail with a checksum mismatch error
35# 8. ZFS send to the stream state file again using the receive_resume_token
36# 9. ZFS receieve and verify the receive completes successfully
37#
38
39verify_runnable "both"
40
41log_assert "Verify resumability of an incremental ZFS send/receive with ZFS " \
42    "bookmarks"
43
44sendfs=$POOL/sendfs
45recvfs=$POOL2/recvfs
46streamfs=$POOL/stream
47
48log_onexit resume_cleanup $sendfs $streamfs
49
50test_fs_setup $sendfs $recvfs $streamfs
51log_must zfs bookmark $sendfs@a $sendfs#bm_a
52log_must zfs destroy $sendfs@a
53log_must zfs receive -v $recvfs </$POOL/initial.zsend
54resume_test "zfs send -i \#bm_a $sendfs@b" $streamfs $recvfs
55log_must zfs destroy -r -f $sendfs
56log_must zfs receive -v $sendfs </$POOL/initial.zsend
57log_must zfs receive -v $sendfs </$POOL/incremental.zsend
58file_check $sendfs $recvfs
59
60log_pass "Verify resumability of an incremental ZFS send/receive with ZFS " \
61    "bookmarks"
62