]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tests/zfs-tests/tests/functional/rsend/send-c_resume.ksh
Vendor import of openzfs master @ 184df27eef0abdc7ab2105b21257f753834b936b
[FreeBSD/FreeBSD.git] / tests / zfs-tests / tests / functional / rsend / send-c_resume.ksh
1 #!/bin/ksh -p
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) 2015 by Delphix. All rights reserved.
16 #
17
18 . $STF_SUITE/tests/functional/rsend/rsend.kshlib
19
20 #
21 # Description:
22 # Verify resumability of full and incremental ZFS send/receive with the -c
23 # (compress) flag in the presence of a corrupted stream.
24 #
25 # Strategy:
26 # 1. Start a full ZFS send with the -c flag (compress), redirect output to
27 #    a file
28 # 2. Mess up the contents of the stream state file on disk
29 # 3. Try ZFS receive, which should fail with a checksum mismatch error
30 # 4. ZFS send to the stream state file again using the receive_resume_token
31 # 5. ZFS receive and verify the receive completes successfully
32 # 6. Repeat steps on an incremental ZFS send
33 #
34
35 verify_runnable "both"
36
37 sendfs=$POOL/sendfs
38 recvfs=$POOL2/recvfs
39 streamfs=$POOL/stream
40
41 log_assert "Verify compressed send streams can be resumed if interrupted"
42 log_onexit resume_cleanup $sendfs $streamfs
43
44 test_fs_setup $sendfs $recvfs $streamfs
45 resume_test "zfs send -c -v $sendfs@a" $streamfs $recvfs
46 resume_test "zfs send -c -v -i @a $sendfs@b" $streamfs $recvfs
47 file_check $sendfs $recvfs
48
49 log_pass "Compressed send streams can be resumed if interrupted"