mirror of https://github.com/apache/activemq.git
Updating testcase.. this new version fails very fast now.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@679849 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ec35afa9ea
commit
08e01e7fb4
|
@ -30,6 +30,8 @@ import javax.jms.TextMessage;
|
|||
import junit.framework.TestCase;
|
||||
import org.apache.activemq.ActiveMQConnectionFactory;
|
||||
import org.apache.activemq.broker.BrokerService;
|
||||
import org.apache.activemq.broker.region.policy.PolicyEntry;
|
||||
import org.apache.activemq.broker.region.policy.PolicyMap;
|
||||
import org.apache.activemq.command.ActiveMQQueue;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
@ -58,6 +60,15 @@ public class AMQ1866 extends TestCase {
|
|||
protected void setUp() throws Exception {
|
||||
// Start an embedded broker up.
|
||||
brokerService = new BrokerService();
|
||||
brokerService.deleteAllMessages();
|
||||
|
||||
// A small max page size makes this issue occur faster.
|
||||
PolicyMap policyMap = new PolicyMap();
|
||||
PolicyEntry pe = new PolicyEntry();
|
||||
pe.setMaxPageSize(1);
|
||||
policyMap.put(new ActiveMQQueue(">"), pe);
|
||||
brokerService.setDestinationPolicy(policyMap);
|
||||
|
||||
brokerService.addConnector(ACTIVEMQ_BROKER_BIND);
|
||||
brokerService.start();
|
||||
destination = new ActiveMQQueue(getName());
|
||||
|
@ -68,52 +79,65 @@ public class AMQ1866 extends TestCase {
|
|||
// Stop any running threads.
|
||||
shutdown.set(true);
|
||||
for (Thread t : threads) {
|
||||
t.interrupt();
|
||||
t.join();
|
||||
}
|
||||
brokerService.stop();
|
||||
}
|
||||
|
||||
// Failing
|
||||
public void testConsumerSlowDownPrefetch0() throws InterruptedException {
|
||||
public void testConsumerSlowDownPrefetch0() throws Exception {
|
||||
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616?jms.prefetchPolicy.queuePrefetch=0";
|
||||
doTestConsumerSlowDown();
|
||||
}
|
||||
|
||||
// Failing
|
||||
public void testConsumerSlowDownPrefetch10() throws InterruptedException {
|
||||
public void testConsumerSlowDownPrefetch10() throws Exception {
|
||||
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616?jms.prefetchPolicy.queuePrefetch=10";
|
||||
doTestConsumerSlowDown();
|
||||
}
|
||||
|
||||
// Passing
|
||||
public void testConsumerSlowDownDefaultPrefetch() throws InterruptedException {
|
||||
public void testConsumerSlowDownDefaultPrefetch() throws Exception {
|
||||
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616";
|
||||
doTestConsumerSlowDown();
|
||||
}
|
||||
|
||||
public void doTestConsumerSlowDown() throws InterruptedException {
|
||||
ProducerThread p1 = new ProducerThread("Producer-1");
|
||||
threads.add(p1);
|
||||
p1.start();
|
||||
public void doTestConsumerSlowDown() throws Exception {
|
||||
|
||||
// Wait a bit before starting the consumers to load up the queues a bit..
|
||||
// If the queue is loaded up it seems that the even the Default Prefetch size case fails.
|
||||
Thread.sleep(10000);
|
||||
// Preload the queue.
|
||||
produce(20000);
|
||||
|
||||
Thread producer = new Thread() {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
while(!shutdown.get()) {
|
||||
produce(1000);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
}
|
||||
}
|
||||
};
|
||||
threads.add(producer);
|
||||
producer.start();
|
||||
|
||||
// This is the slow consumer.
|
||||
ConsumerThread c1 = new ConsumerThread("Consumer-1");
|
||||
threads.add(c1);
|
||||
c1.start();
|
||||
|
||||
// Wait a bit so that the slow consumer gets assigned most of the messages.
|
||||
Thread.sleep(500);
|
||||
ConsumerThread c2 = new ConsumerThread("Consumer-2");
|
||||
threads.add(c2);
|
||||
c2.start();
|
||||
|
||||
for ( int i=0; i < 30; i++) {
|
||||
Thread.sleep(1000);
|
||||
long p1Counter = p1.counter.getAndSet(0);
|
||||
long c1Counter = c1.counter.getAndSet(0);
|
||||
long c2Counter = c2.counter.getAndSet(0);
|
||||
System.out.println("p1: "+p1Counter+", c1: "+c1Counter+", c2: "+c2Counter);
|
||||
System.out.println("c1: "+c1Counter+", c2: "+c2Counter);
|
||||
|
||||
// Once message have been flowing for a few seconds, start asserting that c2 always gets messages. It should be receiving about 100 / sec
|
||||
if( i > 3 ) {
|
||||
|
@ -122,18 +146,9 @@ public class AMQ1866 extends TestCase {
|
|||
}
|
||||
}
|
||||
|
||||
public class ProducerThread extends Thread {
|
||||
final AtomicLong counter = new AtomicLong();
|
||||
|
||||
public ProducerThread(String threadId) {
|
||||
super(threadId);
|
||||
}
|
||||
|
||||
public void run() {
|
||||
public void produce(int count) throws Exception {
|
||||
Connection connection=null;
|
||||
try {
|
||||
log.debug(getName() + ": is running");
|
||||
|
||||
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(ACTIVEMQ_BROKER_URI);
|
||||
factory.setDispatchAsync(true);
|
||||
|
||||
|
@ -143,15 +158,10 @@ public class AMQ1866 extends TestCase {
|
|||
MessageProducer producer = session.createProducer(destination);
|
||||
connection.start();
|
||||
|
||||
int i = 0;
|
||||
while (!shutdown.get()) {
|
||||
for( int i=0 ; i< count; i++ ) {
|
||||
producer.send(session.createTextMessage(getName()+" Message "+(++i)));
|
||||
counter.incrementAndGet();
|
||||
Thread.sleep(1);
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
try {
|
||||
connection.close();
|
||||
|
@ -160,8 +170,6 @@ public class AMQ1866 extends TestCase {
|
|||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class ConsumerThread extends Thread {
|
||||
final AtomicLong counter = new AtomicLong();
|
||||
|
||||
|
@ -188,7 +196,7 @@ public class AMQ1866 extends TestCase {
|
|||
if ( msg!=null ) {
|
||||
int sleepingTime;
|
||||
if (getName().equals("Consumer-1")) {
|
||||
sleepingTime = 10 * 1000;
|
||||
sleepingTime = 1000 * 1000;
|
||||
} else {
|
||||
sleepingTime = 1;
|
||||
}
|
||||
|
@ -198,8 +206,8 @@ public class AMQ1866 extends TestCase {
|
|||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
} finally {
|
||||
log.debug(getName() + ": is stopping");
|
||||
try {
|
||||
connection.close();
|
||||
} catch (Throwable e) {
|
||||
|
|
Loading…
Reference in New Issue