Package groovy.mock.interceptor
Class MockProxyMetaClass
java.lang.Object
groovy.lang.MetaClassImpl
groovy.lang.ProxyMetaClass
groovy.mock.interceptor.MockProxyMetaClass
- All Implemented Interfaces:
AdaptingMetaClass
,MetaClass
,MetaObjectProtocol
,MutableMetaClass
The ProxyMetaClass for the MockInterceptor.
Instance and class methods are intercepted, but constructors are not to allow mocking of aggregated objects.
-
Nested Class Summary
Nested classes/interfaces inherited from class groovy.lang.MetaClassImpl
MetaClassImpl.Index, MetaClassImpl.MetaConstructor
-
Field Summary
Fields inherited from class groovy.lang.ProxyMetaClass
adaptee, interceptor
Fields inherited from class groovy.lang.MetaClassImpl
EMPTY_ARGUMENTS, getPropertyMethod, INVOKE_METHOD_METHOD, invokeMethodMethod, isGroovyObject, isMap, metaMethodIndex, METHOD_MISSING, PROPERTY_MISSING, registry, setPropertyMethod, STATIC_METHOD_MISSING, STATIC_PROPERTY_MISSING, theCachedClass, theClass
-
Constructor Summary
ConstructorDescriptionMockProxyMetaClass
(MetaClassRegistry registry, Class theClass, MetaClass adaptee) MockProxyMetaClass
(MetaClassRegistry registry, Class theClass, MetaClass adaptee, boolean interceptConstruction) -
Method Summary
Modifier and TypeMethodDescriptiongetProperty
(Class aClass, Object object, String property, boolean b, boolean b1) Interceptors the call to getProperty if a PropertyAccessInterceptor is availableinvokeConstructor
(Object[] arguments) Unlike general impl in superclass, ctors are not intercepted but relayed unless interceptConstruction is set.invokeMethod
(Class sender, Object object, String methodName, Object[] arguments, boolean isCallToSuper, boolean fromInsideClass) Call invokeMethod on adaptee with logic like in MetaClass unless we have an Interceptor.invokeMethod
(Object object, String methodName, Object[] arguments) Call invokeMethod on adaptee with logic like in MetaClass unless we have an Interceptor.invokeStaticMethod
(Object object, String methodName, Object[] arguments) Call invokeStaticMethod on adaptee with logic like in MetaClass unless we have an Interceptor.static MockProxyMetaClass
convenience factory method for the most usual case.static MockProxyMetaClass
convenience factory method allowing interceptConstruction to be set.void
setProperty
(Class aClass, Object object, String property, Object newValue, boolean b, boolean b1) Interceptors the call to a property setter if a PropertyAccessInterceptor is availableMethods inherited from class groovy.lang.ProxyMetaClass
getAdaptee, getInstance, getInterceptor, initialize, setAdaptee, setInterceptor, use, use
Methods inherited from class groovy.lang.MetaClassImpl
addMetaBeanProperty, addMetaMethod, addMetaMethodToIndex, addNewInstanceMethod, addNewStaticMethod, applyPropertyDescriptors, checkIfGroovyObjectMethod, checkInitalised, chooseMethod, clearInvocationCaches, createConstructorSite, createErrorMessageForAmbiguity, createPogoCallCurrentSite, createPogoCallSite, createPojoCallSite, createStaticSite, createTransformMetaMethod, doChooseMostSpecificParams, dropMethodCache, dropStaticMethodCache, findMethodInClassHierarchy, findMixinMethod, findOwnMethod, findPropertyInClassHierarchy, getAdditionalMetaMethods, getAttribute, getAttribute, getAttribute, getClassInfo, getClassNode, getEffectiveGetMetaProperty, getMetaMethod, getMetaMethods, getMetaProperty, getMethods, getMethodWithCaching, getMethodWithoutCaching, getProperties, getProperty, getRegistry, getStaticMetaMethod, getSubclassMetaMethods, getSuperClasses, getTheCachedClass, getTheClass, getVersion, handleMatches, hasCustomInvokeMethod, hasCustomStaticInvokeMethod, hasProperty, incVersion, invokeMethod, invokeMissingMethod, invokeMissingProperty, invokeStaticMissingProperty, isGroovyObject, isInitialized, isModified, isPermissivePropertyAccess, onGetPropertyFoundInHierarchy, onInvokeMethodFoundInHierarchy, onMixinMethodFound, onSetPropertyFoundInHierarchy, onSuperMethodFoundInHierarchy, onSuperPropertyFoundInHierarchy, pickMethod, reinitialize, respondsTo, respondsTo, retrieveConstructor, retrieveConstructor, retrieveStaticMethod, selectConstructorAndTransformArguments, setAttribute, setAttribute, setInitialized, setPermissivePropertyAccess, setProperties, setProperty, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface groovy.lang.MetaClass
getAttribute, getClassNode, getMetaMethods, getMethods, getProperties, invokeMissingMethod, invokeMissingProperty, pickMethod, selectConstructorAndTransformArguments, setAttribute
Methods inherited from interface groovy.lang.MetaObjectProtocol
getAttribute, getMetaMethod, getMetaProperty, getProperty, getStaticMetaMethod, getTheClass, hasProperty, invokeMethod, respondsTo, respondsTo, setAttribute, setProperty
-
Field Details
-
interceptConstruction
public final boolean interceptConstruction
-
-
Constructor Details
-
MockProxyMetaClass
- Parameters:
adaptee
- the MetaClass to decorate with interceptability
-
MockProxyMetaClass
public MockProxyMetaClass(MetaClassRegistry registry, Class theClass, MetaClass adaptee, boolean interceptConstruction) - Parameters:
adaptee
- the MetaClass to decorate with interceptability
-
-
Method Details
-
make
convenience factory method for the most usual case. -
make
convenience factory method allowing interceptConstruction to be set. -
invokeMethod
Description copied from class:ProxyMetaClass
Call invokeMethod on adaptee with logic like in MetaClass unless we have an Interceptor. With Interceptor the call is nested in its beforeInvoke and afterInvoke methods. The method call is suppressed if Interceptor.doInvoke() returns false. See Interceptor for details.- Specified by:
invokeMethod
in interfaceMetaObjectProtocol
- Overrides:
invokeMethod
in classProxyMetaClass
- Parameters:
object
- The object which the method was invoked onmethodName
- The name of the methodarguments
- The arguments to the method- Returns:
- The return value of the method
- See Also:
-
invokeMethod
public Object invokeMethod(Class sender, Object object, String methodName, Object[] arguments, boolean isCallToSuper, boolean fromInsideClass) Description copied from class:ProxyMetaClass
Call invokeMethod on adaptee with logic like in MetaClass unless we have an Interceptor. With Interceptor the call is nested in its beforeInvoke and afterInvoke methods. The method call is suppressed if Interceptor.doInvoke() returns false. See Interceptor for details.- Specified by:
invokeMethod
in interfaceMetaClass
- Overrides:
invokeMethod
in classProxyMetaClass
- Parameters:
sender
- The java.lang.Class instance that invoked the methodobject
- The object which the method was invoked onmethodName
- The name of the methodarguments
- The arguments to the methodisCallToSuper
- Whether the method is a call to a super class methodfromInsideClass
- Whether the call was invoked from the inside or the outside of the class- Returns:
- The return value of the method
- See Also:
-
invokeStaticMethod
Description copied from class:ProxyMetaClass
Call invokeStaticMethod on adaptee with logic like in MetaClass unless we have an Interceptor. With Interceptor the call is nested in its beforeInvoke and afterInvoke methods. The method call is suppressed if Interceptor.doInvoke() returns false. See Interceptor for details.- Specified by:
invokeStaticMethod
in interfaceMetaObjectProtocol
- Overrides:
invokeStaticMethod
in classProxyMetaClass
- Parameters:
object
- An instance of the class returned by the getTheClass() method or the class itselfmethodName
- The name of the methodarguments
- The arguments to the method- Returns:
- The return value of the method which is null if the return type is void
- See Also:
-
getProperty
Description copied from class:ProxyMetaClass
Interceptors the call to getProperty if a PropertyAccessInterceptor is available- Specified by:
getProperty
in interfaceMetaClass
- Overrides:
getProperty
in classProxyMetaClass
- Parameters:
aClass
- The java.lang.Class instance that requested the propertyobject
- the object to invoke the getter onproperty
- the property nameb
- Whether the call is to a super class propertyb1
- ??- Returns:
- the value of the property
-
setProperty
public void setProperty(Class aClass, Object object, String property, Object newValue, boolean b, boolean b1) Description copied from class:ProxyMetaClass
Interceptors the call to a property setter if a PropertyAccessInterceptor is available- Specified by:
setProperty
in interfaceMetaClass
- Overrides:
setProperty
in classProxyMetaClass
- Parameters:
aClass
- The java.lang.Class instance that is mutating the propertyobject
- The object to invoke the setter onproperty
- The property name to setnewValue
- The new value of the propertyb
- Whether the call is to a super class propertyb1
- Whether the call was invoked from the inside or the outside of the class.
-
invokeConstructor
Unlike general impl in superclass, ctors are not intercepted but relayed unless interceptConstruction is set.- Specified by:
invokeConstructor
in interfaceMetaObjectProtocol
- Overrides:
invokeConstructor
in classProxyMetaClass
- Parameters:
arguments
- The arguments to the constructor- Returns:
- An instance of the java.lang.Class that this MetaObjectProtocol object applies to
-