test: enable rpc_bind on macOS and BSD

`rpc_bind` uses `all_interfaces` to find a non-loopback IPv4 address and `get_bind_addrs` to verify the node's listening sockets.
Add `all_interfaces` support for macOS, FreeBSD, NetBSD, and OpenBSD using `ifconfig -au`, switch the test to the POSIX platform guard so it runs there too, and fail early if no IPv4 interfaces are returned.

Co-authored-by: Sjors Provoost <sjors@sprovoost.nl>
This commit is contained in:
Lőrinc
2026-01-11 20:33:36 +01:00
parent 7236a05503
commit 1950da94fc
2 changed files with 39 additions and 26 deletions

View File

@@ -17,8 +17,7 @@ class RPCBindTest(BitcoinTestFramework):
self.supports_cli = False
def skip_test_if_missing_module(self):
# due to OS-specific network stats queries, this test works only on Linux
self.skip_if_platform_not_linux()
self.skip_if_platform_not_posix()
def setup_network(self):
self.add_nodes(self.num_nodes, None)
@@ -105,8 +104,11 @@ class RPCBindTest(BitcoinTestFramework):
raise SkipTest("This test requires ipv6 support.")
self.log.info("Check for non-loopback interface")
interfaces = all_interfaces()
if not interfaces:
raise AssertionError("all_interfaces() returned no IPv4 interfaces")
self.non_loopback_ip = None
for name,ip in all_interfaces():
for name,ip in interfaces:
if ip != '127.0.0.1':
self.non_loopback_ip = ip
break