Package org.jmock.imposters
Class ByteBuddyClassImposteriser
- java.lang.Object
-
- org.jmock.imposters.ByteBuddyClassImposteriser
-
- All Implemented Interfaces:
Imposteriser
public class ByteBuddyClassImposteriser extends java.lang.Object implements Imposteriser
This class lets you imposterise abstract and concrete classes without calling the constructors of the mocked class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceByteBuddyClassImposteriser.InjectInvokablestatic classByteBuddyClassImposteriser.Interceptor
-
Field Summary
Fields Modifier and Type Field Description static ImposteriserINSTANCEprivate static java.lang.StringJMOCK_KEYprivate org.objenesis.Objenesisobjenesisprivate java.util.Map<java.util.Set<java.lang.Class<?>>,java.lang.Class<?>>types
-
Constructor Summary
Constructors Modifier Constructor Description privateByteBuddyClassImposteriser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanImposterise(java.lang.Class<?> type)Reports if the Imposteriser is able to imposterise a given type.private booleandefaultPackage(java.lang.Class<?> mockedType)<T> Timposterise(Invokable mockObject, java.lang.Class<T> mockedType, java.lang.Class<?>... ancilliaryTypes)Creates an imposter for a given type that forwardsInvocations to anInvokableobject.private java.util.Set<java.lang.Class<?>>mockTypeKey(java.lang.Class<?> mockedType, java.lang.Class<?>... ancilliaryTypes)private booleanprotectedPackageNameSpaces(java.lang.Class<?> mockedType)private <T> Tproxy(Invokable mockObject, java.lang.Class<T> mockedType, java.lang.Class<?>... ancilliaryTypes)private java.lang.Class<?>proxyClass(Invokable mockObject, java.lang.Class<?> mockedType, java.lang.Class<?>... ancilliaryTypes)private voidsetConstructorsAccessible(java.lang.Class<?> mockedType, boolean accessible)private booleantoStringMethodIsFinal(java.lang.Class<?> type)
-
-
-
Field Detail
-
INSTANCE
public static final Imposteriser INSTANCE
-
JMOCK_KEY
private static final java.lang.String JMOCK_KEY
- See Also:
- Constant Field Values
-
objenesis
private final org.objenesis.Objenesis objenesis
-
types
private final java.util.Map<java.util.Set<java.lang.Class<?>>,java.lang.Class<?>> types
-
-
Method Detail
-
canImposterise
public boolean canImposterise(java.lang.Class<?> type)
Description copied from interface:ImposteriserReports if the Imposteriser is able to imposterise a given type.- Specified by:
canImposterisein interfaceImposteriser- Parameters:
type- The type in question.- Returns:
- True if this imposteriser can imposterise type, false otherwise.
-
imposterise
public <T> T imposterise(Invokable mockObject, java.lang.Class<T> mockedType, java.lang.Class<?>... ancilliaryTypes)
Description copied from interface:ImposteriserCreates an imposter for a given type that forwardsInvocations to anInvokableobject.- Specified by:
imposterisein interfaceImposteriser- Type Parameters:
T- The static type of the imposter that is created.- Parameters:
mockObject- The object that is to receive invocations forwarded from the imposter.mockedType- The class representing the static type of the imposter.ancilliaryTypes- Other types for the imposter. It must be possible to dynamically cast the imposter to these types. These types must all be interfaces because Java only allows single inheritance of classes.- Returns:
- A new imposter. The imposter must implement the mockedType and all the ancialliaryTypes.
-
toStringMethodIsFinal
private boolean toStringMethodIsFinal(java.lang.Class<?> type)
-
setConstructorsAccessible
private void setConstructorsAccessible(java.lang.Class<?> mockedType, boolean accessible)
-
proxy
private <T> T proxy(Invokable mockObject, java.lang.Class<T> mockedType, java.lang.Class<?>... ancilliaryTypes)
-
proxyClass
private java.lang.Class<?> proxyClass(Invokable mockObject, java.lang.Class<?> mockedType, java.lang.Class<?>... ancilliaryTypes) throws java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.reflect.InvocationTargetException, java.lang.NoSuchMethodException
- Throws:
java.lang.ClassNotFoundExceptionjava.lang.IllegalAccessExceptionjava.lang.reflect.InvocationTargetExceptionjava.lang.NoSuchMethodException
-
mockTypeKey
private java.util.Set<java.lang.Class<?>> mockTypeKey(java.lang.Class<?> mockedType, java.lang.Class<?>... ancilliaryTypes)
-
defaultPackage
private boolean defaultPackage(java.lang.Class<?> mockedType)
-
protectedPackageNameSpaces
private boolean protectedPackageNameSpaces(java.lang.Class<?> mockedType)
-
-