mirror of https://github.com/apache/activemq.git
Test cleanup
This commit is contained in:
parent
df06bdabdc
commit
73e8d10982
|
@ -16,11 +16,16 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.bugs;
|
package org.apache.activemq.bugs;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
import javax.jms.Connection;
|
import javax.jms.Connection;
|
||||||
import javax.jms.DeliveryMode;
|
import javax.jms.DeliveryMode;
|
||||||
import javax.jms.Destination;
|
import javax.jms.Destination;
|
||||||
|
@ -30,7 +35,6 @@ import javax.jms.MessageConsumer;
|
||||||
import javax.jms.MessageProducer;
|
import javax.jms.MessageProducer;
|
||||||
import javax.jms.Session;
|
import javax.jms.Session;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
|
||||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||||
import org.apache.activemq.advisory.ConsumerEvent;
|
import org.apache.activemq.advisory.ConsumerEvent;
|
||||||
import org.apache.activemq.advisory.ConsumerEventSource;
|
import org.apache.activemq.advisory.ConsumerEventSource;
|
||||||
|
@ -39,18 +43,26 @@ import org.apache.activemq.broker.BrokerFactory;
|
||||||
import org.apache.activemq.broker.BrokerService;
|
import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.command.ActiveMQQueue;
|
import org.apache.activemq.command.ActiveMQQueue;
|
||||||
import org.apache.activemq.transport.http.WaitForJettyListener;
|
import org.apache.activemq.transport.http.WaitForJettyListener;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Rule;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.rules.TestName;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class AMQ2764Test extends TestCase {
|
public class AMQ2764Test {
|
||||||
|
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(AMQ2764Test.class);
|
private static final Logger LOG = LoggerFactory.getLogger(AMQ2764Test.class);
|
||||||
|
|
||||||
|
@Rule public TestName name = new TestName();
|
||||||
|
|
||||||
private BrokerService brokerOne;
|
private BrokerService brokerOne;
|
||||||
private BrokerService brokerTwo;
|
private BrokerService brokerTwo;
|
||||||
private Destination destination;
|
private Destination destination;
|
||||||
private ArrayList<Connection> connections = new ArrayList<Connection>();
|
private final ArrayList<Connection> connections = new ArrayList<Connection>();
|
||||||
|
|
||||||
|
@Test(timeout = 60000)
|
||||||
public void testInactivityMonitor() throws Exception {
|
public void testInactivityMonitor() throws Exception {
|
||||||
|
|
||||||
startBrokerTwo();
|
startBrokerTwo();
|
||||||
|
@ -59,8 +71,6 @@ public class AMQ2764Test extends TestCase {
|
||||||
startBrokerOne();
|
startBrokerOne();
|
||||||
brokerOne.waitUntilStarted();
|
brokerOne.waitUntilStarted();
|
||||||
|
|
||||||
Thread.sleep(2000);
|
|
||||||
|
|
||||||
ActiveMQConnectionFactory secondProducerConnectionFactory = createBrokerTwoHttpConnectionFactory();
|
ActiveMQConnectionFactory secondProducerConnectionFactory = createBrokerTwoHttpConnectionFactory();
|
||||||
ActiveMQConnectionFactory consumerConnectionFactory = createBrokerOneHttpConnectionFactory();
|
ActiveMQConnectionFactory consumerConnectionFactory = createBrokerOneHttpConnectionFactory();
|
||||||
|
|
||||||
|
@ -73,36 +83,35 @@ public class AMQ2764Test extends TestCase {
|
||||||
MessageProducer producer = session.createProducer(destination);
|
MessageProducer producer = session.createProducer(destination);
|
||||||
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
|
producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
|
||||||
|
|
||||||
|
final int expectedMessagesReceived = 1000;
|
||||||
|
|
||||||
final int expectedMessagesReceived = 2000;
|
for (int i = 1; i <= expectedMessagesReceived; i++) {
|
||||||
|
|
||||||
for (int i = 0; i < expectedMessagesReceived; i++) {
|
|
||||||
Message message = session.createMessage();
|
Message message = session.createMessage();
|
||||||
producer.send(message);
|
producer.send(message);
|
||||||
|
if (i % 200 == 0) {
|
||||||
LOG.info("sent message " + i);
|
LOG.info("sent message " + i);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
for (int i = 0; i < expectedMessagesReceived; i++) {
|
for (int i = 1; i <= expectedMessagesReceived; i++) {
|
||||||
Message message = consumer.receive(2000);
|
Message message = consumer.receive(2000);
|
||||||
if (message == null) {
|
if (message == null) {
|
||||||
fail("Didn't receive a message");
|
fail("Didn't receive a message");
|
||||||
}
|
}
|
||||||
|
if (i % 200 == 0) {
|
||||||
LOG.info("received message " + i);
|
LOG.info("received message " + i);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test(timeout = 60000)
|
||||||
public void testBrokerRestart() throws Exception {
|
public void testBrokerRestart() throws Exception {
|
||||||
|
|
||||||
startBrokerTwo();
|
startBrokerTwo();
|
||||||
brokerTwo.waitUntilStarted();
|
brokerTwo.waitUntilStarted();
|
||||||
|
|
||||||
startBrokerOne();
|
startBrokerOne();
|
||||||
brokerOne.waitUntilStarted();
|
brokerOne.waitUntilStarted();
|
||||||
|
|
||||||
Thread.sleep(5000);
|
|
||||||
|
|
||||||
ActiveMQConnectionFactory producerConnectionFactory = createBrokerOneConnectionFactory();
|
ActiveMQConnectionFactory producerConnectionFactory = createBrokerOneConnectionFactory();
|
||||||
ActiveMQConnectionFactory secondProducerConnectionFactory = createBrokerTwoConnectionFactory();
|
ActiveMQConnectionFactory secondProducerConnectionFactory = createBrokerTwoConnectionFactory();
|
||||||
ActiveMQConnectionFactory consumerConnectionFactory = createBrokerOneConnectionFactory();
|
ActiveMQConnectionFactory consumerConnectionFactory = createBrokerOneConnectionFactory();
|
||||||
|
@ -177,11 +186,11 @@ public class AMQ2764Test extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ActiveMQConnectionFactory createBrokerOneConnectionFactory() {
|
protected ActiveMQConnectionFactory createBrokerOneConnectionFactory() {
|
||||||
return new ActiveMQConnectionFactory("vm://broker1");
|
return new ActiveMQConnectionFactory("vm://broker1?create=false");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ActiveMQConnectionFactory createBrokerTwoConnectionFactory() {
|
protected ActiveMQConnectionFactory createBrokerTwoConnectionFactory() {
|
||||||
return new ActiveMQConnectionFactory("vm://broker2");
|
return new ActiveMQConnectionFactory("vm://broker2?create=false");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected ActiveMQConnectionFactory createBrokerOneHttpConnectionFactory() {
|
protected ActiveMQConnectionFactory createBrokerOneHttpConnectionFactory() {
|
||||||
|
@ -192,18 +201,16 @@ public class AMQ2764Test extends TestCase {
|
||||||
return new ActiveMQConnectionFactory("http://localhost:61617");
|
return new ActiveMQConnectionFactory("http://localhost:61617");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void setUp() throws Exception {
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
LOG.info("===============================================================================");
|
LOG.info("===== Starting test {} ================", getTestName());
|
||||||
LOG.info("Running Test Case: " + getName());
|
|
||||||
LOG.info("===============================================================================");
|
|
||||||
|
|
||||||
destination = new ActiveMQQueue("RECONNECT.TEST.QUEUE");
|
destination = new ActiveMQQueue("RECONNECT.TEST.QUEUE");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void tearDown() throws Exception {
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
disposeConsumerConnections();
|
disposeConsumerConnections();
|
||||||
|
Thread.sleep(10);
|
||||||
try {
|
try {
|
||||||
stopBrokerOne();
|
stopBrokerOne();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
|
@ -212,6 +219,12 @@ public class AMQ2764Test extends TestCase {
|
||||||
stopBrokerTwo();
|
stopBrokerTwo();
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LOG.info("===== Finished test {} ================", getTestName());
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String getTestName() {
|
||||||
|
return name.getMethodName();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void disposeConsumerConnections() {
|
protected void disposeConsumerConnections() {
|
||||||
|
@ -273,6 +286,7 @@ public class AMQ2764Test extends TestCase {
|
||||||
|
|
||||||
ConsumerEventSource source = new ConsumerEventSource(connection, destination);
|
ConsumerEventSource source = new ConsumerEventSource(connection, destination);
|
||||||
source.setConsumerListener(new ConsumerListener() {
|
source.setConsumerListener(new ConsumerListener() {
|
||||||
|
@Override
|
||||||
public void onConsumerEvent(ConsumerEvent event) {
|
public void onConsumerEvent(ConsumerEvent event) {
|
||||||
rc.set(event.getConsumerCount());
|
rc.set(event.getConsumerCount());
|
||||||
}
|
}
|
||||||
|
@ -283,24 +297,24 @@ public class AMQ2764Test extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void waitForConsumerToArrive(AtomicInteger consumerCounter) throws InterruptedException {
|
protected void waitForConsumerToArrive(AtomicInteger consumerCounter) throws InterruptedException {
|
||||||
for (int i = 0; i < 100; i++) {
|
for (int i = 0; i < 200; i++) {
|
||||||
if (consumerCounter.get() > 0) {
|
if (consumerCounter.get() > 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Thread.sleep(100);
|
Thread.sleep(50);
|
||||||
}
|
}
|
||||||
|
|
||||||
fail("The consumer did not arrive.");
|
fail("The consumer did not arrive.");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void waitForConsumerToLeave(AtomicInteger consumerCounter) throws InterruptedException {
|
protected void waitForConsumerToLeave(AtomicInteger consumerCounter) throws InterruptedException {
|
||||||
for (int i = 0; i < 100; i++) {
|
for (int i = 0; i < 200; i++) {
|
||||||
if (consumerCounter.get() == 0) {
|
if (consumerCounter.get() == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Thread.sleep(100);
|
Thread.sleep(50);
|
||||||
}
|
}
|
||||||
|
|
||||||
fail("The consumer did not leave.");
|
fail("The consumer did not leave.");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue