mockit.Deencapsulation Maven / Gradle / Ivy
/*
* JMockit
* Copyright (c) 2006-2010 Rogério Liesenfeld
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package mockit;
import mockit.internal.util.*;
/**
* Provides utility methods that enable access to (ie "de-encapsulate") otherwise non-accessible
* fields, methods and constructors belonging to code under test.
*
* The {@link Expectations} class (and its subclasses) provide context-specific versions of this
* same methods.
* So, when dealing with mocked types through the Expectations API there is usually no need to
* import this class. If used it will work just as well, though.
*
* Tutorial
*
Sample tests:
* DeencapsulationTest,
* ServiceHolder_JMockit_Test,
* ScreenTransitionContainerResizeTest
*/
@SuppressWarnings({"unchecked"})
public final class Deencapsulation
{
private Deencapsulation() {}
/**
* Gets the value of a non-accessible (eg {@code private}) field from a given object.
*
* @param objectWithField the instance from which to get the field value
* @param fieldName the name of the field to get
* @param interface or class type to which the returned value should be assignable
*
* @see #getField(Object, Class)
* @see #setField(Object, String, Object)
*/
public static T getField(Object objectWithField, String fieldName)
{
return (T) Utilities.getField(objectWithField.getClass(), fieldName, objectWithField);
}
/**
* Gets the value of a non-accessible (eg {@code private}) field from a given object,
* assuming there is only one field declared in the class of the given object whose type
* can receive values of the specified field type.
*
* @param objectWithField the instance from which to get the field value
* @param fieldType the declared type of the field, or a sub-type of the declared field type
*
* @see #getField(Object, String)
*
* @throws IllegalArgumentException if either the desired field is not found, or more than one is
*/
public static T getField(Object objectWithField, Class fieldType)
{
return Utilities.getField(objectWithField.getClass(), fieldType, objectWithField);
}
/**
* Gets the value of a non-accessible static field defined in a given class.
*
* @param classWithStaticField the class from which to get the field value
* @param fieldName the name of the static field to get
* @param interface or class type to which the returned value should be assignable
*
* @see #setField(Class, String, Object)
*/
public static T getField(Class> classWithStaticField, String fieldName)
{
return (T) Utilities.getField(classWithStaticField, fieldName, null);
}
/**
* Gets the value of a non-accessible static field defined in a given class.
*
* @param classWithStaticField the class from which to get the field value
* @param fieldType the declared type of the field, or a sub-type of the declared field type
* @param interface or class type to which the returned value should be assignable
*
* @throws IllegalArgumentException if either the desired field is not found, or more than one is
*
* @see #setField(Class, String, Object)
*/
public static T getField(Class> classWithStaticField, Class fieldType)
{
return Utilities.getField(classWithStaticField, fieldType, null);
}
/**
* Sets the value of a non-accessible field on a given object.
*
* @param objectWithField the instance on which to set the field value
* @param fieldName the name of the field to set
* @param fieldValue the value to set the field to
*
* @see #setField(Class, String, Object)
*/
public static void setField(Object objectWithField, String fieldName, Object fieldValue)
{
Utilities.setField(objectWithField.getClass(), objectWithField, fieldName, fieldValue);
}
/**
* Sets the value of a non-accessible field on a given object.
* The field is looked up by the type of the given field value instead of by name.
*
* @throws IllegalArgumentException if either the desired field is not found, or more than one is
*/
public static void setField(Object objectWithField, Object fieldValue)
{
Utilities.setField(objectWithField.getClass(), objectWithField, null, fieldValue);
}
/**
* Sets the value of a non-accessible static field on a given class.
*
* @param classWithStaticField the class on which the static field is defined
* @param fieldName the name of the field to set
* @param fieldValue the value to set the field to
*/
public static void setField(Class> classWithStaticField, String fieldName, Object fieldValue)
{
Utilities.setField(classWithStaticField, null, fieldName, fieldValue);
}
/**
* Sets the value of a non-accessible static field on a given class.
* The field is looked up by the type of the given field value instead of by name.
*
* @param classWithStaticField the class on which the static field is defined
* @param fieldValue the value to set the field to
*
* @throws IllegalArgumentException if either the desired field is not found, or more than one is
*/
public static void setField(Class> classWithStaticField, Object fieldValue)
{
Utilities.setField(classWithStaticField, null, null, fieldValue);
}
/**
* Invokes a non-accessible (eg {@code private}) method from a given class with the given
* arguments.
*
* @param objectWithMethod the instance on which the invocation is to be done; must not be null
* @param methodName the name of the method to invoke
* @param nonNullArgs zero or more non-null parameter values for the invocation; if a null value
* needs to be passed, the {@code Class} object for the parameter type must be passed instead
* @param interface or class type to which the returned instance should be assignable
*
* @return the return value from the invoked method, wrapped if primitive
*
* @see #invoke(Class, String, Object...)
*/
public static T invoke(Object objectWithMethod, String methodName, Object... nonNullArgs)
{
Class> theClass = objectWithMethod.getClass();
return (T) Utilities.invoke(theClass, objectWithMethod, methodName, nonNullArgs);
}
/**
* Invokes a non-accessible (eg {@code private} static method with the given arguments.
*
* @param classWithStaticMethod the class on which the invocation is to be done; must not be null
* @param methodName the name of the static method to invoke
* @param nonNullArgs zero or more non-null parameter values for the invocation; if a null value
* needs to be passed, the {@code Class} object for the parameter type must be passed instead
* @param interface or class type to which the returned instance should be assignable
*
* @see #invoke(String, String, Object...)
*/
public static T invoke(
Class> classWithStaticMethod, String methodName, Object... nonNullArgs)
{
return (T) Utilities.invoke(classWithStaticMethod, null, methodName, nonNullArgs);
}
/**
* Invokes a non-accessible (eg {@code private} static method with the given arguments.
*
* @param classWithStaticMethod the (fully qualified) name of the class on which the invocation
* is to be done; must not be null
* @param methodName the name of the static method to invoke
* @param nonNullArgs zero or more non-null parameter values for the invocation; if a null value
* needs to be passed, the {@code Class} object for the parameter type must be passed instead
* @param interface or class type to which the returned instance should be assignable
*
* @see #invoke(Class, String, Object...)
*/
public static T invoke(
String classWithStaticMethod, String methodName, Object... nonNullArgs)
{
Class
© 2015 - 2025 Weber Informatics LLC | Privacy Policy