[#1830] Add testcase for write to not bound DatagramChannel impls and revert change in OIO as it breaks things as the udnerlying socket lazy binds

This commit is contained in:
Norman Maurer 2013-09-12 09:27:43 +02:00
parent f4f04a08c2
commit 357677d8fa
2 changed files with 34 additions and 1 deletions

View File

@ -62,4 +62,37 @@ public class DatagramUnicastTest extends AbstractDatagramTest {
sc.close().sync();
cc.close().sync();
}
@Test
public void testSimpleSendWithoutBind() throws Throwable {
//run();
}
public void testSimpleSendWithoutBind(Bootstrap sb, Bootstrap cb) throws Throwable {
final CountDownLatch latch = new CountDownLatch(1);
sb.handler(new SimpleChannelInboundHandler<DatagramPacket>() {
@Override
public void channelRead0(ChannelHandlerContext ctx, DatagramPacket msg) throws Exception {
assertEquals(1, msg.content().readInt());
latch.countDown();
}
});
cb.handler(new SimpleChannelInboundHandler<Object>() {
@Override
public void channelRead0(ChannelHandlerContext ctx, Object msgs) throws Exception {
// Nothing will be sent.
}
});
Channel sc = sb.bind().sync().channel();
Channel cc = cb.register().sync().channel();
cc.writeAndFlush(new DatagramPacket(Unpooled.copyInt(1), addr)).sync();
assertTrue(latch.await(10, TimeUnit.SECONDS));
sc.close().sync();
cc.close().sync();
}
}

View File

@ -125,7 +125,7 @@ public class OioDatagramChannel extends AbstractOioMessageChannel
@Override
public boolean isActive() {
return isOpen();
return isOpen() && socket.isBound();
}
@Override