/* * JBoss, Home of Professional Open Source. * Copyright 2011, 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.ejb.mdb.resourceadapter; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; /** * Tests that a resource adapter packaged in a .ear can be used by a MDB as its resource adapter * * @author Jaikiran Pai */ @RunWith(Arquillian.class) public class DeploymentPackagedRATestCase { private static final String EAR_NAME = "ear-containing-rar"; private static final String RAR_NAME = "rar-within-a-ear"; private static final String EJB_JAR_NAME = "ejb-jar"; @Deployment public static Archive createDeplyoment() { final EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, EAR_NAME + ".ear"); final JavaArchive rar = ShrinkWrap.create(JavaArchive.class, RAR_NAME + ".rar"); rar.addAsManifestResource(DeploymentPackagedRATestCase.class.getPackage(), "ra.xml", "ra.xml"); final JavaArchive ejbJar = ShrinkWrap.create(JavaArchive.class, EJB_JAR_NAME + ".jar"); ejbJar.addClasses(NonJMSMDB.class, DeploymentPackagedRATestCase.class); final JavaArchive libJar = ShrinkWrap.create(JavaArchive.class, "common-lib.jar"); libJar.addClasses(SimpleActivationSpec.class, SimpleResourceAdapter.class, SimpleMessageListener.class, ResourceAdapterDeploymentTracker.class); ear.addAsModule(rar); ear.addAsModule(ejbJar); ear.addAsLibrary(libJar); return ear; } /** * Tests that a RA deployed within the .ear is deployed and started successfully and it's endpoint * activation is invoked * * @throws Exception */ @Test public void testRADeployment() throws Exception { Assert.assertTrue("Resource adapter deployed in the .ear was not started", ResourceAdapterDeploymentTracker.INSTANCE.wasEndpointStartCalled()); Assert.assertTrue("Resource adapter's endpoint was not activated", ResourceAdapterDeploymentTracker.INSTANCE.wasEndpointActivationCalled()); } }