Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
retry: Add a test of this filter.
We use a custom sh plugin to test retries are working.
- Loading branch information
Showing
3 changed files
with
212 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,107 @@ | ||
| #!/usr/bin/env bash | ||
| # nbdkit | ||
| # Copyright (C) 2018-2019 Red Hat Inc. | ||
| # | ||
| # Redistribution and use in source and binary forms, with or without | ||
| # modification, are permitted provided that the following conditions are | ||
| # met: | ||
| # | ||
| # * Redistributions of source code must retain the above copyright | ||
| # notice, this list of conditions and the following disclaimer. | ||
| # | ||
| # * Redistributions in binary form must reproduce the above copyright | ||
| # notice, this list of conditions and the following disclaimer in the | ||
| # documentation and/or other materials provided with the distribution. | ||
| # | ||
| # * Neither the name of Red Hat nor the names of its contributors may be | ||
| # used to endorse or promote products derived from this software without | ||
| # specific prior written permission. | ||
| # | ||
| # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND | ||
| # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
| # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
| # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR | ||
| # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
| # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
| # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
| # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | ||
| # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| # SUCH DAMAGE. | ||
|
|
||
| # This test is similar to test-retry.sh but it also tests the case | ||
| # where the reopen operation fails. | ||
|
|
||
| source ./functions.sh | ||
| set -e | ||
| set -x | ||
|
|
||
| requires qemu-img --version | ||
|
|
||
| files="retry-reopen-fail.img | ||
| retry-reopen-fail-count retry-reopen-fail-open-count" | ||
| rm -f $files | ||
| cleanup_fn rm -f $files | ||
|
|
||
| touch retry-reopen-fail-count retry-reopen-fail-open-count | ||
| start_t=$SECONDS | ||
|
|
||
| # Create a custom plugin which will test retrying. | ||
| nbdkit -v -U - \ | ||
| sh - \ | ||
| --filter=retry retry-delay=1 \ | ||
| --run 'qemu-img convert $nbd retry-reopen-fail.img' <<'EOF' | ||
| case "$1" in | ||
| open) | ||
| # Count how many times the connection is (re-)opened. | ||
| read i < retry-reopen-fail-open-count | ||
| ((i++)) | ||
| echo $i > retry-reopen-fail-open-count | ||
| if [ $i -eq 2 ]; then | ||
| echo "EIO open failed" >&2 | ||
| exit 1 | ||
| fi | ||
| ;; | ||
| pread) | ||
| # Fail 2 times then succeed. | ||
| read i < retry-reopen-fail-count | ||
| ((i++)) | ||
| echo $i > retry-reopen-fail-count | ||
| if [ $i -le 2 ]; then | ||
| echo "EIO pread failed" >&2 | ||
| exit 1 | ||
| else | ||
| dd if=/dev/zero count=$3 iflag=count_bytes | ||
| fi | ||
| ;; | ||
| get_size) echo 512 ;; | ||
| *) exit 2 ;; | ||
| esac | ||
| EOF | ||
|
|
||
| # In this test we should see 3 failures: | ||
| # pread FAILS | ||
| # retry and wait 1 seconds | ||
| # open FAILS | ||
| # retry and wait 2 seconds | ||
| # open succeeds | ||
| # pread FAILS | ||
| # retry and wait 4 seconds | ||
| # open succeeds | ||
| # pread succeeds | ||
|
|
||
| # The minimum time for the test should be 1+2+4 = 7 seconds. | ||
| end_t=$SECONDS | ||
| if [ $((end_t - start_t)) -lt 7 ]; then | ||
| echo "$0: test ran too quickly" | ||
| exit 1 | ||
| fi | ||
|
|
||
| # Check the handle was opened 4 times. | ||
| read open_count < retry-reopen-fail-open-count | ||
| if [ $open_count -ne 4 ]; then | ||
| echo "$0: open-count ($open_count) != 4" | ||
| exit 1 | ||
| fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,97 @@ | ||
| #!/usr/bin/env bash | ||
| # nbdkit | ||
| # Copyright (C) 2018-2019 Red Hat Inc. | ||
| # | ||
| # Redistribution and use in source and binary forms, with or without | ||
| # modification, are permitted provided that the following conditions are | ||
| # met: | ||
| # | ||
| # * Redistributions of source code must retain the above copyright | ||
| # notice, this list of conditions and the following disclaimer. | ||
| # | ||
| # * Redistributions in binary form must reproduce the above copyright | ||
| # notice, this list of conditions and the following disclaimer in the | ||
| # documentation and/or other materials provided with the distribution. | ||
| # | ||
| # * Neither the name of Red Hat nor the names of its contributors may be | ||
| # used to endorse or promote products derived from this software without | ||
| # specific prior written permission. | ||
| # | ||
| # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND | ||
| # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | ||
| # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
| # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR | ||
| # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
| # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
| # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
| # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
| # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
| # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT | ||
| # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| # SUCH DAMAGE. | ||
|
|
||
| source ./functions.sh | ||
| set -e | ||
| set -x | ||
|
|
||
| requires qemu-img --version | ||
|
|
||
| files="retry.img retry-count retry-open-count" | ||
| rm -f $files | ||
| cleanup_fn rm -f $files | ||
|
|
||
| touch retry-count retry-open-count | ||
| start_t=$SECONDS | ||
|
|
||
| # Create a custom plugin which will test retrying. | ||
| nbdkit -v -U - \ | ||
| sh - \ | ||
| --filter=retry retry-delay=1 \ | ||
| --run 'qemu-img convert $nbd retry.img' <<'EOF' | ||
| case "$1" in | ||
| open) | ||
| # Count how many times the connection is (re-)opened. | ||
| read i < retry-open-count | ||
| echo $((i+1)) > retry-open-count | ||
| ;; | ||
| pread) | ||
| # Fail 3 times then succeed. | ||
| read i < retry-count | ||
| ((i++)) | ||
| echo $i > retry-count | ||
| if [ $i -le 3 ]; then | ||
| echo "EIO pread failed" >&2 | ||
| exit 1 | ||
| else | ||
| dd if=/dev/zero count=$3 iflag=count_bytes | ||
| fi | ||
| ;; | ||
| get_size) echo 512 ;; | ||
| *) exit 2 ;; | ||
| esac | ||
| EOF | ||
|
|
||
| # In this test we should see 3 failures: | ||
| # pread FAILS | ||
| # retry and wait 1 seconds | ||
| # pread FAILS | ||
| # retry and wait 2 seconds | ||
| # pread FAILS | ||
| # retry and wait 4 seconds | ||
| # pread succeeds | ||
|
|
||
| # The minimum time for the test should be 1+2+4 = 7 seconds. | ||
| end_t=$SECONDS | ||
| if [ $((end_t - start_t)) -lt 7 ]; then | ||
| echo "$0: test ran too quickly" | ||
| exit 1 | ||
| fi | ||
|
|
||
| # Check the handle was opened 4 times (first open + one reopen for | ||
| # each retry). | ||
| read open_count < retry-open-count | ||
| if [ $open_count -ne 4 ]; then | ||
| echo "$0: open-count ($open_count) != 4" | ||
| exit 1 | ||
| fi |