Update Red Hat Copyright Notices
[nbdkit.git] / tests / test-blocksize-error-policy.sh
blob322c1376272ed3539736c14234fa3d2e35c7adc0
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 source ./functions.sh
34 set -e
35 set -x
37 requires_plugin eval
38 requires nbdsh -c 'print(h.get_block_size)'
39 requires nbdsh -c 'print(h.get_strict_mode)'
40 requires_nbdsh_uri
41 requires dd iflag=count_bytes </dev/null
43 nbdkit -v -U - eval \
44 block_size="echo 512 4096 1M" \
45 get_size="echo 64M" \
46 pread=" dd if=/dev/zero count=\$3 iflag=count_bytes " \
47 --filter=blocksize-policy \
48 blocksize-error-policy=error \
49 --run '
50 nbdsh \
51 -u "$uri" \
52 -c "assert h.get_block_size(nbd.SIZE_MINIMUM) == 512" \
53 -c "assert h.get_block_size(nbd.SIZE_PREFERRED) == 4096" \
54 -c "assert h.get_block_size(nbd.SIZE_MAXIMUM) == 1024 * 1024" \
55 -c "h.set_strict_mode(h.get_strict_mode() & ~nbd.STRICT_ALIGN)" \
56 -c "
57 # These requests should work
58 b = h.pread(512, 0)
59 b = h.pread(512, 4096)
60 b = h.pread(1024*1024, 0)
61 " \
62 -c "
63 # Count not a multiple of minimum size
64 try:
65 h.pread(768, 0)
66 assert False
67 except nbd.Error as ex:
68 assert ex.errno == \"EINVAL\"
69 " \
70 -c "
71 # Offset not a multiple of minimum size
72 try:
73 h.pread(512, 768)
74 assert False
75 except nbd.Error as ex:
76 assert ex.errno == \"EINVAL\"
77 " \
78 -c "
79 # Count smaller than minimum size
80 try:
81 h.pread(256, 0)
82 assert False
83 except nbd.Error as ex:
84 assert ex.errno == \"EINVAL\"
85 " \
86 -c "
87 # Count larger than maximum size
88 try:
89 h.pread(2*1024*1024, 0)
90 assert False
91 except nbd.Error as ex:
92 assert ex.errno == \"EINVAL\"