1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
#!/usr/bin/env bash
# nbd client library in userspace
# Copyright Red Hat
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# Test effects of nbdsh --base-allocation
fail=0
. ../tests/functions.sh
requires nbdsh -c 'exit(not h.supports_uri())'
# Without --base-allocation, no meta context is requested
output=$($NBDKIT -U - null --run 'nbdsh \
-u "nbd+unix://?socket=$unixsocket" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xFalse; then
echo "$0: unexpected output: $output"
fail=1
fi
# Can also use manual -c to request context before -u
output=$($NBDKIT -U - null --run 'nbdsh \
-c "h.add_meta_context(nbd.CONTEXT_BASE_ALLOCATION)" \
-u "nbd+unix://?socket=$unixsocket" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"
')
if test "x$output" != xTrue; then
echo "$0: unexpected output: $output"
fail=1
fi
# With --base-allocation (and a server that supports it), meta context works.
output=$($NBDKIT -U - null --run 'nbdsh \
--base-allocation --uri "nbd+unix://?socket=$unixsocket" \
--command "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xTrue; then
echo "$0: unexpected output: $output"
fail=1
fi
# Again, but with abbreviated option names
output=$($NBDKIT -U - null --run 'nbdsh \
--b -u "nbd+unix://?socket=$unixsocket" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xTrue; then
echo "$0: unexpected output: $output"
fail=1
fi
if [[ $($NBDKIT --help) =~ --no-sr ]]; then
# meta context depends on server cooperation
output=$($NBDKIT -U - --no-sr null --run 'nbdsh \
--base-allocation -u "nbd+unix://?socket=$unixsocket" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xFalse; then
echo "$0: unexpected output: $output"
fail=1
fi
else
echo "$0: $NBDKIT lacks --no-sr"
fi
# Test interaction with opt mode
output=$($NBDKIT -U - null --run 'nbdsh \
--opt-mode --base-allocation -u "nbd+unix://?socket=$unixsocket" \
-c "
try:
h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION)
assert False
except nbd.Error:
pass
" \
-c "h.opt_go()" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xTrue; then
echo "$0: unexpected output: $output"
fail=1
fi
# And with --opt-mode, we can get away without --base-allocation
output=$($NBDKIT -U - null --run 'nbdsh \
--opt-mode -u "nbd+unix://?socket=$unixsocket" \
-c "h.add_meta_context(nbd.CONTEXT_BASE_ALLOCATION)" \
-c "h.opt_go()" \
-c "print(h.can_meta_context(nbd.CONTEXT_BASE_ALLOCATION))"')
if test "x$output" != xTrue; then
echo "$0: unexpected output: $output"
fail=1
fi
exit $fail
|