Skip to content
Open
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
@@ -0,0 +1,175 @@
/**
* 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.transport.amqp;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;

import java.net.Socket;
import java.net.ServerSocket;
import java.net.URI;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.net.SocketFactory;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;

import org.apache.activemq.transport.MutexTransport;
import org.apache.activemq.transport.Transport;
import org.apache.activemq.transport.TransportFactory;
import org.apache.activemq.transport.TransportFilter;
import org.apache.activemq.transport.tcp.SslTransport;
import org.apache.activemq.transport.tcp.TcpTransport;
import org.junit.After;
import org.junit.Test;
import org.junit.experimental.categories.Category;

@Category(ParallelTest.class)
public class AmqpTransportFactoryConfigurationTest {

private final List<TcpTransport> createdTransports = new ArrayList<>();

@After
public void cleanup() throws Exception {
for (TcpTransport transport : createdTransports) {
Socket socket = transport.narrow(Socket.class);
if (socket != null && !socket.isClosed()) {
socket.close();
}
}
createdTransports.clear();
}

@Test
public void testServerConfigureStripsMutexTransportForAllAmqpFactories() throws Exception {
assertServerConfigureStripsMutex(new AmqpTransportFactory());
assertServerConfigureStripsMutex(new AmqpSslTransportFactory());
assertServerConfigureStripsMutex(new AmqpNioTransportFactory());
assertServerConfigureStripsMutex(new AmqpNioSslTransportFactory());
}

@Test
public void testCompositeConfigureAppliesAmqpAndWireFormatPropertiesForAllAmqpFactories() throws Exception {
assertCompositeConfigureAppliesProperties(new AmqpTransportFactory());
assertCompositeConfigureAppliesProperties(new AmqpSslTransportFactory());
assertCompositeConfigureAppliesProperties(new AmqpNioTransportFactory());
assertCompositeConfigureAppliesProperties(new AmqpNioSslTransportFactory());
}

@Test
public void testAllAmqpFactoriesWireAmqpInactivityMonitor() throws Exception {
assertAmqpFactoriesWireAmqpInactivityMonitor(new AmqpTransportFactory());
assertAmqpFactoriesWireAmqpInactivityMonitor(new AmqpSslTransportFactory());
assertAmqpFactoriesWireAmqpInactivityMonitor(new AmqpNioTransportFactory());
assertAmqpFactoriesWireAmqpInactivityMonitor(new AmqpNioSslTransportFactory());
}

private void assertServerConfigureStripsMutex(TransportFactory factory) throws Exception {
Transport configured = factory.serverConfigure(
createTransportForFactory(factory, new AmqpWireFormat()),
new AmqpWireFormat(),
new HashMap<String, Object>());

assertFalse("AMQP serverConfigure should strip the broker-side MutexTransport",
configured instanceof MutexTransport);
}

private void assertCompositeConfigureAppliesProperties(TransportFactory factory) throws Exception {
Map<String, String> options = new HashMap<>();
options.put("transformer", "raw");
options.put("producerCredit", "17");
options.put("wireFormat.maxFrameSize", "4096");
options.put("wireFormat.connectAttemptTimeout", "1234");

Transport configured = factory.compositeConfigure(
createTransportForFactory(factory, new AmqpWireFormat()),
new AmqpWireFormat(),
options);

AmqpTransportFilter filter = findInChain(configured, AmqpTransportFilter.class);
assertNotNull("Expected AmqpTransportFilter in configured transport chain", filter);
assertEquals("raw", filter.getTransformer());
assertEquals(17, filter.getProducerCredit());
assertEquals(4096L, filter.getMaxFrameSize());
assertEquals(1234, filter.getConnectAttemptTimeout());
}

private void assertAmqpFactoriesWireAmqpInactivityMonitor(TransportFactory factory) throws Exception {
Transport configured = factory.compositeConfigure(
createTransportForFactory(factory, new AmqpWireFormat()),
new AmqpWireFormat(),
new HashMap<String, String>());

AmqpInactivityMonitor monitor = findInChain(configured, AmqpInactivityMonitor.class);
AmqpTransportFilter filter = findInChain(configured, AmqpTransportFilter.class);

assertNotNull("Expected AmqpInactivityMonitor in configured transport chain", monitor);
assertNotNull("Expected AmqpTransportFilter in configured transport chain", filter);
assertTrue("Filter should report inactivity monitor as enabled", filter.isUseInactivityMonitor());
assertSame("Factory should wire the same monitor instance into the AMQP filter",
monitor, filter.getInactivityMonitor());
}

private TcpTransport createTcpTransport(AmqpWireFormat wireFormat) throws Exception {
int dynamicPort = findAvailablePort();
return new TcpTransport(
wireFormat,
SocketFactory.getDefault(),
new URI("tcp://localhost:" + dynamicPort),
null);
}

private int findAvailablePort() throws Exception {
try (ServerSocket socket = new ServerSocket(0)) {
return socket.getLocalPort();
}
}

private TcpTransport createTransportForFactory(TransportFactory factory, AmqpWireFormat wireFormat) throws Exception {
TcpTransport transport;
if (factory instanceof AmqpSslTransportFactory || factory instanceof AmqpNioSslTransportFactory) {
SSLSocket socket = (SSLSocket) SSLSocketFactory.getDefault().createSocket();
transport = new SslTransport(wireFormat, socket);
} else {
transport = createTcpTransport(wireFormat);
}

createdTransports.add(transport);
return transport;
}

private <T> T findInChain(Transport transport, Class<T> type) {
Transport current = transport;
while (current != null) {
T found = current.narrow(type);
if (found != null) {
return found;
}
if (!(current instanceof TransportFilter)) {
return null;
}
current = ((TransportFilter) current).getNext();
}
return null;
}
}
Loading