Skip to content

Commit 40e9492

Browse files
committed
test: common: Improve binding of temporary address for Inet sockets
Retry if the port just became unavailable for whatever reason.
1 parent 7b67cb3 commit 40e9492

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

junixsocket-common/src/test/java/org/newsclub/net/unix/java/JavaAddressSpecifics.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,13 @@ public static SocketAddress wildcardBindAddress() throws IOException {
5353

5454
@Override
5555
public SocketAddress newTempAddress() throws IOException {
56-
return wildcardBindAddress();
56+
SocketAddress bindAddr = new InetSocketAddress(InetAddress.getLoopbackAddress(), 0);
57+
try (ServerSocket sock = new ServerSocket()) {
58+
sock.bind(bindAddr);
59+
return sock.getLocalSocketAddress();
60+
} catch (BindException e) {
61+
throw new TestAbortedException("Cannot bind to " + bindAddr, e);
62+
}
5763
}
5864

5965
@Override

0 commit comments

Comments
 (0)