Class Whitebox

java.lang.Object
org.powermock.reflect.Whitebox

public class Whitebox extends Object
Various utilities for accessing internals of a class. Basically a simplified reflection utility intended for tests.
  • Constructor Details

    • Whitebox

      public Whitebox()
  • Method Details

    • getField

      public static Field getField(Class<?> type, String fieldName)
      Convenience method to get a field from a class type.

      The method will first try to look for a declared field in the same class. If the field is not declared in this class it will look for the field in the super class. This will continue throughout the whole class hierarchy. If the field is not found an IllegalArgumentException is thrown.

      Parameters:
      type - The type of the class where the method is located.
      fieldName - The method names.
      Returns:
      A java.lang.reflect.Field.
      Throws:
      FieldNotFoundException - If a field cannot be found in the hierarchy.
    • getFields

      public static Field[] getFields(Class<?> clazz, String... fieldNames)
      Get an array of Field's that matches the supplied list of field names.
      Parameters:
      clazz - The class that should contain the fields.
      fieldNames - The names of the fields that will be returned.
      Returns:
      An array of Field's. May be of length 0 but not null
    • getMethod

      public static Method getMethod(Class<?> type, String methodName, Class<?>... parameterTypes)
      Convenience method to get a method from a class type without having to catch the checked exceptions otherwise required. These exceptions are wrapped as runtime exceptions.

      The method will first try to look for a declared method in the same class. If the method is not declared in this class it will look for the method in the super class. This will continue throughout the whole class hierarchy. If the method is not found an IllegalArgumentException is thrown.

      Parameters:
      type - The type of the class where the method is located.
      methodName - The method names.
      parameterTypes - All parameter types of the method (may be null).
      Returns:
      A java.lang.reflect.Method.
      Throws:
      MethodNotFoundException - If a method cannot be found in the hierarchy.
    • getMethod

      public static Method getMethod(Class<?> type, Class<?>... parameterTypes)
      Convenience method to get a method from a class type without having to catch the checked exceptions otherwise required. These exceptions are wrapped as runtime exceptions.

      The method will first try to look for a declared method in the same class. If the method is not declared in this class it will look for the method in the super class. This will continue throughout the whole class hierarchy. If the method is not found an MethodNotFoundException is thrown. Since the method name is not specified an TooManyMethodsFoundException is thrown if two or more methods matches the same parameter types in the same class.

      Parameters:
      type - The type of the class where the method is located.
      parameterTypes - All parameter types of the method (may be null).
      Returns:
      A java.lang.reflect.Method.
      Throws:
      MethodNotFoundException - If a method cannot be found in the hierarchy.
      TooManyMethodsFoundException - If several methods were found.
    • newInstance

      public static <T> T newInstance(Class<T> classToInstantiate)
      Create a new instance of a class without invoking its constructor.

      No byte-code manipulation is needed to perform this operation and thus it's not necessary use the PowerMockRunner or PrepareForTest annotation to use this functionality.

      Type Parameters:
      T - The type of the instance to create.
      Parameters:
      classToInstantiate - The type of the instance to create.
      Returns:
      A new instance of type T, created without invoking the constructor.
    • getConstructor

      public static <T> Constructor<T> getConstructor(Class<?> type, Class<?>... parameterTypes)
      Convenience method to get a (declared) constructor from a class type without having to catch the checked exceptions otherwise required. These exceptions are wrapped as runtime exceptions. The constructor is also set to accessible.
      Parameters:
      type - The type of the class where the constructor is located.
      parameterTypes - All parameter types of the constructor (may be null).
      Returns:
      A java.lang.reflect.Constructor.
      Throws:
      ConstructorNotFoundException - if the constructor cannot be found.
    • setInternalState

      public static void setInternalState(Object object, String fieldName, Object value)
      Set the value of a field using reflection. This method will traverse the super class hierarchy until a field with name fieldName is found.
      Parameters:
      object - the object whose field to modify
      fieldName - the name of the field
      value - the new value of the field
    • setInternalState

      public static void setInternalState(Object object, String fieldName, Object[] value)
      Set an array value of a field using reflection. This method will traverse the super class hierarchy until a field with name fieldName is found.
      Parameters:
      object - the object to modify
      fieldName - the name of the field
      value - the new value of the field
    • setInternalState

      public static void setInternalState(Object object, Object value, Object... additionalValues)
      Set the value of a field using reflection. This method will traverse the super class hierarchy until the first field assignable to the value type is found. The value (or additionaValues if present) will then be assigned to this field.
      Parameters:
      object - the object to modify
      value - the new value of the field
      additionalValues - Additional values to set on the object
    • setInternalState

      public static void setInternalState(Object object, Object value, Class<?> where)
      Set the value of a field using reflection at at specific place in the class hierarchy (where). This first field assignable to object will then be set to value.
      Parameters:
      object - the object to modify
      value - the new value of the field
      where - the class in the hierarchy where the field is defined
    • setInternalState

      public static void setInternalState(Object object, String fieldName, Object value, Class<?> where)
      Set the value of a field using reflection. Use this method when you need to specify in which class the field is declared. This might be useful when you have mocked the instance you are trying to modify.
      Parameters:
      object - the object to modify
      fieldName - the name of the field
      value - the new value of the field
      where - the class in the hierarchy where the field is defined
    • setInternalState

      public static void setInternalState(Object object, Class<?> fieldType, Object value)
      Set the value of a field using reflection. This method will traverse the super class hierarchy until the first field of type fieldType is found. The value will then be assigned to this field.
      Parameters:
      object - the object to modify
      fieldType - the type of the field
      value - the new value of the field
    • setInternalState

      public static void setInternalState(Object object, Class<?> fieldType, Object value, Class<?> where)
      Set the value of a field using reflection at a specific location ( where) in the class hierarchy. The value will then be assigned to this field. The first field matching the fieldType in the hierarchy will be set.
      Parameters:
      object - the object to modify
      fieldType - the type of the field the should be set.
      value - the new value of the field
      where - which class in the hierarchy defining the field
    • getInternalState

      public static <T> T getInternalState(Object object, String fieldName)
      Get the value of a field using reflection. This method will iterate through the entire class hierarchy and return the value of the first field named fieldName. If you want to get a specific field value at specific place in the class hierarchy please refer to getInternalState(Object, String, Class).
      Parameters:
      object - the object to modify
      fieldName - the name of the field
    • getInternalState

      public static <T> T getInternalState(Object object, String fieldName, Class<?> where)
      Get the value of a field using reflection. Use this method when you need to specify in which class the field is declared. This might be useful when you have mocked the instance you are trying to access.
      Parameters:
      object - the object to modify
      fieldName - the name of the field
      where - which class the field is defined
    • getInternalState

      @Deprecated public static <T> T getInternalState(Object object, String fieldName, Class<?> where, Class<T> type)
      Deprecated.
      Get the value of a field using reflection. Use this method when you need to specify in which class the field is declared. This might be useful when you have mocked the instance you are trying to access. Use this method to avoid casting.
      Type Parameters:
      T - the expected type of the field
      Parameters:
      object - the object to modify
      fieldName - the name of the field
      where - which class the field is defined
      type - the expected type of the field
    • getInternalState

      public static <T> T getInternalState(Object object, Class<T> fieldType)
      Get the value of a field using reflection based on the fields type. This method will traverse the super class hierarchy until the first field of type fieldType is found. The value of this field will be returned.
      Parameters:
      object - the object to modify
      fieldType - the type of the field
    • getInternalState

      public static <T> T getInternalState(Object object, Class<T> fieldType, Class<?> where)
      Get the value of a field using reflection based on the field type. Use this method when you need to specify in which class the field is declared. The first field matching the fieldType in where is the field whose value will be returned.
      Type Parameters:
      T - the expected type of the field
      Parameters:
      object - the object to modify
      fieldType - the type of the field
      where - which class the field is defined
    • invokeMethod

      public static <T> T invokeMethod(Object instance, Object... arguments) throws Exception
      Invoke a private or inner class method without the need to specify the method name. This is thus a more refactor friendly version of the invokeMethod(Object, String, Object...) method and is recommend over this method for that reason. This method might be useful to test private methods.
      Throws:
      Exception - if something wrong.
    • invokeMethod

      public static <T> T invokeMethod(Class<?> klass, Object... arguments) throws Exception
      Invoke a private or inner class static method without the need to specify the method name. This is thus a more refactor friendly version of the invokeMethod(Class, String, Object...) method and is recommend over this method for that reason. This method might be useful to test private methods.
      Throws:
      Exception
    • invokeMethod

      public static <T> T invokeMethod(Object instance, String methodToExecute, Object... arguments) throws Exception
      Invoke a private or inner class method. This might be useful to test private methods.
      Throws:
      Exception
    • invokeMethod

      public static <T> T invokeMethod(Object instance, String methodToExecute, Class<?>[] argumentTypes, Object... arguments) throws Exception
      Invoke a private or inner class method in cases where PowerMock cannot automatically determine the type of the parameters, for example when mixing primitive types and wrapper types in the same method. For most situations use invokeMethod(Object, Object...) instead.
      Throws:
      Exception - Exception that may occur when invoking this method.
    • invokeMethod

      public static <T> T invokeMethod(Object instance, String methodToExecute, Class<?> definedIn, Class<?>[] argumentTypes, Object... arguments) throws Exception
      Invoke a private or inner class method in a subclass (defined by definedIn) in cases where PowerMock cannot automatically determine the type of the parameters, for example when mixing primitive types and wrapper types in the same method. For most situations use invokeMethod(Object, Object...) instead.
      Throws:
      Exception - Exception that may occur when invoking this method.
    • invokeMethod

      public static <T> T invokeMethod(Object instance, Class<?> declaringClass, String methodToExecute, Object... arguments) throws Exception
      Invoke a private or inner class method in that is located in a subclass of the instance. This might be useful to test private methods.
      Throws:
      Exception - Exception that may occur when invoking this method.
    • invokeMethod

      public static <T> T invokeMethod(Object object, Class<?> declaringClass, String methodToExecute, Class<?>[] parameterTypes, Object... arguments) throws Exception
      Invoke a private or inner class method in that is located in a subclass of the instance. This might be useful to test private methods.

      Use this for overloaded methods.

      Throws:
      Exception - Exception that may occur when invoking this method.
    • invokeMethod

      public static <T> T invokeMethod(Class<?> clazz, String methodToExecute, Object... arguments) throws Exception
      Invoke a static private or inner class method. This may be useful to test private methods.
      Throws:
      Exception
    • invokeConstructor

      public static <T> T invokeConstructor(Class<T> classThatContainsTheConstructorToTest, Class<?>[] parameterTypes, Object[] arguments) throws Exception
      Invoke a constructor. Useful for testing classes with a private constructor when PowerMock cannot determine which constructor to invoke. This only happens if you have two constructors with the same number of arguments where one is using primitive data types and the other is using the wrapped counter part. For example:
       public class MyClass {
           private MyClass(Integer i) {
               ...
           } 
       
           private MyClass(int i) {
               ...
           }
       
      This ought to be a really rare case. So for most situation, use invokeConstructor(Class, Object...) instead.
      Returns:
      The object created after the constructor has been invoked.
      Throws:
      Exception - If an exception occur when invoking the constructor.
    • invokeConstructor

      public static <T> T invokeConstructor(Class<T> classThatContainsTheConstructorToTest, Object... arguments) throws Exception
      Invoke a constructor. Useful for testing classes with a private constructor.
      Returns:
      The object created after the constructor has been invoked.
      Throws:
      Exception - If an exception occur when invoking the constructor.
    • getFirstParentConstructor

      public static Constructor<?> getFirstParentConstructor(Class<?> klass)
      Get the first parent constructor defined in a super class of klass.
      Parameters:
      klass - The class where the constructor is located. null ).
      Returns:
      A java.lang.reflect.Constructor.
    • getMethods

      public static Method[] getMethods(Class<?> clazz, String... methodNames)
      Get an array of Method's that matches the supplied list of method names. Both instance and static methods are taken into account.
      Parameters:
      clazz - The class that should contain the methods.
      methodNames - Names of the methods that will be returned.
      Returns:
      An array of Method's.
      Throws:
      MethodNotFoundException - If no method was found.
    • getType

      public static Class<?> getType(Object object)
      Returns:
      The type of the of an object.
    • getUnproxyType

      public static Class<?> getUnproxyType(Object object)
      Gets the type.
      Parameters:
      object - the object
      Returns:
      The type of the of an object.
    • getFieldsAnnotatedWith

      public static Set<Field> getFieldsAnnotatedWith(Object object, Class<? extends Annotation> annotation, Class<? extends Annotation>... additionalAnnotations)
      Get all fields annotated with a particular annotation. This method traverses the class hierarchy when checking for the annotation.
      Parameters:
      object - The object to look for annotations. Note that if're you're passing an object only instance fields are checked, passing a class will only check static fields.
      annotation - The annotation type to look for.
      additionalAnnotations - Optionally more annotations to look for. If any of the annotations are associated with a particular field it will be added to the resulting Set.
      Returns:
      A set of all fields containing the particular annotation.
    • getFieldsAnnotatedWith

      public static Set<Field> getFieldsAnnotatedWith(Object object, Class<? extends Annotation>[] annotationTypes)
      Get all fields annotated with a particular annotation. This method traverses the class hierarchy when checking for the annotation.
      Parameters:
      object - The object to look for annotations. Note that if're you're passing an object only instance fields are checked, passing a class will only check static fields.
      annotationTypes - The annotation types to look for
      Returns:
      A set of all fields containing the particular annotation(s).
      Since:
      1.3
    • getAllInstanceFields

      public static Set<Field> getAllInstanceFields(Object object)
      Get all instance fields for a particular object. It returns all fields regardless of the field modifier and regardless of where in the class hierarchy a field is located.
      Parameters:
      object - The object whose instance fields to get.
      Returns:
      All instance fields in the hierarchy. All fields are set to accessible
    • getAllStaticFields

      public static Set<Field> getAllStaticFields(Class<?> type)
      Get all static fields for a particular type.
      Parameters:
      type - The class whose static fields to get.
      Returns:
      All static fields in type. All fields are set to accessible.
    • getFieldsOfType

      public static Set<Field> getFieldsOfType(Object object, Class<?> type)
      Get all fields assignable from a particular type. This method traverses the class hierarchy when checking for the type.
      Parameters:
      object - The object to look for type. Note that if're you're passing an object only instance fields are checked, passing a class will only check static fields.
      type - The type to look for.
      Returns:
      A set of all fields of the particular type.
    • getInnerClassType

      public static Class<Object> getInnerClassType(Class<?> declaringClass, String name) throws ClassNotFoundException
      Get an inner class type
      Parameters:
      declaringClass - The class in which the inner class is declared.
      name - The unqualified name (simple name) of the inner class.
      Returns:
      The type.
      Throws:
      ClassNotFoundException
    • getLocalClassType

      public static Class<Object> getLocalClassType(Class<?> declaringClass, int occurrence, String name) throws ClassNotFoundException
      Get the type of a local inner class.
      Parameters:
      declaringClass - The class in which the local inner class is declared.
      occurrence - The occurrence of the local class. For example if you have two local classes in the declaringClass you must pass in 1 if you want to get the type for the first one or 2 if you want the second one.
      name - The unqualified name (simple name) of the local class.
      Returns:
      The type.
      Throws:
      ClassNotFoundException
    • getAnonymousInnerClassType

      public static Class<Object> getAnonymousInnerClassType(Class<?> declaringClass, int occurrence) throws ClassNotFoundException
      Get the type of an anonymous inner class.
      Parameters:
      declaringClass - The class in which the anonymous inner class is declared.
      occurrence - The occurrence of the anonymous inner class. For example if you have two anonymous inner classes classes in the declaringClass you must pass in 1 if you want to get the type for the first one or 2 if you want the second one.
      Returns:
      The type.
      Throws:
      ClassNotFoundException
    • setInternalStateFromContext

      public static void setInternalStateFromContext(Object instance, Object context, Object... additionalContexts)
      Set the values of multiple instance fields defined in a context using reflection. The values in the context will be assigned to values on the instance. This method will traverse the class hierarchy when searching for the fields. Example usage:

      Given:

       public class MyContext {
              private String myString = "myString";
              protected int myInt = 9;
       }
       
       public class MyInstance {
              private String myInstanceString;
              private int myInstanceInt;
       
       }
       
      then
       Whitebox.setInternalStateFromContext(new MyInstance(), new MyContext());
       
      will set the instance variables of myInstance to the values specified in MyContext.

      By default the FieldMatchingStrategy.MATCHING strategy is used which means that the fields defined in the context but not found in the classOrInstance are silently ignored.

      Parameters:
      instance - the object whose fields to modify.
      context - The context where the fields are defined.
      additionalContexts - Optionally more additional contexts.
    • setInternalStateFromContext

      public static void setInternalStateFromContext(Object classOrInstance, Class<?> context, Class<?>... additionalContexts)
      Set the values of multiple static fields defined in a context using reflection. The values in the context will be assigned to values on the classOrInstance. This method will traverse the class hierarchy when searching for the fields. Example usage:

      Given:

       public class MyContext {
              private static String myString = "myString";
              protected static int myInt = 9;
       }
       
       public class MyInstance {
              private static String myInstanceString;
              private static int myInstanceInt;
       
       }
       
      then
       Whitebox.setInternalStateFromContext(MyInstance.class, MyContext.class);
       
      will set the static variables of MyInstance to the values specified in MyContext.

      By default the FieldMatchingStrategy.MATCHING strategy is used which means that the fields defined in the context but not found in the classOrInstance are silently ignored.

      Parameters:
      classOrInstance - The object or class whose fields to set.
      context - The context where the fields are defined.
      additionalContexts - Optionally more additional contexts.
    • setInternalStateFromContext

      public static void setInternalStateFromContext(Object instance, Object context, FieldMatchingStrategy strategy)
      Set the values of multiple instance fields defined in a context using reflection and using an explicit FieldMatchingStrategy. The values in the context will be assigned to values on the instance. This method will traverse the class hierarchy when searching for the fields. Example usage:

      Given:

       public class MyContext {
              private String myString = "myString";
              protected int myInt = 9;
       }
       
       public class MyInstance {
              private String myInstanceString;
              private int myInstanceInt;
       
       }
       
      then
       Whitebox.setInternalStateFromContext(new MyInstance(), new MyContext());
       
      will set the instance variables of myInstance to the values specified in MyContext.
      Parameters:
      instance - the object whose fields to modify.
      context - The context where the fields are defined.
      strategy - Which field matching strategy to use.
    • setInternalStateFromContext

      public static void setInternalStateFromContext(Object instance, Class<?> context, FieldMatchingStrategy strategy)
      Set the values of multiple static fields defined in a context using reflection and using an explicit FieldMatchingStrategy. The values in the context will be assigned to values on the classOrInstance. This method will traverse the class hierarchy when searching for the fields. Example usage:

      Given:

       public class MyContext {
              private static String myString = "myString";
              protected static int myInt = 9;
       }
       
       public class MyInstance {
              private static String myInstanceString;
              private static int myInstanceInt;
       
       }
       
      then
       Whitebox.setInternalStateFromContext(MyInstance.class, MyContext.class);
       
      will set the static variables of MyInstance to the values specified in MyContext.

      Parameters:
      instance - The object or class whose fields to set.
      context - The context where the fields are defined.
      strategy - Which field matching strategy to use.