From bee0904b843129992b9dcbc035aa08f970728750 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Wed, 14 Dec 2016 17:18:20 +0100 Subject: [PATCH] [AMQ-6514] Adding test for activemq blueprint setup and xbean problem --- .../itest/ActiveMQBrokerBlueprintTest.java | 63 +++++++++++++++++++ .../karaf/itest/activemq-blueprint.xml | 61 ++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 activemq-karaf-itest/src/test/java/org/apache/activemq/karaf/itest/ActiveMQBrokerBlueprintTest.java create mode 100644 activemq-karaf-itest/src/test/resources/org/apache/activemq/karaf/itest/activemq-blueprint.xml diff --git a/activemq-karaf-itest/src/test/java/org/apache/activemq/karaf/itest/ActiveMQBrokerBlueprintTest.java b/activemq-karaf-itest/src/test/java/org/apache/activemq/karaf/itest/ActiveMQBrokerBlueprintTest.java new file mode 100644 index 0000000000..c97a485307 --- /dev/null +++ b/activemq-karaf-itest/src/test/java/org/apache/activemq/karaf/itest/ActiveMQBrokerBlueprintTest.java @@ -0,0 +1,63 @@ +/** + * 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.karaf.itest; + +import static org.ops4j.pax.exam.CoreOptions.composite; +import static org.ops4j.pax.exam.karaf.options.KarafDistributionOption.replaceConfigurationFile; + +import java.io.File; +import java.util.concurrent.Callable; + +import javax.jms.Connection; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.Configuration; +import org.ops4j.pax.exam.Option; +import org.ops4j.pax.exam.junit.PaxExam; + +@RunWith(PaxExam.class) +public class ActiveMQBrokerBlueprintTest extends AbstractJmsFeatureTest { + + @Configuration + public Option[] configure() { + return new Option[] // + { + composite(super.configure("activemq", "activemq-blueprint")), + replaceConfigurationFile("deploy/activemq-blueprint.xml", + new File(basedir + "/src/test/resources/org/apache/activemq/karaf/itest/activemq-blueprint.xml")) + }; + } + + @Test + public void test() throws Throwable { + withinReason(new Callable() { + + @Override + public Boolean call() throws Exception { + Connection con; + try { + con = getConnection(); + } catch (Throwable e) { + throw new RuntimeException(e); + } + con.close(); + return true; + } + }); + } +} diff --git a/activemq-karaf-itest/src/test/resources/org/apache/activemq/karaf/itest/activemq-blueprint.xml b/activemq-karaf-itest/src/test/resources/org/apache/activemq/karaf/itest/activemq-blueprint.xml new file mode 100644 index 0000000000..6bbe53f635 --- /dev/null +++ b/activemq-karaf-itest/src/test/resources/org/apache/activemq/karaf/itest/activemq-blueprint.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +