mirror of https://github.com/apache/activemq.git
Give the leveldb 3 broker virt topic network test a more appropriate file name. Also add a single broker test for leveldb.
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1483809 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3ded22df3d
commit
d43d08aa1c
|
@ -0,0 +1,44 @@
|
||||||
|
/**
|
||||||
|
* 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.usecases;
|
||||||
|
|
||||||
|
import org.apache.activemq.JmsMultipleBrokersTestSupport;
|
||||||
|
import org.apache.activemq.broker.BrokerService;
|
||||||
|
import org.apache.activemq.broker.region.DestinationInterceptor;
|
||||||
|
import org.apache.activemq.broker.region.virtual.VirtualDestination;
|
||||||
|
import org.apache.activemq.broker.region.virtual.VirtualDestinationInterceptor;
|
||||||
|
import org.apache.activemq.broker.region.virtual.VirtualTopic;
|
||||||
|
import org.apache.activemq.leveldb.LevelDBStore;
|
||||||
|
import org.apache.activemq.store.kahadb.KahaDBStore;
|
||||||
|
import org.apache.activemq.util.MessageIdList;
|
||||||
|
|
||||||
|
import javax.jms.MessageConsumer;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URI;
|
||||||
|
|
||||||
|
public class SingleBrokerVirtualDestinationsWithWildcardLevelDBTest extends SingleBrokerVirtualDestinationsWithWildcardTest {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void configurePersistenceAdapter(BrokerService broker) throws IOException {
|
||||||
|
File dataFileDir = new File("target/test-amq-data/leveldb/" + broker.getBrokerName());
|
||||||
|
LevelDBStore kaha = new LevelDBStore();
|
||||||
|
kaha.setDirectory(dataFileDir);
|
||||||
|
broker.setPersistenceAdapter(kaha);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -23,10 +23,10 @@ import org.apache.activemq.broker.BrokerService;
|
||||||
import org.apache.activemq.leveldb.LevelDBStore;
|
import org.apache.activemq.leveldb.LevelDBStore;
|
||||||
|
|
||||||
|
|
||||||
public class ThreeBrokerVirtualTopicNetworkAMQPATest extends ThreeBrokerVirtualTopicNetworkTest {
|
public class ThreeBrokerVirtualTopicNetworkLevelDBTest extends ThreeBrokerVirtualTopicNetworkTest {
|
||||||
|
|
||||||
protected void configurePersistenceAdapter(BrokerService broker) throws IOException {
|
protected void configurePersistenceAdapter(BrokerService broker) throws IOException {
|
||||||
File dataFileDir = new File("target/test-amq-data/amq/" + broker.getBrokerName());
|
File dataFileDir = new File("target/test-data/leveldb/" + broker.getBrokerName());
|
||||||
LevelDBStore adapter = new LevelDBStore();
|
LevelDBStore adapter = new LevelDBStore();
|
||||||
adapter.setDirectory(dataFileDir);
|
adapter.setDirectory(dataFileDir);
|
||||||
broker.setPersistenceAdapter(adapter);
|
broker.setPersistenceAdapter(adapter);
|
Loading…
Reference in New Issue