mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Merge pull request #1667 from jackwilsdon/fix-ipv6-test
Fix test failing on systems without IPv6 support - thank you very much!
This commit is contained in:
commit
45f2a4cc0e
1 changed files with 13 additions and 7 deletions
|
@ -141,13 +141,19 @@ class TestBaseServerRequests(BaseTest):
|
||||||
def test_bind_fail(self) -> None:
|
def test_bind_fail(self) -> None:
|
||||||
for address_family, address in [(socket.AF_INET, "::1"),
|
for address_family, address in [(socket.AF_INET, "::1"),
|
||||||
(socket.AF_INET6, "127.0.0.1")]:
|
(socket.AF_INET6, "127.0.0.1")]:
|
||||||
with socket.socket(address_family, socket.SOCK_STREAM) as sock:
|
try:
|
||||||
if address_family == socket.AF_INET6:
|
with socket.socket(address_family, socket.SOCK_STREAM) as sock:
|
||||||
# Only allow IPv6 connections to the IPv6 socket
|
if address_family == socket.AF_INET6:
|
||||||
sock.setsockopt(server.COMPAT_IPPROTO_IPV6,
|
# Only allow IPv6 connections to the IPv6 socket
|
||||||
socket.IPV6_V6ONLY, 1)
|
sock.setsockopt(server.COMPAT_IPPROTO_IPV6,
|
||||||
with pytest.raises(OSError) as exc_info:
|
socket.IPV6_V6ONLY, 1)
|
||||||
sock.bind((address, 0))
|
with pytest.raises(OSError) as exc_info:
|
||||||
|
sock.bind((address, 0))
|
||||||
|
except OSError as e:
|
||||||
|
if e.errno in (errno.EADDRNOTAVAIL, errno.EAFNOSUPPORT,
|
||||||
|
errno.EPROTONOSUPPORT):
|
||||||
|
continue
|
||||||
|
raise
|
||||||
# See ``radicale.server.serve``
|
# See ``radicale.server.serve``
|
||||||
assert (isinstance(exc_info.value, socket.gaierror) and
|
assert (isinstance(exc_info.value, socket.gaierror) and
|
||||||
exc_info.value.errno in (
|
exc_info.value.errno in (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue