/* * 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.smoke.jms; import javax.ejb.EJB; import javax.enterprise.event.Observes; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.TextMessage; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.arquillian.api.ServerSetup; import org.jboss.as.test.integration.common.jms.JMSOperations; import org.jboss.as.test.jms.auxiliary.CreateQueueSetupTask; import org.jboss.as.test.smoke.jms.auxiliary.QueueMessageDrivenBean; import org.jboss.as.test.smoke.jms.auxiliary.TransactedQueueMessageSender; import org.jboss.logging.Logger; import org.jboss.shrinkwrap.api.ArchivePaths; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.EmptyAsset; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; /** * Tests sending JMS messages to a queue within a transaction * * @author <a href="jmartisk@redhat.com">Jan Martiska</a> */ @RunWith(Arquillian.class) @ServerSetup(CreateQueueSetupTask.class) public class SendToQueueFromWithinTransactionTest { private static final Logger logger = Logger.getLogger(SendToQueueFromWithinTransactionTest.class); @EJB private TransactedQueueMessageSender sender; @EJB private TransactedQueueMessageSender sender2; private static volatile boolean messageReceived; @Before public void setMessageReceived() { messageReceived = false; } @Deployment public static JavaArchive createTestArchive() { return ShrinkWrap.create(JavaArchive.class, "test.jar") .addClass(TransactedQueueMessageSender.class) .addClass(QueueMessageDrivenBean.class) .addClass(CreateQueueSetupTask.class) .addPackage(JMSOperations.class.getPackage()) .addAsManifestResource( EmptyAsset.INSTANCE, ArchivePaths.create("beans.xml")); } @Test public void sendSuccessfully() throws Exception { try { sender.sendToQueueSuccessfully(); Thread.sleep(2000); } catch (Exception ex) { ex.printStackTrace(); } Assert.assertTrue(messageReceived); } @Test public void sendAndRollback() { try { sender2.sendToQueueAndRollback(); Thread.sleep(2000); } catch (Exception ex) { ex.printStackTrace(); } Assert.assertFalse(messageReceived); } public void receivedMessage(@Observes Message message) { messageReceived = true; try { logger.trace("caught event... message=" + ((TextMessage) message).getText()); } catch (JMSException ex) { ex.printStackTrace(); Assert.fail(ex.getMessage()); } } }