blob: 27e3435d425a71d76e3563a150de79449cce9b73 [file] [log] [blame]
/**
* 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.camel.component.jms;
import java.util.concurrent.atomic.AtomicInteger;
import javax.jms.ConnectionFactory;
import org.apache.activemq.ActiveMQConnectionFactory;
/**
* A helper for unit testing with Apache ActiveMQ as embedded JMS broker.
*
* @version
*/
public final class CamelJmsTestHelper {
private static AtomicInteger counter = new AtomicInteger(0);
private CamelJmsTestHelper() {
}
public static ConnectionFactory createConnectionFactory() {
return createConnectionFactory(null);
}
public static ConnectionFactory createConnectionFactory(String options) {
// using a unique broker name improves testing when running the entire test suite in the same JVM
int id = counter.incrementAndGet();
String url = "vm://test-broker-" + id + "?broker.persistent=false&broker.useJmx=false";
if (options != null) {
url = url + "&" + options;
}
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(url);
return connectionFactory;
}
public static ConnectionFactory createPersistentConnectionFactory() {
return createPersistentConnectionFactory(null);
}
public static ConnectionFactory createPersistentConnectionFactory(String options) {
// using a unique broker name improves testing when running the entire test suite in the same JVM
int id = counter.incrementAndGet();
String url = "vm://test-broker-" + id + "?broker.persistent=true&broker.useJmx=false";
if (options != null) {
url = url + "&" + options;
}
ConnectionFactory connectionFactory = new ActiveMQConnectionFactory(url);
return connectionFactory;
}
}