Skip to content

Instantly share code, notes, and snippets.

@hoijui
Created December 28, 2015 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoijui/e77f5d276b6b3c29b123 to your computer and use it in GitHub Desktop.
Save hoijui/e77f5d276b6b3c29b123 to your computer and use it in GitHub Desktop.
JUnit test to demonstrate possible bug (blocking) with DatagramChannel#disconnect(), either in the implementation or the documentation
/*
* Public Domain
*/
import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.DatagramChannel;
import org.junit.Test;
public class DatagramChannelDisconnectBug {
@Test
public void blockingOnDisconnect() throws Exception {
final int portSender = 6666;
final int portReceiver = 7777;
final SocketAddress senderSocket = new InetSocketAddress(InetAddress.getLocalHost(),
portSender);
final SocketAddress receiverSocket = new InetSocketAddress(InetAddress.getLocalHost(),
portReceiver);
DatagramChannel senderChannel = null;
DatagramChannel receiverChannel = null;
try {
senderChannel = DatagramChannel.open();
senderChannel.socket().bind(senderSocket);
senderChannel.socket().setReuseAddress(true);
receiverChannel = DatagramChannel.open();
receiverChannel.socket().bind(receiverSocket);
receiverChannel.socket().setReuseAddress(true);
senderChannel.connect(receiverSocket);
receiverChannel.connect(senderSocket); // NOTE try commenting out this line
tryReceiving(receiverChannel);
} finally {
System.err.println("receiverChannel connected (before): "
+ receiverChannel.isConnected());
if (receiverChannel.isConnected()) // NOTE try commenting out this line
{
System.err.println("receiverChannel.disconnect() ...");
receiverChannel.disconnect();
System.err.println("receiverChannel disconnected.");
}
System.err.println("receiverChannel connected (after): "
+ receiverChannel.isConnected());
senderChannel.disconnect();
receiverChannel.close();
senderChannel.close();
}
}
private void tryReceiving(final DatagramChannel receiver) throws Exception {
receiver.configureBlocking(true);
final Thread readingThread = new Thread() {
@Override
public void run() {
try {
final ByteBuffer targetBuf = ByteBuffer.allocate(100);
receiver.receive(targetBuf); // NOTE try with a breakpoint on this line
} catch (final IOException ex) {
throw new RuntimeException(ex);
}
}
};
readingThread.start();
Thread.sleep(1000);
throw new IOException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment