forked from apache/avro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AVRO-1407: Java: Fix infinite loop on slow connect in NettyTransceive…
…r. Contributed by Gareth Davis. git-svn-id: https://svn.apache.org/repos/asf/avro/trunk@1641894 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
3 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
lang/java/ipc/src/test/java/org/apache/avro/ipc/NettyTransceiverWhenFailsToConnect.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.avro.ipc; | ||
|
||
import junit.framework.Assert; | ||
import org.jboss.netty.channel.ChannelFactory; | ||
import org.jboss.netty.channel.ChannelPipeline; | ||
import org.jboss.netty.channel.socket.SocketChannel; | ||
import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory; | ||
import org.junit.Test; | ||
|
||
import java.io.IOException; | ||
import java.net.InetSocketAddress; | ||
import java.net.ServerSocket; | ||
import java.util.concurrent.Executors; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
/** | ||
* This is a very specific test that verifies that if the NettyTransceiver fails | ||
* to connect it cleans up the netty channel that it has created. | ||
*/ | ||
public class NettyTransceiverWhenFailsToConnect { | ||
|
||
@Test(expected = IOException.class) | ||
public void testNettyTransceiverReleasesNettyChannelOnFailingToConnect() throws Exception { | ||
ServerSocket serverSocket = null; | ||
LastChannelRememberingChannelFactory socketChannelFactory = null; | ||
|
||
try { | ||
serverSocket = new ServerSocket(0); | ||
socketChannelFactory = new LastChannelRememberingChannelFactory(); | ||
|
||
try { | ||
new NettyTransceiver( | ||
new InetSocketAddress(serverSocket.getLocalPort()), | ||
socketChannelFactory, | ||
1L | ||
); | ||
} finally { | ||
assertEquals("expected that the channel opened by the transceiver is closed", | ||
false, socketChannelFactory.lastChannel.isOpen()); | ||
} | ||
} finally { | ||
|
||
if (serverSocket != null) { | ||
// closing the server socket will actually free up the open channel in the | ||
// transceiver, which would have hung otherwise (pre AVRO-1407) | ||
serverSocket.close(); | ||
} | ||
|
||
if (socketChannelFactory != null) { | ||
socketChannelFactory.releaseExternalResources(); | ||
} | ||
} | ||
} | ||
|
||
class LastChannelRememberingChannelFactory extends NioClientSocketChannelFactory implements ChannelFactory { | ||
|
||
volatile SocketChannel lastChannel; | ||
|
||
@Override | ||
public SocketChannel newChannel(ChannelPipeline pipeline) { | ||
return lastChannel= super.newChannel(pipeline); | ||
} | ||
} | ||
} |