mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-3120 - test case in the making
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1061899 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aad7e7394a
commit
27484b9324
|
@ -0,0 +1,145 @@
|
||||||
|
/**
|
||||||
|
* 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 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.activemq.store.kahadb.KahaDBPersistenceAdapter;
|
||||||
|
import org.apache.activemq.util.ConsumerThread;
|
||||||
|
import org.apache.activemq.util.ProducerThread;
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import javax.jms.*;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
||||||
|
public class AMQ3120Test {
|
||||||
|
|
||||||
|
private static final Log LOG = LogFactory.getLog(AMQ3120Test.class);
|
||||||
|
|
||||||
|
BrokerService broker = null;
|
||||||
|
File kahaDbDir = null;
|
||||||
|
private final Destination destination = new ActiveMQQueue("AMQ3120Test");
|
||||||
|
final String payload = new String(new byte[1024]);
|
||||||
|
|
||||||
|
protected void startBroker(boolean delete) throws Exception {
|
||||||
|
broker = new BrokerService();
|
||||||
|
|
||||||
|
//Start with a clean directory
|
||||||
|
kahaDbDir = new File(broker.getBrokerDataDirectory(), "KahaDB");
|
||||||
|
deleteDir(kahaDbDir);
|
||||||
|
|
||||||
|
broker.setSchedulerSupport(false);
|
||||||
|
broker.setDeleteAllMessagesOnStartup(delete);
|
||||||
|
broker.setPersistent(true);
|
||||||
|
broker.setUseJmx(false);
|
||||||
|
broker.addConnector("tcp://localhost:0");
|
||||||
|
|
||||||
|
PolicyMap map = new PolicyMap();
|
||||||
|
PolicyEntry entry = new PolicyEntry();
|
||||||
|
entry.setUseCache(false);
|
||||||
|
map.setDefaultEntry(entry);
|
||||||
|
broker.setDestinationPolicy(map);
|
||||||
|
|
||||||
|
configurePersistence(broker, delete);
|
||||||
|
|
||||||
|
broker.start();
|
||||||
|
LOG.info("Starting broker..");
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void configurePersistence(BrokerService brokerService, boolean deleteAllOnStart) throws Exception {
|
||||||
|
KahaDBPersistenceAdapter adapter = (KahaDBPersistenceAdapter) brokerService.getPersistenceAdapter();
|
||||||
|
|
||||||
|
// ensure there are a bunch of data files but multiple entries in each
|
||||||
|
adapter.setJournalMaxFileLength(1024 * 20);
|
||||||
|
|
||||||
|
// speed up the test case, checkpoint an cleanup early and often
|
||||||
|
adapter.setCheckpointInterval(500);
|
||||||
|
adapter.setCleanupInterval(500);
|
||||||
|
|
||||||
|
if (!deleteAllOnStart) {
|
||||||
|
adapter.setForceRecoverIndex(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean deleteDir(File dir) {
|
||||||
|
if (dir.isDirectory()) {
|
||||||
|
String[] children = dir.list();
|
||||||
|
for (int i = 0; i < children.length; i++) {
|
||||||
|
boolean success = deleteDir(new File(dir, children[i]));
|
||||||
|
if (!success) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return dir.delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getFileCount(File dir){
|
||||||
|
if (dir.isDirectory()) {
|
||||||
|
String[] children = dir.list();
|
||||||
|
return children.length;
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testCleanupOfFiles() throws Exception {
|
||||||
|
|
||||||
|
startBroker(false);
|
||||||
|
int fileCount = getFileCount(kahaDbDir);
|
||||||
|
assertEquals(4, fileCount);
|
||||||
|
|
||||||
|
Connection connection = new ActiveMQConnectionFactory(
|
||||||
|
broker.getTransportConnectors().get(0).getConnectUri()).createConnection();
|
||||||
|
connection.start();
|
||||||
|
Session producerSess = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
Session consumerSess = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
|
||||||
|
|
||||||
|
ProducerThread producer = new ProducerThread(producerSess, destination) {
|
||||||
|
@Override
|
||||||
|
protected Message createMessage(int i) throws Exception {
|
||||||
|
return sess.createTextMessage(payload + "::" + i);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
producer.setSleep(1500);
|
||||||
|
ConsumerThread consumer = new ConsumerThread(consumerSess, destination);
|
||||||
|
consumer.setBreakOnNull(false);
|
||||||
|
|
||||||
|
producer.start();
|
||||||
|
consumer.start();
|
||||||
|
|
||||||
|
producer.join();
|
||||||
|
consumer.join();
|
||||||
|
|
||||||
|
|
||||||
|
broker.stop();
|
||||||
|
broker.waitUntilStopped();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -29,6 +29,7 @@ public class ConsumerThread extends Thread {
|
||||||
int received = 0;
|
int received = 0;
|
||||||
Destination dest;
|
Destination dest;
|
||||||
Session sess;
|
Session sess;
|
||||||
|
boolean breakOnNull = true;
|
||||||
|
|
||||||
public ConsumerThread(Session sess, Destination dest) {
|
public ConsumerThread(Session sess, Destination dest) {
|
||||||
this.dest = dest;
|
this.dest = dest;
|
||||||
|
@ -47,7 +48,9 @@ public class ConsumerThread extends Thread {
|
||||||
LOG.info("Received " + ((TextMessage)msg).getText());
|
LOG.info("Received " + ((TextMessage)msg).getText());
|
||||||
received++;
|
received++;
|
||||||
} else {
|
} else {
|
||||||
break;
|
if (breakOnNull) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (JMSException e) {
|
} catch (JMSException e) {
|
||||||
|
@ -66,4 +69,12 @@ public class ConsumerThread extends Thread {
|
||||||
public int getReceived() {
|
public int getReceived() {
|
||||||
return received;
|
return received;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setMessageCount(int messageCount) {
|
||||||
|
this.messageCount = messageCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBreakOnNull(boolean breakOnNull) {
|
||||||
|
this.breakOnNull = breakOnNull;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,10 +19,7 @@ package org.apache.activemq.util;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import javax.jms.Destination;
|
import javax.jms.*;
|
||||||
import javax.jms.JMSException;
|
|
||||||
import javax.jms.MessageProducer;
|
|
||||||
import javax.jms.Session;
|
|
||||||
|
|
||||||
public class ProducerThread extends Thread {
|
public class ProducerThread extends Thread {
|
||||||
|
|
||||||
|
@ -30,7 +27,7 @@ public class ProducerThread extends Thread {
|
||||||
|
|
||||||
int messageCount = 1000;
|
int messageCount = 1000;
|
||||||
Destination dest;
|
Destination dest;
|
||||||
Session sess;
|
protected Session sess;
|
||||||
int sleep = 0;
|
int sleep = 0;
|
||||||
int sentCount = 0;
|
int sentCount = 0;
|
||||||
|
|
||||||
|
@ -44,7 +41,7 @@ public class ProducerThread extends Thread {
|
||||||
try {
|
try {
|
||||||
producer = sess.createProducer(dest);
|
producer = sess.createProducer(dest);
|
||||||
for (sentCount = 0; sentCount < messageCount; sentCount++) {
|
for (sentCount = 0; sentCount < messageCount; sentCount++) {
|
||||||
producer.send(sess.createTextMessage("test message: " + sentCount));
|
producer.send(createMessage(sentCount));
|
||||||
LOG.info("Sent 'test message: " + sentCount + "'");
|
LOG.info("Sent 'test message: " + sentCount + "'");
|
||||||
if (sleep > 0) {
|
if (sleep > 0) {
|
||||||
Thread.sleep(sleep);
|
Thread.sleep(sleep);
|
||||||
|
@ -63,6 +60,9 @@ public class ProducerThread extends Thread {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected Message createMessage(int i) throws Exception {
|
||||||
|
return sess.createTextMessage("test message: " + i);
|
||||||
|
}
|
||||||
|
|
||||||
public void setMessageCount(int messageCount) {
|
public void setMessageCount(int messageCount) {
|
||||||
this.messageCount = messageCount;
|
this.messageCount = messageCount;
|
||||||
|
|
Loading…
Reference in New Issue