Skip to content

Commit

Permalink
Introduce ConversionService in junit-platform-commons
Browse files Browse the repository at this point in the history
  • Loading branch information
scordio committed Dec 31, 2024
1 parent 529da15 commit 7ea91b8
Show file tree
Hide file tree
Showing 10 changed files with 394 additions and 104 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
* the {@link ParameterContext} to perform the conversion.
*
* @since 5.0
* @see SimpleArgumentConverter
* @see org.junit.jupiter.params.ParameterizedTest
* @see org.junit.jupiter.params.converter.ConvertWith
* @see org.junit.jupiter.params.support.AnnotationConsumer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* {@link File}, {@link BigDecimal}, {@link BigInteger}, {@link Currency},
* {@link Locale}, {@link URI}, {@link URL}, {@link UUID}, etc.
*
* <p>If the source and target types are identical the source object will not
* <p>If the source and target types are identical, the source object will not
* be modified.
*
* @since 5.0
Expand Down Expand Up @@ -74,20 +74,14 @@ public final Object convert(Object source, Class<?> targetType, ParameterContext
return source;
}

if (source instanceof String) {
Class<?> declaringClass = context.getDeclaringExecutable().getDeclaringClass();
ClassLoader classLoader = ClassLoaderUtils.getClassLoader(declaringClass);
try {
return ConversionSupport.convert((String) source, targetType, classLoader);
}
catch (ConversionException ex) {
throw new ArgumentConversionException(ex.getMessage(), ex);
}
Class<?> declaringClass = context.getDeclaringExecutable().getDeclaringClass();
ClassLoader classLoader = ClassLoaderUtils.getClassLoader(declaringClass);
try {
return ConversionSupport.convert(source, targetType, classLoader);
}
catch (ConversionException ex) {
throw new ArgumentConversionException(ex.getMessage(), ex);
}

throw new ArgumentConversionException(
String.format("No built-in converter for source type %s and target type %s",
source.getClass().getTypeName(), targetType.getTypeName()));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ protected TypedArgumentConverter(Class<S> sourceType, Class<T> targetType) {
this.targetType = Preconditions.notNull(targetType, "targetType must not be null");
}

/**
* {@inheritDoc}
*/
@Override
public final Object convert(Object source, ParameterContext context) throws ArgumentConversionException {
if (source == null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* Copyright 2015-2024 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.platform.commons.support.conversion;

import static org.apiguardian.api.API.Status.EXPERIMENTAL;

import org.apiguardian.api.API;

/**
* {@code ConversionService} is an abstraction that allows an input object to
* be converted to an instance of a different class.
*
* <p>Implementations are loaded via the {@link java.util.ServiceLoader} and must
* follow the service provider requirements. They should not make any assumptions
* regarding when they are instantiated or how often they are called. Since
* instances may potentially be cached and called from different threads, they
* should be thread-safe.
*
* <p>Extend {@link TypedConversionService} if your implementation always converts
* from a given source type into a given target type and does not need access to
* the {@link ClassLoader} to perform the conversion.
*
* @since 1.12
* @see ConversionSupport
* @see TypedConversionService
*/
@API(status = EXPERIMENTAL, since = "1.12")
public interface ConversionService {

/**
* Determine if the supplied source object can be converted into an instance
* of the specified target type.
*
* @param source the source object to convert; may be {@code null} but only
* if the target type is a reference type
* @param targetType the target type the source should be converted into;
* never {@code null}
* @param classLoader the {@code ClassLoader} to use; never {@code null}
* @return {@code true} if the supplied source can be converted
*/
boolean canConvert(Object source, Class<?> targetType, ClassLoader classLoader);

/**
* Convert the supplied source object into an instance of the specified
* target type.
*
* @param source the source object to convert; may be {@code null} but only
* if the target type is a reference type
* @param targetType the target type the source should be converted into;
* never {@code null}
* @param classLoader the {@code ClassLoader} to use; never {@code null}
* @return the converted object; may be {@code null} but only if the target
* type is a reference type
* @throws ConversionException if an error occurs during the conversion
*/
Object convert(Object source, Class<?> targetType, ClassLoader classLoader) throws ConversionException;

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@

package org.junit.platform.commons.support.conversion;

import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;
import static org.apiguardian.api.API.Status.EXPERIMENTAL;
import static org.junit.platform.commons.util.ReflectionUtils.getWrapperType;

import java.util.List;
import java.util.Optional;
import java.util.ServiceLoader;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

import org.apiguardian.api.API;
import org.junit.platform.commons.util.ClassLoaderUtils;
Expand All @@ -30,17 +28,6 @@
@API(status = EXPERIMENTAL, since = "1.11")
public final class ConversionSupport {

private static final List<StringToObjectConverter> stringToObjectConverters = unmodifiableList(asList( //
new StringToBooleanConverter(), //
new StringToCharacterConverter(), //
new StringToNumberConverter(), //
new StringToClassConverter(), //
new StringToEnumConverter(), //
new StringToJavaTimeConverter(), //
new StringToCommonJavaTypesConverter(), //
new FallbackStringToObjectConverter() //
));

private ConversionSupport() {
/* no-op */
}
Expand All @@ -49,43 +36,6 @@ private ConversionSupport() {
* Convert the supplied source {@code String} into an instance of the specified
* target type.
*
* <p>If the target type is {@code String}, the source {@code String} will not
* be modified.
*
* <p>Some forms of conversion require a {@link ClassLoader}. If none is
* provided, the {@linkplain ClassLoaderUtils#getDefaultClassLoader() default
* ClassLoader} will be used.
*
* <p>This method is able to convert strings into primitive types and their
* corresponding wrapper types ({@link Boolean}, {@link Character}, {@link Byte},
* {@link Short}, {@link Integer}, {@link Long}, {@link Float}, and
* {@link Double}), enum constants, date and time types from the
* {@code java.time} package, as well as common Java types such as {@link Class},
* {@link java.io.File}, {@link java.nio.file.Path}, {@link java.nio.charset.Charset},
* {@link java.math.BigDecimal}, {@link java.math.BigInteger},
* {@link java.util.Currency}, {@link java.util.Locale}, {@link java.util.UUID},
* {@link java.net.URI}, and {@link java.net.URL}.
*
* <p>If the target type is not covered by any of the above, a convention-based
* conversion strategy will be used to convert the source {@code String} into the
* given target type by invoking a static factory method or factory constructor
* defined in the target type. The search algorithm used in this strategy is
* outlined below.
*
* <h4>Search Algorithm</h4>
*
* <ol>
* <li>Search for a single, non-private static factory method in the target
* type that converts from a String to the target type. Use the factory method
* if present.</li>
* <li>Search for a single, non-private constructor in the target type that
* accepts a String. Use the constructor if present.</li>
* </ol>
*
* <p>If multiple suitable factory methods are discovered they will be ignored.
* If neither a single factory method nor a single constructor is found, the
* convention-based conversion strategy will not apply.
*
* @param source the source {@code String} to convert; may be {@code null}
* but only if the target type is a reference type
* @param targetType the target type the source should be converted into;
Expand All @@ -97,48 +47,49 @@ private ConversionSupport() {
* type is a reference type
*
* @since 1.11
* @see DefaultConversionService
* @deprecated Use {@link #convert(Object, Class, ClassLoader)} instead.
*/
@SuppressWarnings("unchecked")
@Deprecated
public static <T> T convert(String source, Class<T> targetType, ClassLoader classLoader) {
if (source == null) {
if (targetType.isPrimitive()) {
throw new ConversionException(
"Cannot convert null to primitive value of type " + targetType.getTypeName());
}
return null;
}

if (String.class.equals(targetType)) {
return (T) source;
}
return (T) DefaultConversionService.INSTANCE.convert(source, targetType, getClassLoader(classLoader));
}

Class<?> targetTypeToUse = toWrapperType(targetType);
Optional<StringToObjectConverter> converter = stringToObjectConverters.stream().filter(
candidate -> candidate.canConvertTo(targetTypeToUse)).findFirst();
if (converter.isPresent()) {
try {
ClassLoader classLoaderToUse = classLoader != null ? classLoader
: ClassLoaderUtils.getDefaultClassLoader();
return (T) converter.get().convert(source, targetTypeToUse, classLoaderToUse);
}
catch (Exception ex) {
if (ex instanceof ConversionException) {
// simply rethrow it
throw (ConversionException) ex;
}
// else
throw new ConversionException(
String.format("Failed to convert String \"%s\" to type %s", source, targetType.getTypeName()), ex);
}
}
/**
* Convert the supplied source object into an instance of the specified
* target type.
*
* @param source the source object to convert; may be {@code null}
* but only if the target type is a reference type
* @param targetType the target type the source should be converted into;
* never {@code null}
* @param classLoader the {@code ClassLoader} to use; may be {@code null} to
* use the default {@code ClassLoader}
* @param <T> the type of the target
* @return the converted object; may be {@code null} but only if the target
* type is a reference type
*
* @since 1.12
*/
@API(status = EXPERIMENTAL, since = "1.12")
@SuppressWarnings("unchecked")
public static <T> T convert(Object source, Class<T> targetType, ClassLoader classLoader) {
ClassLoader classLoaderToUse = getClassLoader(classLoader);
ServiceLoader<ConversionService> serviceLoader = ServiceLoader.load(ConversionService.class, classLoaderToUse);

throw new ConversionException(
"No built-in converter for source type java.lang.String and target type " + targetType.getTypeName());
return (T) Stream.concat( //
StreamSupport.stream(serviceLoader.spliterator(), false), //
Stream.of(DefaultConversionService.INSTANCE)) //
.filter(candidate -> candidate.canConvert(source, targetType, classLoader)) //
.findFirst() //
.map(candidate -> candidate.convert(source, targetType, classLoaderToUse)) //
.orElseThrow(() -> new ConversionException("No built-in converter for source type "
+ source.getClass().getTypeName() + " and target type " + targetType.getTypeName()));
}

private static Class<?> toWrapperType(Class<?> targetType) {
Class<?> wrapperType = getWrapperType(targetType);
return wrapperType != null ? wrapperType : targetType;
private static ClassLoader getClassLoader(ClassLoader classLoader) {
return classLoader != null ? classLoader : ClassLoaderUtils.getDefaultClassLoader();
}

}
Loading

0 comments on commit 7ea91b8

Please sign in to comment.