/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.transaction; import static org.junit.Assert.assertEquals; import org.mule.runtime.core.api.MuleContext; import org.mule.runtime.core.api.context.notification.TransactionNotificationListener; import org.mule.runtime.core.api.transaction.Transaction; import org.mule.runtime.api.tx.TransactionException; import org.mule.runtime.core.context.notification.TransactionNotification; import org.mule.tck.junit4.AbstractMuleContextTestCase; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import org.junit.Test; public class TransactionNotificationsTestCase extends AbstractMuleContextTestCase { @Test public void testTransactionNotifications() throws Exception { final CountDownLatch latch = new CountDownLatch(3); // the code is simple and deceptive :) The trick is this dummy transaction is handled by // a global TransactionCoordination instance, which binds it to the current thread. Transaction transaction = new DummyTransaction(muleContext); muleContext.registerListener(new TransactionNotificationListener<TransactionNotification>() { @Override public boolean isBlocking() { return false; } @Override public void onNotification(TransactionNotification notification) { if (notification.getAction() == TransactionNotification.TRANSACTION_BEGAN) { assertEquals("begin", notification.getActionName()); latch.countDown(); } else { if (notification.getAction() == TransactionNotification.TRANSACTION_COMMITTED) { assertEquals("commit", notification.getActionName()); latch.countDown(); } else { if (notification.getAction() == TransactionNotification.TRANSACTION_ROLLEDBACK) { assertEquals("rollback", notification.getActionName()); latch.countDown(); } } } } }, transaction.getId()); transaction.begin(); transaction.commit(); transaction.rollback(); // Wait for the notifcation event to be fired as they are queued latch.await(2000, TimeUnit.MILLISECONDS); assertEquals("There are still some notifications left unfired.", 0, latch.getCount()); } private class DummyTransaction extends AbstractSingleResourceTransaction { private DummyTransaction(MuleContext muleContext) { super(muleContext); } @Override protected Class getResourceType() { return null; // To change body of implemented methods use File | Settings | File Templates. } @Override protected Class getKeyType() { return null; // To change body of implemented methods use File | Settings | File Templates. } @Override protected void doBegin() throws TransactionException { } @Override protected void doCommit() throws TransactionException { } @Override protected void doRollback() throws TransactionException { } } }