All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.test.context.support.DependencyInjectionTestExecutionListener Maven / Gradle / Ivy

There is a newer version: 6.1.13
Show newest version
/*
 * Copyright 2002-2024 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
 *
 *      https://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.support;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import org.springframework.beans.factory.config.ConfigurableListableBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.CommonAnnotationBeanPostProcessor;
import org.springframework.context.support.GenericApplicationContext;
import org.springframework.core.Conventions;
import org.springframework.test.context.TestContext;
import org.springframework.test.context.aot.AotTestContextInitializers;

/**
 * {@code TestExecutionListener} which provides support for dependency
 * injection and initialization of test instances.
 *
 * @author Sam Brannen
 * @author Juergen Hoeller
 * @since 2.5
 */
public class DependencyInjectionTestExecutionListener extends AbstractTestExecutionListener {

	/**
	 * Attribute name for a {@link TestContext} attribute which indicates
	 * whether the dependencies of a test instance should be
	 * reinjected in
	 * {@link #beforeTestMethod(TestContext) beforeTestMethod()}. Note that
	 * dependencies will be injected in
	 * {@link #prepareTestInstance(TestContext) prepareTestInstance()} in any
	 * case.
	 * 

Clients of a {@link TestContext} (e.g., other * {@link org.springframework.test.context.TestExecutionListener TestExecutionListeners}) * may therefore choose to set this attribute to signal that dependencies * should be reinjected between execution of individual test * methods. *

Permissible values include {@link Boolean#TRUE} and {@link Boolean#FALSE}. */ public static final String REINJECT_DEPENDENCIES_ATTRIBUTE = Conventions.getQualifiedAttributeName( DependencyInjectionTestExecutionListener.class, "reinjectDependencies"); private static final Log logger = LogFactory.getLog(DependencyInjectionTestExecutionListener.class); private final AotTestContextInitializers aotTestContextInitializers = new AotTestContextInitializers(); /** * Returns {@code 2000}. */ @Override public final int getOrder() { return 2000; } /** * Performs dependency injection on the * {@link TestContext#getTestInstance() test instance} of the supplied * {@link TestContext test context} by * {@link AutowireCapableBeanFactory#autowireBeanProperties(Object, int, boolean) autowiring} * and * {@link AutowireCapableBeanFactory#initializeBean(Object, String) initializing} * the test instance via its own * {@link TestContext#getApplicationContext() application context} (without * checking dependencies). *

The {@link #REINJECT_DEPENDENCIES_ATTRIBUTE} will be subsequently removed * from the test context, regardless of its value. */ @Override public void prepareTestInstance(TestContext testContext) throws Exception { if (logger.isTraceEnabled()) { logger.trace("Performing dependency injection for test context " + testContext); } else if (logger.isDebugEnabled()) { logger.debug("Performing dependency injection for test class " + testContext.getTestClass().getName()); } if (runningInAotMode(testContext.getTestClass())) { injectDependenciesInAotMode(testContext); } else { injectDependencies(testContext); } } /** * If the {@link #REINJECT_DEPENDENCIES_ATTRIBUTE} in the supplied * {@link TestContext test context} has a value of {@link Boolean#TRUE}, * this method will have the same effect as * {@link #prepareTestInstance(TestContext) prepareTestInstance()}; * otherwise, this method will have no effect. */ @Override public void beforeTestMethod(TestContext testContext) throws Exception { if (Boolean.TRUE.equals(testContext.getAttribute(REINJECT_DEPENDENCIES_ATTRIBUTE))) { if (logger.isTraceEnabled()) { logger.trace("Reinjecting dependencies for test context " + testContext); } else if (logger.isDebugEnabled()) { logger.debug("Reinjecting dependencies for test class " + testContext.getTestClass().getName()); } if (runningInAotMode(testContext.getTestClass())) { injectDependenciesInAotMode(testContext); } else { injectDependencies(testContext); } } } /** * Performs dependency injection and bean initialization for the supplied * {@link TestContext} as described in * {@link #prepareTestInstance(TestContext) prepareTestInstance()}. *

The {@link #REINJECT_DEPENDENCIES_ATTRIBUTE} will be subsequently removed * from the test context, regardless of its value. * @param testContext the test context for which dependency injection should * be performed (never {@code null}) * @throws Exception allows any exception to propagate * @see #prepareTestInstance(TestContext) * @see #beforeTestMethod(TestContext) */ protected void injectDependencies(TestContext testContext) throws Exception { Object bean = testContext.getTestInstance(); Class clazz = testContext.getTestClass(); AutowireCapableBeanFactory beanFactory = testContext.getApplicationContext().getAutowireCapableBeanFactory(); beanFactory.autowireBeanProperties(bean, AutowireCapableBeanFactory.AUTOWIRE_NO, false); beanFactory.initializeBean(bean, clazz.getName() + AutowireCapableBeanFactory.ORIGINAL_INSTANCE_SUFFIX); testContext.removeAttribute(REINJECT_DEPENDENCIES_ATTRIBUTE); } private void injectDependenciesInAotMode(TestContext testContext) throws Exception { ApplicationContext applicationContext = testContext.getApplicationContext(); if (!(applicationContext instanceof GenericApplicationContext gac)) { throw new IllegalStateException("AOT ApplicationContext must be a GenericApplicationContext instead of " + applicationContext.getClass().getName()); } Object bean = testContext.getTestInstance(); String beanName = testContext.getTestClass().getName() + AutowireCapableBeanFactory.ORIGINAL_INSTANCE_SUFFIX; ConfigurableListableBeanFactory beanFactory = gac.getBeanFactory(); AutowiredAnnotationBeanPostProcessor autowiredAnnotationBpp = new AutowiredAnnotationBeanPostProcessor(); autowiredAnnotationBpp.setBeanFactory(beanFactory); autowiredAnnotationBpp.processInjection(bean); CommonAnnotationBeanPostProcessor commonAnnotationBpp = new CommonAnnotationBeanPostProcessor(); commonAnnotationBpp.setBeanFactory(beanFactory); commonAnnotationBpp.processInjection(bean); beanFactory.initializeBean(bean, beanName); testContext.removeAttribute(REINJECT_DEPENDENCIES_ATTRIBUTE); } /** * Determine if we are running in AOT mode for the supplied test class. */ private boolean runningInAotMode(Class testClass) { return this.aotTestContextInitializers.isSupportedTestClass(testClass); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy