/* * JBoss, Home of Professional Open Source. * Copyright 2010, 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.jca.moduledeployment; import javax.annotation.Resource; import javax.resource.cci.ConnectionFactory; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.arquillian.container.ManagementClient; import org.jboss.dmr.ModelNode; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Test; import org.junit.runner.RunWith; /** * AS7-5768 -Support for RA module deployment * * @author <a href="vrastsel@redhat.com">Vladimir Rastseluev</a> * <p> * Tests for module deployment of resource adapter archive in * uncompressed form with classes in flat form (under package structure) * <p> * Structure of module is: * modulename * modulename/main * modulename/main/module.xml * modulename/main/META-INF * modulename/main/META-INF/ra.xml * modulename/main/org * modulename/main/org/jboss/ * modulename/main/org/jboss/package/ * modulename/main/org/jboss/package/First.class * modulename/main/org/jboss/package/Second.class ... */ @RunWith(Arquillian.class) @ServerSetup(MultiActivationFlatTestCase.ModuleAcDeploymentTestCaseSetup.class) public class MultiActivationFlatTestCase extends AbstractModuleDeploymentTestCase { private final String cf = "java:/testMeRA"; private final String cf1 = "java:/testMeRA1"; static class ModuleAcDeploymentTestCaseSetup extends AbstractModuleDeploymentTestCaseSetup { @Override public void doSetup(ManagementClient managementClient) throws Exception { super.doSetup(managementClient); fillModuleWithFlatClasses("ra1.xml"); setConfiguration("double.xml"); } @Override protected String getSlot() { return MultiActivationFlatTestCase.class.getSimpleName().toLowerCase(); } } /** * Define the deployment * * @return The deployment archive */ @Deployment public static JavaArchive getDeployment() throws Exception { return createDeployment(); } @Resource(mappedName = cf) private ConnectionFactory connectionFactory; @Resource(mappedName = cf1) private ConnectionFactory connectionFactory1; /** * Tests connection factory * * @throws Throwable in case of an error */ @Test public void testConnectionFactory() throws Throwable { testConnectionFactory(connectionFactory); } /** * Tests connection factory * * @throws Throwable in case of an error */ @Test public void testConnectionFactory1() throws Throwable { testConnectionFactory(connectionFactory1); } /** * Tests connection factory * * @throws Throwable in case of an error */ @Test public void testProperties() throws Throwable { testJndiObject(cf, "name=overRA", "name=overCF1"); } /** * Tests connection factory * * @throws Throwable in case of an error */ @Test public void testProperties2() throws Throwable { testJndiObject(cf1, "name=overRA", "name=overCF2"); } /** * Tests admin object * * @throws Exception */ @Test public void testAdminObject() throws Exception { testJndiObject("java:/testAO", "MultipleAdminObject1Impl", "name=overAO1"); } /** * Tests admin object * * @throws Exception */ @Test public void testAdminObject1() throws Exception { testJndiObject("java:/testAO1", "MultipleAdminObject1Impl", "name=overAO2"); } /** * Tests connection in pool * * @throws Exception in case of error */ @Test @RunAsClient public void testConnections() throws Exception { testConnection(cf); testConnection(cf1); } @Override protected ModelNode getAddress() { return ModuleAcDeploymentTestCaseSetup.getAddress(); } }