mirror of https://github.com/apache/activemq.git
Ported tcp test case. Explicitly specify not to use embedded broker in ActiveMQConnectionFactory.
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@357310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6870470c6d
commit
22307339a5
|
@ -68,6 +68,7 @@ public class TwoBrokerTopicSendReceiveTest extends JmsTopicSendReceiveWithTwoCon
|
||||||
|
|
||||||
BrokerService broker = brokerFactory.getBroker();
|
BrokerService broker = brokerFactory.getBroker();
|
||||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(((TransportConnector)broker.getTransportConnectors().get(0)).getConnectUri());
|
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(((TransportConnector)broker.getTransportConnectors().get(0)).getConnectUri());
|
||||||
|
factory.setUseEmbeddedBroker(false);
|
||||||
|
|
||||||
return factory;
|
return factory;
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,7 @@ public class TwoBrokerTopicSendReceiveUsingJavaConfigurationTest extends TwoBrok
|
||||||
receiveBroker.start();
|
receiveBroker.start();
|
||||||
|
|
||||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://localhost:62002");
|
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://localhost:62002");
|
||||||
|
factory.setUseEmbeddedBroker(false);
|
||||||
return factory;
|
return factory;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -55,6 +56,7 @@ public class TwoBrokerTopicSendReceiveUsingJavaConfigurationTest extends TwoBrok
|
||||||
sendBroker.start();
|
sendBroker.start();
|
||||||
|
|
||||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://localhost:62001");
|
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("tcp://localhost:62001");
|
||||||
|
factory.setUseEmbeddedBroker(false);
|
||||||
return factory;
|
return factory;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|
|
@ -0,0 +1,87 @@
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Copyright 2004 Protique Ltd
|
||||||
|
*
|
||||||
|
* Licensed 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.activemq.usecases;
|
||||||
|
|
||||||
|
import javax.jms.JMSException;
|
||||||
|
|
||||||
|
import org.activemq.ActiveMQConnectionFactory;
|
||||||
|
import org.activemq.xbean.BrokerFactoryBean;
|
||||||
|
import org.activemq.broker.BrokerService;
|
||||||
|
import org.activemq.broker.TransportConnector;
|
||||||
|
import org.springframework.core.io.ClassPathResource;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @version $Revision: 1.1.1.1 $
|
||||||
|
*/
|
||||||
|
public class TwoBrokerTopicSendReceiveUsingTcpTest extends TwoBrokerTopicSendReceiveTest {
|
||||||
|
private BrokerService receiverBroker;
|
||||||
|
private BrokerService senderBroker;
|
||||||
|
|
||||||
|
protected void setUp() throws Exception {
|
||||||
|
BrokerFactoryBean brokerFactory;
|
||||||
|
|
||||||
|
brokerFactory = new BrokerFactoryBean(new ClassPathResource("org/activemq/usecases/receiver.xml"));
|
||||||
|
brokerFactory.afterPropertiesSet();
|
||||||
|
receiverBroker = brokerFactory.getBroker();
|
||||||
|
|
||||||
|
brokerFactory = new BrokerFactoryBean(new ClassPathResource("org/activemq/usecases/sender.xml"));
|
||||||
|
brokerFactory.afterPropertiesSet();
|
||||||
|
senderBroker = brokerFactory.getBroker();
|
||||||
|
|
||||||
|
super.setUp();
|
||||||
|
Thread.sleep(2000);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void tearDown() throws Exception {
|
||||||
|
super.tearDown();
|
||||||
|
|
||||||
|
if (receiverBroker != null) {
|
||||||
|
receiverBroker.stop();
|
||||||
|
}
|
||||||
|
if (senderBroker != null) {
|
||||||
|
senderBroker.stop();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected ActiveMQConnectionFactory createReceiverConnectionFactory() throws JMSException {
|
||||||
|
try {
|
||||||
|
ActiveMQConnectionFactory fac = new ActiveMQConnectionFactory(((TransportConnector)receiverBroker.getTransportConnectors().get(0)).getConnectUri());
|
||||||
|
fac.setUseEmbeddedBroker(false);
|
||||||
|
return fac;
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected ActiveMQConnectionFactory createSenderConnectionFactory() throws JMSException {
|
||||||
|
try {
|
||||||
|
ActiveMQConnectionFactory fac = new ActiveMQConnectionFactory(((TransportConnector)senderBroker.getTransportConnectors().get(0)).getConnectUri());
|
||||||
|
fac.setUseEmbeddedBroker(false);
|
||||||
|
return fac;
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue