ci: Update .gitlab-ci.yml
[nbdkit.git] / tests / test-retry-extents.sh
blobf05823a2015641d56010c34765e3f8a6b938a233
1 #!/usr/bin/env bash
2 # nbdkit
3 # Copyright (C) 2018-2020 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 source ./functions.sh
34 set -e
35 set -x
37 requires_plugin sh
38 requires_nbdsh_uri
39 requires nbdsh --base-allocation
41 files="retry-extents-count retry-extents-open-count"
42 rm -f $files
43 cleanup_fn rm -f $files
45 touch retry-extents-count retry-extents-open-count
46 start_t=$SECONDS
48 # Create a custom plugin which will test retrying.
49 nbdkit -v -U - \
50 sh - \
51 --filter=retry retry-delay=1 \
52 --run 'nbdsh --base-allocation --uri "$uri" -c "
53 entries = []
54 def f(metacontext, offset, e, err):
55 global entries
56 assert err.value == 0
57 assert metacontext == nbd.CONTEXT_BASE_ALLOCATION
58 entries = e
59 h.block_status(1024, 0, f)
60 assert entries == [ 512, 0,
61 512, 3]
62 "' <<'EOF'
63 #!/usr/bin/env bash
64 case "$1" in
65 open)
66 # Count how many times the connection is (re-)opened.
67 read i < retry-extents-open-count
68 echo $((i+1)) > retry-extents-open-count
70 extents)
71 # Fail in three different ways then succeed.
72 read i < retry-extents-count
73 ((i++))
74 echo $i > retry-extents-count
75 case $i in
76 1) echo "EIO pread failed" >&2; exit 1;;
77 2) echo "garbage"
78 exit 0;;
79 3) echo "0 512 0"
80 echo "garbage"
81 exit 0;;
82 *) echo "0 512 0"
83 echo "512 512 3"
84 exit 0;;
85 esac
88 can_extents) exit 0 ;;
89 get_size) echo 1024 ;;
90 *) exit 2 ;;
91 esac
92 EOF
94 # In this test we should see 3 failures:
95 # extents FAILS
96 # retry and wait 1 seconds
97 # extents FAILS
98 # retry and wait 2 seconds
99 # extents FAILS
100 # retry and wait 4 seconds
101 # extents succeeds
103 # The minimum time for the test should be 1+2+4 = 7 seconds.
104 end_t=$SECONDS
105 if [ $((end_t - start_t)) -lt 7 ]; then
106 echo "$0: test ran too quickly"
107 exit 1
110 # Check the handle was opened 4 times (first open + one reopen for
111 # each retry).
112 read open_count < retry-extents-open-count
113 if [ $open_count -ne 4 ]; then
114 echo "$0: open-count ($open_count) != 4"
115 exit 1