/* * Copyright 2002-2012 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.test.context.transaction; import java.lang.annotation.Annotation; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collections; import java.util.IdentityHashMap; import java.util.List; import java.util.Map; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.beans.BeansException; import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.BeanFactoryUtils; import org.springframework.beans.factory.ListableBeanFactory; import org.springframework.beans.factory.annotation.BeanFactoryAnnotationUtils; import org.springframework.context.ApplicationContext; import org.springframework.core.annotation.AnnotationUtils; import org.springframework.test.annotation.NotTransactional; import org.springframework.test.annotation.Rollback; import org.springframework.test.context.TestContext; import org.springframework.test.context.support.AbstractTestExecutionListener; import org.springframework.transaction.PlatformTransactionManager; import org.springframework.transaction.TransactionDefinition; import org.springframework.transaction.TransactionException; import org.springframework.transaction.TransactionStatus; import org.springframework.transaction.annotation.AnnotationTransactionAttributeSource; import org.springframework.transaction.annotation.TransactionManagementConfigurer; import org.springframework.transaction.interceptor.DelegatingTransactionAttribute; import org.springframework.transaction.interceptor.TransactionAttribute; import org.springframework.transaction.interceptor.TransactionAttributeSource; import org.springframework.util.Assert; import org.springframework.util.ReflectionUtils; import org.springframework.util.StringUtils; /** * {@code TestExecutionListener} that provides support for executing tests * within transactions by honoring the * {@link org.springframework.transaction.annotation.Transactional @Transactional} * and {@link NotTransactional @NotTransactional} annotations. Expects a * {@link PlatformTransactionManager} bean to be defined in the Spring * {@link ApplicationContext} for the test. * *

Changes to the database during a test that is run with {@code @Transactional} * will be run within a transaction that will, by default, be automatically * rolled back after completion of the test; whereas, changes to the * database during a test that is run with {@code @NotTransactional} will * not be run within a transaction. Test methods that are not * annotated with either {@code @Transactional} (at the class or method level) * or {@code @NotTransactional} will not be run within a transaction. * *

Transactional commit and rollback behavior can be configured via the * class-level {@link TransactionConfiguration @TransactionConfiguration} and * method-level {@link Rollback @Rollback} annotations. * *

In case there are multiple instances of {@code PlatformTransactionManager} * within the test's {@code ApplicationContext}, @{@code TransactionConfiguration} * supports configuring the bean name of the {@code PlatformTransactionManager} * that should be used to drive transactions. Alternatively, * {@link TransactionManagementConfigurer} can be implemented in an * {@link org.springframework.context.annotation.Configuration @Configuration} * class. * *

When executing transactional tests, it is sometimes useful to be able to * execute certain set up or tear down code outside of a * transaction. {@code TransactionalTestExecutionListener} provides such * support for methods annotated with * {@link BeforeTransaction @BeforeTransaction} and * {@link AfterTransaction @AfterTransaction}. * * @author Sam Brannen * @author Juergen Hoeller * @since 2.5 * @see TransactionConfiguration * @see org.springframework.transaction.annotation.Transactional * @see org.springframework.test.annotation.NotTransactional * @see org.springframework.test.annotation.Rollback * @see BeforeTransaction * @see AfterTransaction */ @SuppressWarnings("deprecation") public class TransactionalTestExecutionListener extends AbstractTestExecutionListener { private static final Log logger = LogFactory.getLog(TransactionalTestExecutionListener.class); private static final String DEFAULT_TRANSACTION_MANAGER_NAME = (String) AnnotationUtils.getDefaultValue( TransactionConfiguration.class, "transactionManager"); private static final Boolean DEFAULT_DEFAULT_ROLLBACK = (Boolean) AnnotationUtils.getDefaultValue( TransactionConfiguration.class, "defaultRollback"); protected final TransactionAttributeSource attributeSource = new AnnotationTransactionAttributeSource(); private final Map transactionContextCache = Collections.synchronizedMap(new IdentityHashMap()); private TransactionConfigurationAttributes configurationAttributes; private volatile int transactionsStarted = 0; /** * If the test method of the supplied {@link TestContext test context} is * configured to run within a transaction, this method will run * {@link BeforeTransaction @BeforeTransaction methods} and start a new * transaction. *

Note that if a {@code BeforeTransaction @BeforeTransaction method} fails, * remaining {@code BeforeTransaction @BeforeTransaction methods} will not * be invoked, and a transaction will not be started. * @see org.springframework.transaction.annotation.Transactional * @see org.springframework.test.annotation.NotTransactional * @see #getTransactionManager(TestContext, String) */ @SuppressWarnings("serial") @Override public void beforeTestMethod(TestContext testContext) throws Exception { final Method testMethod = testContext.getTestMethod(); Assert.notNull(testMethod, "The test method of the supplied TestContext must not be null"); if (this.transactionContextCache.remove(testMethod) != null) { throw new IllegalStateException("Cannot start new transaction without ending existing transaction: " + "Invoke endTransaction() before startNewTransaction()."); } if (testMethod.isAnnotationPresent(NotTransactional.class)) { return; } PlatformTransactionManager tm = null; TransactionAttribute transactionAttribute = this.attributeSource.getTransactionAttribute(testMethod, testContext.getTestClass()); if (transactionAttribute != null) { transactionAttribute = new DelegatingTransactionAttribute(transactionAttribute) { public String getName() { return testMethod.getName(); } }; if (logger.isDebugEnabled()) { logger.debug("Explicit transaction definition [" + transactionAttribute + "] found for test context " + testContext); } tm = getTransactionManager(testContext, transactionAttribute.getQualifier()); } if (tm != null) { TransactionContext txContext = new TransactionContext(tm, transactionAttribute); runBeforeTransactionMethods(testContext); startNewTransaction(testContext, txContext); this.transactionContextCache.put(testMethod, txContext); } } /** * If a transaction is currently active for the test method of the supplied * {@link TestContext test context}, this method will end the transaction * and run {@link AfterTransaction @AfterTransaction methods}. *

{@code AfterTransaction @AfterTransaction methods} are guaranteed to be * invoked even if an error occurs while ending the transaction. */ @Override public void afterTestMethod(TestContext testContext) throws Exception { Method testMethod = testContext.getTestMethod(); Assert.notNull(testMethod, "The test method of the supplied TestContext must not be null"); // If the transaction is still active... TransactionContext txContext = this.transactionContextCache.remove(testMethod); if (txContext != null && !txContext.transactionStatus.isCompleted()) { try { endTransaction(testContext, txContext); } finally { runAfterTransactionMethods(testContext); } } } /** * Run all {@link BeforeTransaction @BeforeTransaction methods} for the * specified {@link TestContext test context}. If one of the methods fails, * however, the caught exception will be rethrown in a wrapped * {@link RuntimeException}, and the remaining methods will not * be given a chance to execute. * @param testContext the current test context */ protected void runBeforeTransactionMethods(TestContext testContext) throws Exception { try { List methods = getAnnotatedMethods(testContext.getTestClass(), BeforeTransaction.class); Collections.reverse(methods); for (Method method : methods) { if (logger.isDebugEnabled()) { logger.debug("Executing @BeforeTransaction method [" + method + "] for test context " + testContext); } method.invoke(testContext.getTestInstance()); } } catch (InvocationTargetException ex) { logger.error("Exception encountered while executing @BeforeTransaction methods for test context " + testContext + ".", ex.getTargetException()); ReflectionUtils.rethrowException(ex.getTargetException()); } } /** * Run all {@link AfterTransaction @AfterTransaction methods} for the * specified {@link TestContext test context}. If one of the methods fails, * the caught exception will be logged as an error, and the remaining * methods will be given a chance to execute. After all methods have * executed, the first caught exception, if any, will be rethrown. * @param testContext the current test context */ protected void runAfterTransactionMethods(TestContext testContext) throws Exception { Throwable afterTransactionException = null; List methods = getAnnotatedMethods(testContext.getTestClass(), AfterTransaction.class); for (Method method : methods) { try { if (logger.isDebugEnabled()) { logger.debug("Executing @AfterTransaction method [" + method + "] for test context " + testContext); } method.invoke(testContext.getTestInstance()); } catch (InvocationTargetException ex) { Throwable targetException = ex.getTargetException(); if (afterTransactionException == null) { afterTransactionException = targetException; } logger.error("Exception encountered while executing @AfterTransaction method [" + method + "] for test context " + testContext, targetException); } catch (Exception ex) { if (afterTransactionException == null) { afterTransactionException = ex; } logger.error("Exception encountered while executing @AfterTransaction method [" + method + "] for test context " + testContext, ex); } } if (afterTransactionException != null) { ReflectionUtils.rethrowException(afterTransactionException); } } /** * Start a new transaction for the supplied {@link TestContext test context}. *

Only call this method if {@link #endTransaction} has been called or if no * transaction has been previously started. * @param testContext the current test context * @throws TransactionException if starting the transaction fails * @throws Exception if an error occurs while retrieving the transaction manager */ private void startNewTransaction(TestContext testContext, TransactionContext txContext) throws Exception { txContext.startTransaction(); ++this.transactionsStarted; if (logger.isInfoEnabled()) { logger.info("Began transaction (" + this.transactionsStarted + "): transaction manager [" + txContext.transactionManager + "]; rollback [" + isRollback(testContext) + "]"); } } /** * Immediately force a commit or rollback of the * transaction for the supplied {@link TestContext test context}, according * to the commit and rollback flags. * @param testContext the current test context * @throws Exception if an error occurs while retrieving the transaction manager */ private void endTransaction(TestContext testContext, TransactionContext txContext) throws Exception { boolean rollback = isRollback(testContext); if (logger.isTraceEnabled()) { logger.trace("Ending transaction for test context " + testContext + "; transaction manager [" + txContext.transactionStatus + "]; rollback [" + rollback + "]"); } txContext.endTransaction(rollback); if (logger.isInfoEnabled()) { logger.info((rollback ? "Rolled back" : "Committed") + " transaction after test execution for test context " + testContext); } } /** * Get the {@link PlatformTransactionManager transaction manager} to use * for the supplied {@link TestContext test context} and {@code qualifier}. *

Delegates to {@link #getTransactionManager(TestContext)} if the * supplied {@code qualifier} is null or empty. * @param testContext the test context for which the transaction manager * should be retrieved * @param qualifier the qualifier for selecting between multiple bean matches; * may be null or empty * @return the transaction manager to use, or null if not found * @throws BeansException if an error occurs while retrieving the transaction manager * @see #getTransactionManager(TestContext) */ protected final PlatformTransactionManager getTransactionManager(TestContext testContext, String qualifier) { // look up by type and qualifier from @Transactional if (StringUtils.hasText(qualifier)) { try { // Use autowire-capable factory in order to support extended qualifier // matching (only exposed on the internal BeanFactory, not on the // ApplicationContext). BeanFactory bf = testContext.getApplicationContext().getAutowireCapableBeanFactory(); return BeanFactoryAnnotationUtils.qualifiedBeanOfType(bf, PlatformTransactionManager.class, qualifier); } catch (RuntimeException ex) { if (logger.isWarnEnabled()) { logger.warn("Caught exception while retrieving transaction manager for test context " + testContext + " and qualifier [" + qualifier + "]", ex); } throw ex; } } // else return getTransactionManager(testContext); } /** * Get the {@link PlatformTransactionManager transaction manager} to use * for the supplied {@link TestContext test context}. * @param testContext the test context for which the transaction manager * should be retrieved * @return the transaction manager to use, or null if not found * @throws BeansException if an error occurs while retrieving the transaction manager * @see #getTransactionManager(TestContext, String) */ protected final PlatformTransactionManager getTransactionManager(TestContext testContext) { BeanFactory bf = testContext.getApplicationContext().getAutowireCapableBeanFactory(); String tmName = retrieveConfigurationAttributes(testContext).getTransactionManagerName(); try { // look up by type and explicit name from @TransactionConfiguration if (StringUtils.hasText(tmName) && !DEFAULT_TRANSACTION_MANAGER_NAME.equals(tmName)) { return bf.getBean(tmName, PlatformTransactionManager.class); } if (bf instanceof ListableBeanFactory) { ListableBeanFactory lbf = (ListableBeanFactory) bf; // look up single bean by type Map txMgrs = BeanFactoryUtils.beansOfTypeIncludingAncestors( lbf, PlatformTransactionManager.class); if (txMgrs.size() == 1) { return txMgrs.values().iterator().next(); } // look up single TransactionManagementConfigurer Map configurers = BeanFactoryUtils.beansOfTypeIncludingAncestors( lbf, TransactionManagementConfigurer.class); if (configurers.size() > 1) { throw new IllegalStateException( "Only one TransactionManagementConfigurer may exist in the ApplicationContext"); } if (configurers.size() == 1) { return configurers.values().iterator().next().annotationDrivenTransactionManager(); } } // look up by type and default name from @TransactionConfiguration return bf.getBean(DEFAULT_TRANSACTION_MANAGER_NAME, PlatformTransactionManager.class); } catch (BeansException ex) { if (logger.isWarnEnabled()) { logger.warn("Caught exception while retrieving transaction manager for test context " + testContext, ex); } throw ex; } } /** * Determine whether or not to rollback transactions by default for the * supplied {@link TestContext test context}. * @param testContext the test context for which the default rollback flag * should be retrieved * @return the default rollback flag for the supplied test context * @throws Exception if an error occurs while determining the default rollback flag */ protected final boolean isDefaultRollback(TestContext testContext) throws Exception { return retrieveConfigurationAttributes(testContext).isDefaultRollback(); } /** * Determine whether or not to rollback transactions for the supplied * {@link TestContext test context} by taking into consideration the * {@link #isDefaultRollback(TestContext) default rollback} flag and a * possible method-level override via the {@link Rollback} annotation. * @param testContext the test context for which the rollback flag * should be retrieved * @return the rollback flag for the supplied test context * @throws Exception if an error occurs while determining the rollback flag */ protected final boolean isRollback(TestContext testContext) throws Exception { boolean rollback = isDefaultRollback(testContext); Rollback rollbackAnnotation = testContext.getTestMethod().getAnnotation(Rollback.class); if (rollbackAnnotation != null) { boolean rollbackOverride = rollbackAnnotation.value(); if (logger.isDebugEnabled()) { logger.debug("Method-level @Rollback(" + rollbackOverride + ") overrides default rollback [" + rollback + "] for test context " + testContext); } rollback = rollbackOverride; } else { if (logger.isDebugEnabled()) { logger.debug("No method-level @Rollback override: using default rollback [" + rollback + "] for test context " + testContext); } } return rollback; } /** * Gets all superclasses of the supplied {@link Class class}, including the * class itself. The ordering of the returned list will begin with the * supplied class and continue up the class hierarchy. *

Note: This code has been borrowed from * {@link org.junit.internal.runners.TestClass#getSuperClasses(Class)} and * adapted. * @param clazz the class for which to retrieve the superclasses. * @return all superclasses of the supplied class. */ private List> getSuperClasses(Class clazz) { ArrayList> results = new ArrayList>(); Class current = clazz; while (current != null) { results.add(current); current = current.getSuperclass(); } return results; } /** * Gets all methods in the supplied {@link Class class} and its superclasses * which are annotated with the supplied annotationType but * which are not shadowed by methods overridden in subclasses. *

Note: This code has been borrowed from * {@link org.junit.internal.runners.TestClass#getAnnotatedMethods(Class)} * and adapted. * @param clazz the class for which to retrieve the annotated methods * @param annotationType the annotation type for which to search * @return all annotated methods in the supplied class and its superclasses */ private List getAnnotatedMethods(Class clazz, Class annotationType) { List results = new ArrayList(); for (Class eachClass : getSuperClasses(clazz)) { Method[] methods = eachClass.getDeclaredMethods(); for (Method eachMethod : methods) { Annotation annotation = eachMethod.getAnnotation(annotationType); if (annotation != null && !isShadowed(eachMethod, results)) { results.add(eachMethod); } } } return results; } /** * Determines if the supplied {@link Method method} is shadowed * by a method in supplied {@link List list} of previous methods. *

Note: This code has been borrowed from * {@link org.junit.internal.runners.TestClass#isShadowed(Method,List)}. * @param method the method to check for shadowing * @param previousMethods the list of methods which have previously been processed * @return true if the supplied method is shadowed by a * method in the previousMethods list */ private boolean isShadowed(Method method, List previousMethods) { for (Method each : previousMethods) { if (isShadowed(method, each)) { return true; } } return false; } /** * Determines if the supplied {@link Method current method} is * shadowed by a {@link Method previous method}. *

Note: This code has been borrowed from * {@link org.junit.internal.runners.TestClass#isShadowed(Method,Method)}. * @param current the current method * @param previous the previous method * @return true if the previous method shadows the current one */ private boolean isShadowed(Method current, Method previous) { if (!previous.getName().equals(current.getName())) { return false; } if (previous.getParameterTypes().length != current.getParameterTypes().length) { return false; } for (int i = 0; i < previous.getParameterTypes().length; i++) { if (!previous.getParameterTypes()[i].equals(current.getParameterTypes()[i])) { return false; } } return true; } /** * Retrieves the {@link TransactionConfigurationAttributes} for the * specified {@link Class class} which may optionally declare or inherit * {@link TransactionConfiguration @TransactionConfiguration}. If * {@code @TransactionConfiguration} is not present for the supplied * class, the default values for attributes defined in * {@code @TransactionConfiguration} will be used instead. * @param testContext the test context for which the configuration * attributes should be retrieved * @return a new TransactionConfigurationAttributes instance */ private TransactionConfigurationAttributes retrieveConfigurationAttributes(TestContext testContext) { if (this.configurationAttributes == null) { Class clazz = testContext.getTestClass(); TransactionConfiguration config = clazz.getAnnotation(TransactionConfiguration.class); if (logger.isDebugEnabled()) { logger.debug("Retrieved @TransactionConfiguration [" + config + "] for test class [" + clazz + "]"); } String transactionManagerName; boolean defaultRollback; if (config != null) { transactionManagerName = config.transactionManager(); defaultRollback = config.defaultRollback(); } else { transactionManagerName = DEFAULT_TRANSACTION_MANAGER_NAME; defaultRollback = DEFAULT_DEFAULT_ROLLBACK; } TransactionConfigurationAttributes configAttributes = new TransactionConfigurationAttributes( transactionManagerName, defaultRollback); if (logger.isDebugEnabled()) { logger.debug("Retrieved TransactionConfigurationAttributes " + configAttributes + " for class [" + clazz + "]"); } this.configurationAttributes = configAttributes; } return this.configurationAttributes; } /** * Internal context holder for a specific test method. */ private static class TransactionContext { private final PlatformTransactionManager transactionManager; private final TransactionDefinition transactionDefinition; private TransactionStatus transactionStatus; public TransactionContext(PlatformTransactionManager transactionManager, TransactionDefinition transactionDefinition) { this.transactionManager = transactionManager; this.transactionDefinition = transactionDefinition; } public void startTransaction() { this.transactionStatus = this.transactionManager.getTransaction(this.transactionDefinition); } public void endTransaction(boolean rollback) { if (rollback) { this.transactionManager.rollback(this.transactionStatus); } else { this.transactionManager.commit(this.transactionStatus); } } } }