From ac24a08b8b102fc90c34cb6d467c4dd7092a276c Mon Sep 17 00:00:00 2001 From: Dejan Bosanac Date: Wed, 4 Mar 2015 11:57:21 +0100 Subject: [PATCH] IDERunner util class that can run full distro from IDE --- .../org/apache/activemq/config/IDERunner.java | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 assembly/src/test/java/org/apache/activemq/config/IDERunner.java diff --git a/assembly/src/test/java/org/apache/activemq/config/IDERunner.java b/assembly/src/test/java/org/apache/activemq/config/IDERunner.java new file mode 100644 index 0000000000..61f24f126d --- /dev/null +++ b/assembly/src/test/java/org/apache/activemq/config/IDERunner.java @@ -0,0 +1,46 @@ +/** + * 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.config; + +import org.apache.activemq.broker.BrokerFactory; +import org.apache.activemq.broker.BrokerService; +import org.apache.camel.util.FileUtil; + +import java.io.File; + +/** + * A helper class that can be used to start the full broker distro with default configuration + * in an IDE. It can be helpful for debugging/testing externally provided test cases. + */ +public class IDERunner { + + public static void main(String[] args) throws Exception { + + System.setProperty("activemq.base", "."); + System.setProperty("activemq.home", "."); // not a valid home but ok for xml validation + System.setProperty("activemq.data", "target/"); + System.setProperty("activemq.conf", "src/release/conf"); + + FileUtil.removeDir(new File("target/kahadb")); + + BrokerService broker = BrokerFactory.createBroker("xbean:src/release/conf/activemq.xml"); + broker.start(); + broker.waitUntilStopped(); + + } + +}