|
19 | 19 |
|
20 | 20 | import static org.junit.jupiter.api.Assertions.assertEquals;
|
21 | 21 | import static org.junit.jupiter.api.Assertions.assertFalse;
|
| 22 | +import static org.junit.jupiter.api.Assertions.assertNotNull; |
22 | 23 | import static org.junit.jupiter.api.Assertions.assertThrows;
|
23 | 24 | import static org.junit.jupiter.api.Assertions.assertTrue;
|
24 | 25 | import static org.junit.jupiter.api.Assertions.fail;
|
25 | 26 |
|
26 | 27 | import java.io.IOException;
|
| 28 | +import java.net.ServerSocket; |
27 | 29 | import java.net.SocketAddress;
|
28 | 30 | import java.net.SocketException;
|
29 | 31 | import java.net.SocketTimeoutException;
|
@@ -432,4 +434,49 @@ public void testAcceptNotBoundYet() throws Exception {
|
432 | 434 | ServerSocketChannel sc = newServerSocketChannel();
|
433 | 435 | assertThrows(NotYetBoundException.class, sc::accept);
|
434 | 436 | }
|
| 437 | + |
| 438 | + protected boolean mayTestBindNullThrowUnsupportedOperationException() { |
| 439 | + return true; |
| 440 | + } |
| 441 | + |
| 442 | + protected boolean mayTestBindNullHaveNullLocalSocketAddress() { |
| 443 | + return true; |
| 444 | + } |
| 445 | + |
| 446 | + protected void cleanupTestBindNull(ServerSocketChannel sc, SocketAddress addr) throws Exception { |
| 447 | + } |
| 448 | + |
| 449 | + protected ServerSocket socketIfPossible(ServerSocketChannel channel) { |
| 450 | + try { |
| 451 | + return channel.socket(); |
| 452 | + } catch (UnsupportedOperationException e) { |
| 453 | + return null; |
| 454 | + } |
| 455 | + } |
| 456 | + |
| 457 | + @Test |
| 458 | + public void testBindNull() throws Exception { |
| 459 | + try (ServerSocketChannel sc = newServerSocketChannel()) { |
| 460 | + ServerSocket s = socketIfPossible(sc); |
| 461 | + assertTrue(s == null || !s.isBound()); |
| 462 | + try { |
| 463 | + sc.bind(null); |
| 464 | + } catch (UnsupportedOperationException e) { |
| 465 | + if (mayTestBindNullThrowUnsupportedOperationException()) { |
| 466 | + // OK |
| 467 | + return; |
| 468 | + } else { |
| 469 | + throw e; |
| 470 | + } |
| 471 | + } |
| 472 | + assertTrue(s == null || s.isBound()); |
| 473 | + |
| 474 | + SocketAddress addr = sc.getLocalAddress(); |
| 475 | + if (!mayTestBindNullHaveNullLocalSocketAddress()) { |
| 476 | + assertNotNull(addr); |
| 477 | + } |
| 478 | + |
| 479 | + cleanupTestBindNull(sc, addr); |
| 480 | + } |
| 481 | + } |
435 | 482 | }
|
0 commit comments