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

org.springframework.test.context.aot.AotTestContextInitializers Maven / Gradle / Ivy

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

import java.util.Map;
import java.util.function.Supplier;

import org.springframework.aot.AotDetector;
import org.springframework.context.ApplicationContextInitializer;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.lang.Nullable;

/**
 * {@code AotTestContextInitializers} provides mappings from test classes to
 * AOT-optimized context initializers.
 *
 * 

Intended solely for internal use within the framework. * *

If we are not running in {@linkplain AotDetector#useGeneratedArtifacts() * AOT mode} or if a test class is not {@linkplain #isSupportedTestClass(Class) * supported} in AOT mode, {@link #getContextInitializer(Class)} and * {@link #getContextInitializerClass(Class)} will return {@code null}. * * @author Sam Brannen * @since 6.0 */ public class AotTestContextInitializers { private final Map>> contextInitializers; private final Map>> contextInitializerClasses; public AotTestContextInitializers() { this(AotTestContextInitializersFactory.getContextInitializers(), AotTestContextInitializersFactory.getContextInitializerClasses()); } AotTestContextInitializers( Map>> contextInitializers, Map>> contextInitializerClasses) { this.contextInitializers = contextInitializers; this.contextInitializerClasses = contextInitializerClasses; } /** * Determine if the specified test class has an AOT-optimized application context * initializer. *

If this method returns {@code true}, {@link #getContextInitializer(Class)} * should not return {@code null}. */ public boolean isSupportedTestClass(Class testClass) { return this.contextInitializers.containsKey(testClass.getName()); } /** * Get the AOT {@link ApplicationContextInitializer} for the specified test class. * @return the AOT context initializer, or {@code null} if there is no AOT context * initializer for the specified test class * @see #isSupportedTestClass(Class) * @see #getContextInitializerClass(Class) */ @Nullable public ApplicationContextInitializer getContextInitializer(Class testClass) { Supplier> supplier = this.contextInitializers.get(testClass.getName()); return (supplier != null ? supplier.get() : null); } /** * Get the AOT {@link ApplicationContextInitializer} {@link Class} for the * specified test class. * @return the AOT context initializer class, or {@code null} if there is no * AOT context initializer for the specified test class * @see #isSupportedTestClass(Class) * @see #getContextInitializer(Class) */ @Nullable public Class> getContextInitializerClass(Class testClass) { return this.contextInitializerClasses.get(testClass.getName()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy