mockit.internal.reflection.ConstructorReflection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmockit Show documentation
Show all versions of jmockit Show documentation
JMockit is a Java toolkit for automated developer testing.
It contains APIs for the creation of the objects to be tested, for mocking dependencies, and for faking external
APIs; JUnit (4 & 5) and TestNG test runners are supported.
It also contains an advanced code coverage tool.
The newest version!
/*
* Copyright (c) 2006 JMockit developers
* This file is subject to the terms of the MIT license (see LICENSE.txt).
*/
package mockit.internal.reflection;
import static mockit.internal.reflection.ParameterReflection.getParameterTypesDescription;
import static mockit.internal.reflection.ParameterReflection.indexOfFirstRealParameter;
import static mockit.internal.reflection.ParameterReflection.matchesParameterTypes;
import static mockit.internal.util.Utilities.ensureThatMemberIsAccessible;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import org.objenesis.instantiator.sun.SunReflectionFactoryInstantiator;
public final class ConstructorReflection {
private ConstructorReflection() {
}
@NonNull
static Constructor findSpecifiedConstructor(@NonNull Class> theClass, @NonNull Class>[] paramTypes) {
for (Constructor> declaredConstructor : theClass.getDeclaredConstructors()) {
Class>[] declaredParameterTypes = declaredConstructor.getParameterTypes();
int firstRealParameter = indexOfFirstRealParameter(declaredParameterTypes, paramTypes);
if (firstRealParameter >= 0
&& matchesParameterTypes(declaredParameterTypes, paramTypes, firstRealParameter)) {
// noinspection unchecked
return (Constructor) declaredConstructor;
}
}
String paramTypesDesc = getParameterTypesDescription(paramTypes);
throw new IllegalArgumentException(
"Specified constructor not found: " + theClass.getSimpleName() + paramTypesDesc);
}
@NonNull
public static T invokeAccessible(@NonNull Constructor constructor, @NonNull Object... initArgs) {
if (!constructor.isAccessible()) {
constructor.setAccessible(true);
}
try {
return constructor.newInstance(initArgs);
} catch (InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e);
} catch (InvocationTargetException e) {
Throwable cause = e.getCause();
if (cause instanceof Error) {
throw (Error) cause;
}
if (cause instanceof RuntimeException) {
throw (RuntimeException) cause;
}
ThrowOfCheckedException.doThrow((Exception) cause);
throw new IllegalStateException("Should never get here", cause);
}
}
public static void newInstanceUsingCompatibleConstructor(@NonNull Class> aClass, @NonNull String argument)
throws ReflectiveOperationException {
Constructor> constructor = aClass.getDeclaredConstructor(String.class);
ensureThatMemberIsAccessible(constructor);
constructor.newInstance(argument);
}
@NonNull
public static T newInstanceUsingDefaultConstructor(@NonNull Class aClass) {
try {
Constructor constructor = aClass.getDeclaredConstructor();
ensureThatMemberIsAccessible(constructor);
return constructor.newInstance();
} catch (NoSuchMethodException | InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e);
} catch (InvocationTargetException e) {
throw new RuntimeException(e.getTargetException());
}
}
@Nullable
public static T newInstanceUsingDefaultConstructorIfAvailable(@NonNull Class aClass) {
try {
Constructor constructor = aClass.getDeclaredConstructor();
return constructor.newInstance();
} catch (NoSuchMethodException | InstantiationException | IllegalAccessException
| InvocationTargetException ignore) {
return null;
}
}
@Nullable
public static T newInstanceUsingPublicConstructorIfAvailable(@NonNull Class aClass,
@NonNull Class>[] parameterTypes, @NonNull Object... initArgs) {
Constructor publicConstructor;
try {
publicConstructor = aClass.getConstructor(parameterTypes);
} catch (NoSuchMethodException ignore) {
return null;
}
return invokeAccessible(publicConstructor, initArgs);
}
@NonNull
public static T newInstanceUsingPublicDefaultConstructor(@NonNull Class aClass) {
Constructor publicConstructor;
try {
publicConstructor = aClass.getConstructor();
} catch (NoSuchMethodException e) {
throw new RuntimeException(e);
}
return invokeAccessible(publicConstructor);
}
@NonNull
public static T newUninitializedInstance(@NonNull Class aClass) {
SunReflectionFactoryInstantiator ref = new SunReflectionFactoryInstantiator<>(aClass);
return ref.newInstance();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy