AMQ-6599 - Properly apply soTimeout value to TcpTransport

https://issues.apache.org/jira/browse/AMQ-6599

The soTimeout value needs to be applied to the TcpTransport as well as
the socket because the NIO transports use the value later on when
establishing a connection
This commit is contained in:
Christopher L. Shannon (cshannon) 2017-02-17 08:02:37 -05:00
parent c0c9e9c0ab
commit f6bf823ded
3 changed files with 121 additions and 3 deletions

View File

@ -182,7 +182,9 @@ public class TcpTransportServer extends TransportServerThreadSupport implements
}
}
IntrospectionSupport.setProperties(socket, transportOptions);
//AMQ-6599 - don't strip out set properties on the socket as we need to set them
//on the Transport as well later
IntrospectionSupport.setProperties(socket, transportOptions, false);
}
}

View File

@ -136,7 +136,11 @@ public final class IntrospectionSupport {
return rc;
}
public static boolean setProperties(Object target, Map props) {
public static boolean setProperties(Object target, Map<?, ?> props) {
return setProperties(target, props, true);
}
public static boolean setProperties(Object target, Map<?, ?> props, boolean removeIfSet) {
boolean rc = false;
if (target == null) {
@ -149,7 +153,9 @@ public final class IntrospectionSupport {
for (Iterator<?> iter = props.entrySet().iterator(); iter.hasNext();) {
Map.Entry<?,?> entry = (Entry<?,?>)iter.next();
if (setProperty(target, (String)entry.getKey(), entry.getValue())) {
iter.remove();
if (removeIfSet) {
iter.remove();
}
rc = true;
}
}

View File

@ -0,0 +1,110 @@
/**
* 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.activemq.bugs;
import static org.junit.Assert.assertEquals;
import java.lang.reflect.Field;
import java.net.Socket;
import java.util.Arrays;
import java.util.Collection;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.broker.TransportConnection;
import org.apache.activemq.broker.TransportConnector;
import org.apache.activemq.transport.tcp.TcpTransport;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class AMQ6599Test {
public static final String KEYSTORE_TYPE = "jks";
public static final String PASSWORD = "password";
public static final String SERVER_KEYSTORE = "src/test/resources/server.keystore";
public static final String TRUST_KEYSTORE = "src/test/resources/client.keystore";
private String uri;
private final String protocol;
private BrokerService brokerService;
@Parameters(name="protocol={0}")
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{"auto+nio+ssl"}, {"auto+ssl"},
{"nio+ssl"}, {"ssl"},
{"tcp"}, {"nio"}
});
}
static {
System.setProperty("javax.net.ssl.trustStore", TRUST_KEYSTORE);
System.setProperty("javax.net.ssl.trustStorePassword", PASSWORD);
System.setProperty("javax.net.ssl.trustStoreType", KEYSTORE_TYPE);
System.setProperty("javax.net.ssl.keyStore", SERVER_KEYSTORE);
System.setProperty("javax.net.ssl.keyStorePassword", PASSWORD);
System.setProperty("javax.net.ssl.keyStoreType", KEYSTORE_TYPE);
}
@Before
public void before() throws Exception {
BrokerService brokerService = new BrokerService();
brokerService.setPersistent(false);
TransportConnector connector = brokerService.addConnector(protocol +
"://localhost:0?transport.soTimeout=3500");
connector.setName("connector");
uri = connector.getPublishableConnectString();
this.brokerService = brokerService;
brokerService.start();
brokerService.waitUntilStarted();
}
@After
public void after() throws Exception {
brokerService.stop();
brokerService.waitUntilStopped();
}
public AMQ6599Test(String protocol) {
this.protocol = protocol;
}
@Test(timeout = 30000)
public void testSoTimeout() throws Exception {
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory();
factory.setBrokerURL(uri);
factory.createConnection().start();
//Validate soTimeout value was set on the TcpTransport and the socket
//Before this patch the TcpTransport value did not have the option set which caused NIO not to work right
for (TransportConnection connection : brokerService.getTransportConnectorByName("connector").getConnections()) {
TcpTransport tcpTransport = connection.getTransport().narrow(TcpTransport.class);
Field socketField = TcpTransport.class.getDeclaredField("socket");
socketField.setAccessible(true);
Socket socket = (Socket) socketField.get(tcpTransport);
assertEquals(3500, tcpTransport.getSoTimeout());
assertEquals(3500, socket.getSoTimeout());
}
}
}