/* * 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.multinode.transaction; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.OperateOnDeployment; import org.jboss.arquillian.container.test.api.TargetsContainer; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.test.shared.util.DisableInvocationTestUtil; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.transaction.HeuristicMixedException; import javax.transaction.HeuristicRollbackException; import javax.transaction.NotSupportedException; import javax.transaction.RollbackException; import javax.transaction.SystemException; import java.io.IOException; /** * A simple EJB Remoting transaction context propagation in JTS style from one AS7 server to another. * * @author Stuart Douglas * @author Ivo Studensky */ @RunWith(Arquillian.class) public class TransactionInvocationTestCase { public static final String SERVER_DEPLOYMENT = "server"; public static final String CLIENT_DEPLOYMENT = "client"; @BeforeClass public static void beforeClass() { DisableInvocationTestUtil.disable(); } @Deployment(name = "server", testable = false) @TargetsContainer("multinode-server") public static Archive<?> deployment() { final JavaArchive jar = ShrinkWrap.create(JavaArchive.class, SERVER_DEPLOYMENT + ".jar"); jar.addClasses(TransactionalStatelessBean.class, TransactionalRemote.class, TransactionalStatefulRemote.class, TransactionalStatefulBean.class); return jar; } @Deployment(name = "client", testable = true) @TargetsContainer("multinode-client") public static Archive<?> clientDeployment() { final JavaArchive jar = ShrinkWrap.create(JavaArchive.class, CLIENT_DEPLOYMENT + ".jar"); jar.addClasses(ClientEjb.class, TransactionalRemote.class, TransactionInvocationTestCase.class, TransactionalStatefulRemote.class); jar.addAsManifestResource("META-INF/jboss-ejb-client-receivers.xml", "jboss-ejb-client.xml"); return jar; } @Test @OperateOnDeployment("client") public void testRemoteInvocation() throws IOException, NamingException, NotSupportedException, SystemException { final ClientEjb ejb = getClient(); ejb.basicTransactionPropagationTest(); } @Test @OperateOnDeployment("client") public void testRollbackOnly() throws IOException, NamingException, NotSupportedException, SystemException { final ClientEjb ejb = getClient(); ejb.testRollbackOnly(); } @Test @OperateOnDeployment("client") public void testRollbackOnlyBeforeCompletion() throws IOException, NamingException, NotSupportedException, SystemException, HeuristicMixedException, HeuristicRollbackException { final ClientEjb ejb = getClient(); ejb.testRollbackOnlyBeforeCompletion(); } @Test @OperateOnDeployment("client") public void testSameTransactionEachCall() throws IOException, NamingException, NotSupportedException, SystemException { final ClientEjb ejb = getClient(); ejb.testSameTransactionEachCall(); } @Test @OperateOnDeployment("client") public void testSynchronizationSucceeded() throws IOException, NamingException, NotSupportedException, SystemException, RollbackException, HeuristicMixedException, HeuristicRollbackException { final ClientEjb ejb = getClient(); ejb.testSynchronization(true); } @Test @OperateOnDeployment("client") public void testSynchronizationFailed() throws IOException, NamingException, NotSupportedException, SystemException, RollbackException, HeuristicMixedException, HeuristicRollbackException { final ClientEjb ejb = getClient(); ejb.testSynchronization(false); } private ClientEjb getClient() throws NamingException { final InitialContext context = new InitialContext(); return (ClientEjb) context.lookup("java:module/" + ClientEjb.class.getSimpleName()); } }