|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
29 | 29 | import java.io.IOException;
|
30 | 30 | import java.net.DatagramPacket;
|
31 | 31 | import java.net.DatagramSocket;
|
| 32 | +import java.net.InetSocketAddress; |
32 | 33 | import java.net.InetAddress;
|
33 | 34 | import java.net.MulticastSocket;
|
34 | 35 | import java.net.SocketException;
|
@@ -69,37 +70,38 @@ public void setUp() throws IOException {
|
69 | 70 |
|
70 | 71 | // Addresses
|
71 | 72 | loopbackAddr = InetAddress.getLoopbackAddress();
|
72 |
| - //wildcardAddr = new InetSocketAddress(0).getAddress(); |
| 73 | + wildcardAddr = new InetSocketAddress(0).getAddress(); |
73 | 74 |
|
74 | 75 | // Packets
|
75 | 76 | // loopback w/port 0
|
76 | 77 | loopbackZeroPkt = new DatagramPacket(buf, 0, buf.length);
|
77 | 78 | loopbackZeroPkt.setAddress(loopbackAddr);
|
78 | 79 | loopbackZeroPkt.setPort(0);
|
79 | 80 |
|
80 |
| - /* |
81 |
| - //Commented until JDK-8236852 is fixed |
82 |
| -
|
83 | 81 | // wildcard w/port 0
|
84 | 82 | wildcardZeroPkt = new DatagramPacket(buf, 0, buf.length);
|
85 | 83 | wildcardZeroPkt.setAddress(wildcardAddr);
|
86 | 84 | wildcardZeroPkt.setPort(0);
|
87 | 85 |
|
88 |
| - //Commented until JDK-8236807 is fixed |
89 |
| -
|
90 | 86 | // wildcard addr w/valid port
|
| 87 | + // Not currently tested. See JDK-8236807 |
91 | 88 | wildcardValidPkt = new DatagramPacket(buf, 0, buf.length);
|
92 |
| - var addr = socket.getAddress(); |
93 |
| - wildcardValidPkt.setAddress(addr); |
94 |
| - wildcardValidPkt.setPort(socket.getLocalPort()); |
95 |
| - */ |
| 89 | + wildcardValidPkt.setAddress(wildcardAddr); |
| 90 | + wildcardValidPkt.setPort(datagramSocket.getLocalPort()); |
96 | 91 | }
|
97 | 92 |
|
98 | 93 | @DataProvider(name = "data")
|
99 | 94 | public Object[][] variants() {
|
100 | 95 | return new Object[][]{
|
101 | 96 | { datagramSocket, loopbackZeroPkt },
|
| 97 | + { datagramSocket, wildcardZeroPkt }, |
| 98 | + // Re-enable when JDK-8236807 fixed |
| 99 | + //{ datagramSocket, wildcardValidPkt }, |
| 100 | + |
102 | 101 | { datagramSocketAdaptor, loopbackZeroPkt },
|
| 102 | + { datagramSocketAdaptor, wildcardZeroPkt }, |
| 103 | + // Re-enable when JDK-8236807 fixed |
| 104 | + //{ datagramSocketAdaptor, wildcardValidPkt }, |
103 | 105 | };
|
104 | 106 | }
|
105 | 107 |
|
|
1 commit comments
openjdk-notifier[bot] commentedon Nov 1, 2023
Review
Issues