server: Better newstyle .open failure handling
[nbdkit/ericb.git] / tests / test-offset-extents.sh
blob957ad4149c3ecb7f73502db5269c260826c54ce6
1 #!/usr/bin/env bash
2 # nbdkit
3 # Copyright (C) 2018-2019 Red Hat Inc.
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 # Unfortunately the output of this test depends on the PAGE_SIZE
34 # defined in common/sparse/sparse.c and would change (breaking the
35 # test) if we ever changed that definition.
37 source ./functions.sh
38 set -e
39 set -x
41 requires jq --version
42 requires qemu-img --version
43 requires qemu-img map --help
45 out="test-offset-extents.out"
46 expected="test-offset-extents.expected"
47 files="$out $expected"
48 rm -f $files
49 cleanup_fn rm -f $files
51 do_test ()
53 # We use jq to normalize the output and convert it to plain text.
54 nbdkit -U - \
55 --filter=offset \
56 data data="$1" size="$2" \
57 offset=1024 range=65536 \
58 --run 'qemu-img map -f raw --output=json $nbd' |
59 jq -c '.[] | {start:.start, length:.length, data:.data, zero:.zero}' \
60 > $out
61 if ! cmp $out $expected; then
62 echo "$0: output did not match expected data"
63 echo "expected:"
64 cat $expected
65 echo "output:"
66 cat $out
67 exit 1
71 # Completely sparse disk.
72 cat > $expected <<'EOF'
73 {"start":0,"length":65536,"data":false,"zero":true}
74 EOF
75 do_test "" 1M
77 # Completely allocated disk.
79 # We have to write a non-zero byte @32767 so that the sparse array
80 # doesn't detect the range from 1024-32767 as being all zeroes.
81 cat > $expected <<'EOF'
82 {"start":0,"length":65536,"data":true,"zero":false}
83 EOF
84 do_test "1 @32767 1 @32768 1 @65536 1 @98304 1" 128K
86 # Allocated data at the start of a 1M disk.
87 cat > $expected <<'EOF'
88 {"start":0,"length":31744,"data":true,"zero":false}
89 {"start":31744,"length":33792,"data":false,"zero":true}
90 EOF
91 do_test "1 @32767 1" 1M
93 # Allocated zeroes at the start of the disk.
94 cat > $expected <<'EOF'
95 {"start":0,"length":31744,"data":true,"zero":true}
96 {"start":31744,"length":33792,"data":false,"zero":true}
97 EOF
98 do_test "0" 1M