mirror of https://github.com/apache/activemq.git
prevent hanging test stalling the build.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1324779 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
76537741fc
commit
0c2144c357
|
@ -16,11 +16,6 @@
|
|||
*/
|
||||
package org.apache.activemq.usecases;
|
||||
|
||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||
import org.apache.activemq.JmsMultipleBrokersTestSupport;
|
||||
import org.apache.log4j.Logger;
|
||||
import org.springframework.core.io.ClassPathResource;
|
||||
|
||||
import javax.jms.Connection;
|
||||
import javax.jms.Message;
|
||||
import javax.jms.MessageConsumer;
|
||||
|
@ -28,10 +23,20 @@ import javax.jms.MessageProducer;
|
|||
import javax.jms.Queue;
|
||||
import javax.jms.Session;
|
||||
|
||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||
import org.apache.activemq.JmsMultipleBrokersTestSupport;
|
||||
import org.apache.log4j.Logger;
|
||||
import org.springframework.core.io.ClassPathResource;
|
||||
|
||||
public class ClientRebalanceTest extends JmsMultipleBrokersTestSupport {
|
||||
private static final Logger LOG = Logger.getLogger(ClientRebalanceTest.class);
|
||||
private static final String QUEUE_NAME = "Test.ClientRebalanceTest";
|
||||
|
||||
protected void setUp() throws Exception {
|
||||
setAutoFail(true);
|
||||
super.setUp();
|
||||
}
|
||||
|
||||
public void testRebalance() throws Exception {
|
||||
createBroker(new ClassPathResource("org/apache/activemq/usecases/rebalance-broker1.xml"));
|
||||
createBroker(new ClassPathResource("org/apache/activemq/usecases/rebalance-broker2.xml"));
|
||||
|
@ -40,7 +45,6 @@ public class ClientRebalanceTest extends JmsMultipleBrokersTestSupport {
|
|||
|
||||
brokers.get("b1").broker.waitUntilStarted();
|
||||
|
||||
|
||||
LOG.info("Starting connection");
|
||||
|
||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory("failover:(tcp://localhost:61616,tcp://localhost:61617)?randomize=false");
|
||||
|
@ -55,17 +59,14 @@ public class ClientRebalanceTest extends JmsMultipleBrokersTestSupport {
|
|||
Message msg = consumer.receive(2000);
|
||||
assertNotNull(msg);
|
||||
|
||||
|
||||
// introduce third broker
|
||||
createBroker(new ClassPathResource("org/apache/activemq/usecases/rebalance-broker3.xml"));
|
||||
brokers.get("b3").broker.waitUntilStarted();
|
||||
|
||||
Thread.sleep(1000);
|
||||
|
||||
|
||||
LOG.info("Stopping broker 1");
|
||||
|
||||
|
||||
brokers.get("b1").broker.stop();
|
||||
brokers.get("b1").broker.waitUntilStopped();
|
||||
|
||||
|
@ -85,5 +86,4 @@ public class ClientRebalanceTest extends JmsMultipleBrokersTestSupport {
|
|||
msg = consumer.receive(2000);
|
||||
assertNotNull(msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue