/* * JBoss, Home of Professional Open Source. * Copyright 2014, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.common.jms; import static org.jboss.as.controller.client.helpers.ClientConstants.ADD; import static org.jboss.as.controller.client.helpers.ClientConstants.REMOVE_OPERATION; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.NAME; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.VALUE; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.WRITE_ATTRIBUTE_OPERATION; import static org.jboss.as.test.integration.common.jms.JMSOperationsProvider.execute; import org.jboss.as.arquillian.container.ManagementClient; import org.jboss.as.controller.client.ModelControllerClient; import org.jboss.as.controller.client.helpers.ClientConstants; import org.jboss.dmr.ModelNode; import org.jboss.dmr.Property; /** * An implementation of JMSOperations for Apache ActiveMQ 6. * * @author <a href="http://jmesnil.net/">Jeff Mesnil</a> (c) 2014 Red Hat inc. */ public class ActiveMQProviderJMSOperations implements JMSOperations { private final ModelControllerClient client; public ActiveMQProviderJMSOperations(ModelControllerClient client) { this.client = client; } public ActiveMQProviderJMSOperations(ManagementClient client) { this.client = client.getControllerClient(); } private static final ModelNode serverAddress = new ModelNode(); static { serverAddress.add("subsystem", "messaging-activemq"); serverAddress.add("server", "default"); } @Override public ModelControllerClient getControllerClient() { return client; } @Override public ModelNode getServerAddress() { return serverAddress.clone(); } @Override public String getProviderName() { return "activemq"; } @Override public void createJmsQueue(String queueName, String jndiName) { createJmsQueue(queueName, jndiName, new ModelNode()); } @Override public void createJmsQueue(String queueName, String jndiName, ModelNode attributes) { ModelNode address = getServerAddress() .add("jms-queue", queueName); attributes.get("entries").add(jndiName); executeOperation(address, ADD, attributes); } @Override public void createJmsTopic(String topicName, String jndiName) { createJmsTopic(topicName, jndiName, new ModelNode()); } @Override public void createJmsTopic(String topicName, String jndiName, ModelNode attributes) { ModelNode address = getServerAddress() .add("jms-topic", topicName); attributes.get("entries").add(jndiName); executeOperation(address, ADD, attributes); } @Override public void removeJmsQueue(String queueName) { ModelNode address = getServerAddress() .add("jms-queue", queueName); executeOperation(address, REMOVE_OPERATION, null); } @Override public void removeJmsTopic(String topicName) { ModelNode address = getServerAddress() .add("jms-topic", topicName); executeOperation(address, REMOVE_OPERATION, null); } @Override public void addJmsConnectionFactory(String name, String jndiName, ModelNode attributes) { ModelNode address = getServerAddress() .add("connection-factory", name); attributes.get("entries").add(jndiName); executeOperation(address, ADD, attributes); } @Override public void removeJmsConnectionFactory(String name) { ModelNode address = getServerAddress() .add("connection-factory", name); executeOperation(address, REMOVE_OPERATION, null); } @Override public void addJmsBridge(String name, ModelNode attributes) { ModelNode address = new ModelNode(); address.add("subsystem", "messaging-activemq"); address.add("jms-bridge", name); executeOperation(address, ADD, attributes); } @Override public void removeJmsBridge(String name) { ModelNode address = new ModelNode(); address.add("subsystem", "messaging-activemq"); address.add("jms-bridge", name); executeOperation(address, REMOVE_OPERATION, null); } @Override public void addCoreQueue(String queueName, String queueAddress, boolean durable) { ModelNode address = getServerAddress() .add("queue", queueName); ModelNode attributes = new ModelNode(); attributes.get("queue-address").set(queueAddress); attributes.get("durable").set(durable); executeOperation(address, ADD, attributes); } @Override public void removeCoreQueue(String queueName) { ModelNode address = getServerAddress() .add("queue", queueName); executeOperation(address, REMOVE_OPERATION, null); } @Override public void close() { // no-op // DO NOT close the management client. Whoever passed it into the constructor should close it } private void executeOperation(final ModelNode address, final String opName, ModelNode attributes) { final ModelNode operation = new ModelNode(); operation.get(OP).set(opName); operation.get(OP_ADDR).set(address); if (attributes != null) { for (Property property : attributes.asPropertyList()) { operation.get(property.getName()).set(property.getValue()); } } try { execute(client, operation); } catch (Exception e) { throw new RuntimeException(e); } } @Override public void setSystemProperties(String destination, String resourceAdapter) { final ModelNode enableSubstitutionOp = new ModelNode(); enableSubstitutionOp.get(OP_ADDR).set(SUBSYSTEM, "ee"); enableSubstitutionOp.get(OP).set(WRITE_ATTRIBUTE_OPERATION); enableSubstitutionOp.get(NAME).set("annotation-property-replacement"); enableSubstitutionOp.get(VALUE).set(true); final ModelNode setDestinationOp = new ModelNode(); setDestinationOp.get(OP).set(ADD); setDestinationOp.get(OP_ADDR).add("system-property", "destination"); setDestinationOp.get("value").set(destination); final ModelNode setResourceAdapterOp = new ModelNode(); setResourceAdapterOp.get(OP).set(ADD); setResourceAdapterOp.get(OP_ADDR).add("system-property", "resource.adapter"); setResourceAdapterOp.get("value").set(resourceAdapter); try { execute(client, enableSubstitutionOp); execute(client, setDestinationOp); execute(client, setResourceAdapterOp); } catch (Exception e) { throw new RuntimeException(e); } } @Override public void removeSystemProperties() { final ModelNode removeDestinationOp = new ModelNode(); removeDestinationOp.get(OP).set("remove"); removeDestinationOp.get(OP_ADDR).add("system-property", "destination"); final ModelNode removeResourceAdapterOp = new ModelNode(); removeResourceAdapterOp.get(OP).set("remove"); removeResourceAdapterOp.get(OP_ADDR).add("system-property", "resource.adapter"); final ModelNode disableSubstitutionOp = new ModelNode(); disableSubstitutionOp.get(OP_ADDR).set(SUBSYSTEM, "ee"); disableSubstitutionOp.get(OP).set(WRITE_ATTRIBUTE_OPERATION); disableSubstitutionOp.get(NAME).set("annotation-property-replacement"); disableSubstitutionOp.get(VALUE).set(false); try { execute(client, removeDestinationOp); execute(client, removeResourceAdapterOp); execute(client, disableSubstitutionOp); } catch (Exception e) { throw new RuntimeException(e); } } @Override public void addJmsConnector(String connectorName, String socketBinding, String endpoint) { ModelNode address = getServerAddress() .add("http-connector", connectorName); ModelNode attributes = new ModelNode(); attributes.get("socket-binding").set(socketBinding); attributes.get("endpoint").set(endpoint); executeOperation(address, ADD, attributes); } @Override public void removeJmsConnector(String connectorName) { ModelNode address = getServerAddress() .add("http-connector", connectorName); executeOperation(address, REMOVE_OPERATION, null); } @Override public void addSocketBinding(String bindingName, ModelNode... clientMappings) { ModelNode address = new ModelNode(); address.add("socket-binding-group", "standard-sockets"); address.add("socket-binding", bindingName); ModelNode operation = new ModelNode(); operation.get(OP).set(ClientConstants.ADD); operation.get(OP_ADDR).set(address); executeOperation(address, ADD, null); if (clientMappings != null) { for (ModelNode clientMapping : clientMappings) { ModelNode attributes = new ModelNode(); attributes.get("name").set("client-mappings"); attributes.get("value").add(clientMapping); executeOperation(address, WRITE_ATTRIBUTE_OPERATION, attributes); } } } @Override public void removeSocketBinding(String bindingName) { ModelNode address = new ModelNode(); address.add("socket-binding-group", "standard-sockets"); address.add("socket-binding", "test-binding"); executeOperation(address, REMOVE_OPERATION, null); } }