Update Red Hat Copyright Notices
[nbdkit.git] / tests / test-checkwrite.sh
blob8b1219dd963c460b23b217094e05834a0529e7ee
1 #!/usr/bin/env bash
2 # nbdkit
3 # Copyright Red Hat
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
7 # met:
9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
12 # * Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
16 # * Neither the name of Red Hat nor the names of its contributors may be
17 # used to endorse or promote products derived from this software without
18 # specific prior written permission.
20 # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
21 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
24 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 # SUCH DAMAGE.
33 # Run nbdkit + nbdcopy with various plugins with checkwrite on top.
35 source ./functions.sh
36 set -e
37 set -x
39 requires_run
40 requires_filter checkwrite
42 # nbdcopy >= 1.5.9 required for this test.
43 requires_nbdcopy
44 requires_libnbd_version 1.5.9
46 do_test ()
48 nbdkit -U - -v --filter=checkwrite "$@" --run 'nbdcopy "$uri" "$uri"'
51 # Tests zero-sized disk.
52 do_test null
54 # Test of extents. Should be instantaneous despite the large disk
55 # because nbdcopy will skip the whole disk. Choose various disk sizes
56 # to try to exercise the request and work sizes inside nbdcopy.
57 do_test memory 1M
58 do_test memory 256M
59 do_test memory 10G
61 # Data disks with a mix of data and holes.
62 do_test data "@32767 1"
63 do_test data "@32768 1"
64 do_test data "@32768 1" size=64K
65 do_test data "1 @0x100000000 1"
67 # Non-sparse disk containing fixed pattern.
68 do_test pattern 1M
70 # Use of an odd offset here should test corner cases in extent
71 # handling.
72 do_test --filter=offset data "1 @0x100000000 1" offset=1
74 if test -f disk; then
75 do_test file disk