parametrize dual stack test to ease debugging (#7099)

This commit is contained in:
Maximilian Hils 2024-08-13 19:05:18 +02:00 committed by GitHub
parent 46155cdee6
commit b4bf2f2282
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 15 deletions

View File

@ -290,24 +290,30 @@ async def test_udp_start_error():
await inst.stop()
async def test_dual_stack(caplog_async):
@pytest.mark.parametrize("ip_version", ["v4", "v6"])
@pytest.mark.parametrize("protocol", ["tcp", "udp"])
async def test_dual_stack(ip_version, protocol, caplog_async):
"""Test that a server bound to "" binds on both IPv4 and IPv6 for both TCP and UDP."""
if ip_version == "v6" and no_ipv6:
pytest.skip("Skipped because IPv6 is unavailable.")
if ip_version == "v4":
addr = "127.0.0.1"
else:
addr = "::1"
caplog_async.set_level("DEBUG")
manager = MagicMock()
manager.connections = {}
with taddons.context():
inst = ServerInstance.make("dns@:0", manager)
inst = ServerInstance.make("dns@0", manager)
await inst.start()
assert await caplog_async.await_log("server listening")
_, port, *_ = inst.listen_addrs[0]
for addr in ("127.0.0.1", "::1"):
if addr == "::1" and no_ipv6:
continue
for proto in ("tcp", "udp"):
caplog_async.clear()
if proto == "tcp":
if protocol == "tcp":
_, stream = await asyncio.open_connection(addr, port)
else:
stream = await mitmproxy_rs.open_udp_connection(addr, port)