/** * 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.joramtests; import javax.jms.ConnectionFactory; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import java.io.File; import java.net.URI; import java.util.Hashtable; import org.apache.activemq.ActiveMQConnectionFactory; import org.apache.activemq.broker.BrokerFactory; import org.apache.activemq.broker.BrokerService; import org.apache.activemq.command.ActiveMQQueue; import org.apache.activemq.command.ActiveMQTopic; import org.objectweb.jtests.jms.admin.Admin; /** * @author <a href="http://hiramchirino.com">Hiram Chirino</a> */ public class ActiveMQAdmin implements Admin { Context context; { try { // Use the jetty JNDI context since it's mutable. final Hashtable<String, String> env = new Hashtable<>(); env.put("java.naming.factory.initial", "org.eclipse.jetty.jndi.InitialContextFactory"); env.put("java.naming.factory.url.pkgs", "org.eclipse.jetty.jndi"); context = new InitialContext(env); } catch (NamingException e) { throw new RuntimeException(e); } } protected BrokerService createBroker() throws Exception { return BrokerFactory.createBroker(new URI("broker://()/localhost?persistent=false")); } @Override public String getName() { return getClass().getName(); } BrokerService broker; @Override public void startServer() throws Exception { if (System.getProperty("basedir") == null) { File file = new File("."); System.setProperty("basedir", file.getAbsolutePath()); } broker = createBroker(); broker.start(); } @Override public void stopServer() throws Exception { broker.stop(); } @Override public void start() throws Exception { } @Override public void stop() throws Exception { } @Override public Context createContext() throws NamingException { return context; } @Override public void createQueue(String name) { try { context.bind(name, new ActiveMQQueue(name)); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void createTopic(String name) { try { context.bind(name, new ActiveMQTopic(name)); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void deleteQueue(String name) { // BrokerTestSupport.delete_queue((Broker)base.broker, name); try { context.unbind(name); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void deleteTopic(String name) { try { context.unbind(name); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void createConnectionFactory(String name) { try { final ConnectionFactory factory = new ActiveMQConnectionFactory("vm://localhost"); ((ActiveMQConnectionFactory) factory).setNestedMapAndListEnabled(false); context.bind(name, factory); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void deleteConnectionFactory(String name) { try { context.unbind(name); } catch (NamingException e) { throw new RuntimeException(e); } } @Override public void createQueueConnectionFactory(String name) { createConnectionFactory(name); } @Override public void createTopicConnectionFactory(String name) { createConnectionFactory(name); } @Override public void deleteQueueConnectionFactory(String name) { deleteConnectionFactory(name); } @Override public void deleteTopicConnectionFactory(String name) { deleteConnectionFactory(name); } }