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
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
37 requires nbdsh
-c 'i = nbd.CMD_FLAG_FAST_ZERO
38 exit(not h.supports_uri())'
40 files
="retry-zero-flags-count retry-zero-flags-open-count"
42 cleanup_fn
rm -f $files
44 touch retry-zero-flags-count retry-zero-flags-open-count
47 # Create a custom plugin which will test retrying.
50 --filter=retry retry-delay
=1 \
51 --run 'nbdsh --uri $uri -c "
55 nbd.CMD_FLAG_FUA | nbd.CMD_FLAG_NO_HOLE | nbd.CMD_FLAG_FAST_ZERO)
56 except nbd.Error as ex:
57 assert ex.errno == \"ENOTSUP\"
58 h.zero (512, 0, nbd.CMD_FLAG_FUA)
63 # Count how many times the connection is (re-)opened.
64 read i < retry-zero-flags-open-count
65 echo $((i+1)) > retry-zero-flags-open-count
67 can_write | can_zero) exit 0 ;;
69 # Drop FUA support on particular reopens
70 read i < retry-zero-flags-open-count
77 # Drop fast zero support on particular reopens
78 read i < retry-zero-flags-open-count
85 # First zero fails, thereafter it works
86 read i < retry-zero-flags-count
88 echo $i > retry-zero-flags-count
90 echo "EIO zero failed" >&2
100 # In this test we should see the following pattern:
101 # open count 1: both fua and fast_zero supported
103 # retry and wait 1 seconds
104 # only fast_zero supported
105 # first zero succeeds
106 # second zero FAILS due to missing fua support
107 # retry and wait 1 seconds
108 # open count 2: neither fua nor fast_zero supported
109 # second zero FAILS fast due to missing fast_zero support
110 # third zero FAILS due to missing fua support
111 # retry and wait 1 seconds
112 # open count 3: only fua supported
113 # third zero succeeds
115 # The minimum time for the test should be 1+1+1 = 3 seconds.
117 if [ $
((end_t
- start_t
)) -lt 3 ]; then
118 echo "$0: test ran too quickly"
122 # Check the handle was opened 4 times (first open + one reopen for
124 read open_count
< retry-zero-flags-open-count
125 if [ $open_count -ne 4 ]; then
126 echo "$0: open-count ($open_count) != 4"