org.junit.jupiter.engine.config.InstantiatingConfigurationParameterConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-jupiter-engine Show documentation
Show all versions of junit-jupiter-engine Show documentation
Module "junit-jupiter-engine" of JUnit 5.
/*
* Copyright 2015-2021 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v2.0 which
* accompanies this distribution and is available at
*
* https://www.eclipse.org/legal/epl-v20.html
*/
package org.junit.jupiter.engine.config;
import java.util.Optional;
import org.junit.platform.commons.logging.Logger;
import org.junit.platform.commons.logging.LoggerFactory;
import org.junit.platform.commons.util.ReflectionUtils;
import org.junit.platform.engine.ConfigurationParameters;
/**
* @since 5.5
*/
class InstantiatingConfigurationParameterConverter {
private static final Logger logger = LoggerFactory.getLogger(InstantiatingConfigurationParameterConverter.class);
private final Class clazz;
private final String name;
public InstantiatingConfigurationParameterConverter(Class clazz, String name) {
this.clazz = clazz;
this.name = name;
}
Optional get(ConfigurationParameters configurationParameters, String key) {
// @formatter:off
return configurationParameters.get(key)
.map(String::trim)
.filter(className -> !className.isEmpty())
.flatMap(className -> newInstance(className, key));
// @formatter:on
}
private Optional newInstance(String className, String key) {
// @formatter:off
return ReflectionUtils.tryToLoadClass(className)
.andThenTry(ReflectionUtils::newInstance)
.andThenTry(this.clazz::cast)
.ifSuccess(generator -> logSuccessMessage(className, key))
.ifFailure(cause -> logFailureMessage(className, key, cause))
.toOptional();
// @formatter:on
}
private void logFailureMessage(String className, String key, Exception cause) {
logger.warn(cause,
() -> String.format("Failed to load default %s class '%s' set via the '%s' configuration parameter."
+ " Falling back to default behavior.",
this.name, className, key));
}
private void logSuccessMessage(String className, String key) {
logger.config(() -> String.format("Using default %s '%s' set via the '%s' configuration parameter.", this.name,
className, key));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy