Test case for AMQ-1866

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@678830 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2008-07-22 17:43:57 +00:00
parent 50c16c7672
commit e027f8ff29
1 changed files with 213 additions and 0 deletions

View File

@ -0,0 +1,213 @@
/**
* 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.bugs;
import junit.framework.TestCase;
import java.util.ArrayList;
import java.util.Random;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicLong;
import javax.jms.Connection;
import javax.jms.Destination;
import javax.jms.JMSException;
import javax.jms.MessageConsumer;
import javax.jms.MessageProducer;
import javax.jms.Session;
import javax.jms.TextMessage;
import org.apache.activemq.ActiveMQConnectionFactory;
import org.apache.activemq.ActiveMQPrefetchPolicy;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.command.ActiveMQDestination;
import org.apache.activemq.command.ActiveMQQueue;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* This is a test case for the issue reported at:
* https://issues.apache.org/activemq/browse/AMQ-1866
*
* If you have a JMS producer sending messages to multiple consumers and
* you have a low prefetch, eventually all consumers will run as slow as
* the slowest consumer.
*/
public class AMQ1866 extends TestCase {
private static final Log log = LogFactory.getLog(ConsumerThread.class);
private BrokerService brokerService;
private ArrayList<Thread> threads = new ArrayList<Thread>();
String ACTIVEMQ_BROKER_BIND = "tcp://localhost:61616";
String ACTIVEMQ_BROKER_URI = "tcp://localhost:61616";
String REQUEST_QUEUE = "provider.queue";
AtomicBoolean shutdown = new AtomicBoolean();
@Override
protected void setUp() throws Exception {
// Start an embedded broker up.
brokerService = new BrokerService();
brokerService.addConnector(ACTIVEMQ_BROKER_BIND);
brokerService.start();
}
@Override
protected void tearDown() throws Exception {
// Stop any running threads.
shutdown.set(true);
for (Thread t : threads) {
t.join();
}
brokerService.stop();
}
// Failing
public void testConsumerSlowDownPrefetch0() throws InterruptedException {
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616?jms.prefetchPolicy.queuePrefetch=0";
doTestConsumerSlowDown();
}
// Failing
public void testConsumerSlowDownPrefetch10() throws InterruptedException {
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616?jms.prefetchPolicy.queuePrefetch=10";
doTestConsumerSlowDown();
}
// Passing
public void testConsumerSlowDownDefaultPrefetch() throws InterruptedException {
ACTIVEMQ_BROKER_URI = "tcp://localhost:61616";
doTestConsumerSlowDown();
}
public void doTestConsumerSlowDown() throws InterruptedException {
ConsumerThread c1 = new ConsumerThread("Consumer-1");
ConsumerThread c2 = new ConsumerThread("Consumer-2");
ProducerThread p1 = new ProducerThread("Producer-1");
threads.add(c1);
threads.add(c2);
threads.add(p1);
c1.start();
c2.start();
p1.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);
// 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 > 2 ) {
assertTrue("Consumer 2 should be receiving new messages every second.", c2Counter > 0);
}
}
}
public class ProducerThread extends Thread {
final AtomicLong counter = new AtomicLong();
public ProducerThread(String threadId) {
super(threadId);
}
public void run() {
Connection connection=null;
try {
log.debug(getName() + ": is running");
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(ACTIVEMQ_BROKER_URI);
factory.setDispatchAsync(true);
Destination requestDestination = new ActiveMQQueue(REQUEST_QUEUE);
connection = factory.createConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageProducer producer = session.createProducer(requestDestination);
connection.start();
int i = 0;
while (!shutdown.get()) {
producer.send(session.createTextMessage(getName()+" Message "+(++i)));
counter.incrementAndGet();
Thread.sleep(10);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
connection.close();
} catch (Throwable e) {
}
}
}
}
public class ConsumerThread extends Thread {
final AtomicLong counter = new AtomicLong();
public ConsumerThread(String threadId) {
super(threadId);
}
public void run() {
Connection connection=null;
try {
log.debug(getName() + ": is running");
ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(ACTIVEMQ_BROKER_URI);
factory.setDispatchAsync(true);
Destination requestDestination = new ActiveMQQueue(REQUEST_QUEUE);
connection = factory.createConnection();
Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
MessageConsumer consumer = session.createConsumer(requestDestination);
connection.start();
int i = 0;
while (!shutdown.get()) {
TextMessage msg = (TextMessage)consumer.receive(1000);
if ( msg!=null ) {
int sleepingTime;
if (getName().equals("Consumer-1")) {
sleepingTime = 10 * 1000;
} else {
sleepingTime = 10;
}
Thread.sleep(sleepingTime);
counter.incrementAndGet();
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
connection.close();
} catch (Throwable e) {
}
}
}
}
}