Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.
/ jdk16u Public archive

8259628: jdk/net/ExtendedSocketOption/AsynchronousSocketChannelNAPITest.java fails intermittently #27

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -95,7 +95,7 @@ public void testSetGetOptionServerSocketChannel() throws IOException {

@Test
public void testSocketChannel() throws Exception {
int socketID, clientID, tempID = 0;
int socketID, clientID, originalClientID = 0;
boolean initialRun = true;
try (var ss = AsynchronousServerSocketChannel.open()) {
ss.bind(new InetSocketAddress(hostAddr, 0));
@@ -108,20 +108,21 @@ public void testSocketChannel() throws Exception {

for (int i = 0; i < 10; i++) {
s.write(ByteBuffer.wrap("test".getBytes()));

socketID = s.getOption(SO_INCOMING_NAPI_ID);
assertEquals(socketID, 0, "AsynchronousSocketChannel: Sender");

c.read(ByteBuffer.allocate(128));
c.read(ByteBuffer.allocate(128)).get();
clientID = ss.getOption(SO_INCOMING_NAPI_ID);

// check ID remains consistent
if (initialRun) {
assertTrue(clientID >= 0, "AsynchronousSocketChannel: Receiver");
} else {
assertEquals(clientID, tempID);
initialRun = false;
originalClientID = clientID;
} else {
assertEquals(clientID, originalClientID);
}
tempID = clientID;
}
}
}