2605 want to resume interrupted zfs send
[illumos-gate.git] / usr / src / test / zfs-tests / tests / functional / rsend / rsend_024_pos.ksh
blobe5e299a0e7bcb164c5c8511c3622e74409fbb8ac
1 #!/usr/bin/ksh
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.
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.
15 # Copyright (c) 2014 by Delphix. All rights reserved.
18 . $STF_SUITE/include/libtest.shlib
19 . $STF_SUITE/tests/functional/rsend/rsend.kshlib
22 # Description:
23 # Verify resumability of a full ZFS send/receive with the source filesystem
24 # unmounted.
26 # Strategy:
27 # 1. Destroy the filesystem for the receive
28 # 2. Unmount the source filsesystem
29 # 3. Start a full ZFS send, redirect output to a file
30 # 4. Mess up the contents of the stream state file on disk
31 # 5. Try ZFS receive, which should fail with a checksum mismatch error
32 # 6. ZFS send to the stream state file again using the receive_resume_token
33 # 7. ZFS receieve and verify the receive completes successfully
36 verify_runnable "both"
38 log_assert "Verify resumability of a full ZFS send/receive with the source " \
39 "filesystem unmounted"
40 log_onexit cleanup_pool $POOL2
42 sendfs=$POOL/sendfs
43 recvfs=$POOL2/recvfs
44 streamfs=$POOL/stream
46 test_fs_setup $POOL $POOL2
47 log_must $ZFS unmount $sendfs
48 resume_test "$ZFS send $sendfs" $streamfs $recvfs
49 file_check $sendfs $recvfs
51 log_pass "Verify resumability of a full ZFS send/receive with the source " \
52 "filesystem unmounted"