mockit.internal.util.Utilities 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.util;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.lang.annotation.Annotation;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.GenericArrayType;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;
import java.lang.reflect.WildcardType;
import java.net.URLDecoder;
import java.nio.charset.StandardCharsets;
import java.security.CodeSource;
import java.util.List;
/**
* Miscellaneous utility constants and methods.
*/
public final class Utilities {
@NonNull
public static final Object[] NO_ARGS = {};
public static final boolean JAVA8;
public static final boolean HOTSPOT_VM;
static {
float javaVersion = Float.parseFloat(System.getProperty("java.specification.version"));
JAVA8 = javaVersion >= 1.8F;
String vmName = System.getProperty("java.vm.name");
HOTSPOT_VM = vmName.contains("HotSpot") || vmName.contains("OpenJDK");
}
private Utilities() {
}
public static void ensureThatMemberIsAccessible(@NonNull AccessibleObject classMember) {
// noinspection deprecation
if (!classMember.isAccessible()) {
classMember.setAccessible(true);
}
}
public static Method getAnnotatedMethod(Class> cls, Class extends Annotation> annotation) {
for (Method method : cls.getMethods()) {
if (method.getAnnotation(annotation) != null) {
return method;
}
}
return null;
}
public static Method getAnnotatedDeclaredMethod(Class> cls, Class extends Annotation> annotation) {
for (Method method : cls.getDeclaredMethods()) {
if (method.getAnnotation(annotation) != null) {
return method;
}
}
return null;
}
@NonNull
public static Class> getClassType(@NonNull Type declaredType) {
while (true) {
if (declaredType instanceof Class>) {
return (Class>) declaredType;
}
if (declaredType instanceof ParameterizedType) {
return (Class>) ((ParameterizedType) declaredType).getRawType();
}
if (declaredType instanceof GenericArrayType) {
declaredType = ((GenericArrayType) declaredType).getGenericComponentType();
continue;
}
if (declaredType instanceof TypeVariable) {
declaredType = ((TypeVariable>) declaredType).getBounds()[0];
continue;
}
if (declaredType instanceof WildcardType) {
declaredType = ((WildcardType) declaredType).getUpperBounds()[0];
continue;
}
throw new IllegalArgumentException("Type of unexpected kind: " + declaredType);
}
}
public static boolean containsReference(@NonNull List> references, @Nullable Object toBeFound) {
for (Object reference : references) {
if (reference == toBeFound) {
return true;
}
}
return false;
}
@NonNull
public static String getClassFileLocationPath(@NonNull Class> aClass) {
CodeSource codeSource = aClass.getProtectionDomain().getCodeSource();
return getClassFileLocationPath(codeSource);
}
@NonNull
public static String getClassFileLocationPath(@NonNull CodeSource codeSource) {
String locationPath = codeSource.getLocation().getPath();
return URLDecoder.decode(locationPath, StandardCharsets.UTF_8);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy