blob: aef8ceb1a14c5e9bb2123fdb7434b412e793e52f [file] [log] [blame]
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.configuration;
import org.mockito.*;
import org.mockito.configuration.AnnotationEngine;
import org.mockito.exceptions.Reporter;
import org.mockito.exceptions.base.MockitoException;
import org.mockito.internal.util.MockUtil;
import java.lang.annotation.Annotation;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
import static org.mockito.Mockito.withSettings;
/**
* Process fields annotated with @Spy.
* <p/>
* <p>
* Will try transform the field in a spy as with <code>Mockito.spy()</code>.
* </p>
* <p/>
* <p>
* If the field is not initialized, will try to initialize it, with a no-arg constructor.
* </p>
* <p/>
* <p>
* If the field is also annotated with the <strong>compatible</strong> &#64;InjectMocks then the field will be ignored,
* The injection engine will handle this specific case.
* </p>
* <p/>
* <p>This engine will fail, if the field is also annotated with incompatible Mockito annotations.
*/
@SuppressWarnings({"unchecked"})
public class SpyAnnotationEngine implements AnnotationEngine {
public Object createMockFor(Annotation annotation, Field field) {
return null;
}
@SuppressWarnings("deprecation") // for MockitoAnnotations.Mock
public void process(Class<?> context, Object testInstance) {
Field[] fields = context.getDeclaredFields();
for (Field field : fields) {
if (field.isAnnotationPresent(Spy.class) && !field.isAnnotationPresent(InjectMocks.class)) {
assertNoIncompatibleAnnotations(Spy.class, field, Mock.class, org.mockito.MockitoAnnotations.Mock.class, Captor.class);
field.setAccessible(true);
Object instance;
try {
instance = field.get(testInstance);
assertNotInterface(instance, field.getType());
if (new MockUtil().isMock(instance)) {
// instance has been spied earlier
// for example happens when MockitoAnnotations.initMocks is called two times.
Mockito.reset(instance);
} else if (instance != null) {
field.set(testInstance, Mockito.mock(instance.getClass(), withSettings()
.spiedInstance(instance)
.defaultAnswer(Mockito.CALLS_REAL_METHODS)
.name(field.getName())));
} else {
field.set(testInstance, newSpyInstance(testInstance, field));
}
} catch (Exception e) {
throw new MockitoException("Unable to initialize @Spy annotated field '" + field.getName() + "'.\n" + e.getMessage(), e);
}
}
}
}
private static void assertNotInterface(Object testInstance, Class<?> type) {
type = testInstance != null? testInstance.getClass() : type;
if (type.isInterface()) {
throw new MockitoException("Type '" + type.getSimpleName() + "' is an interface and it cannot be spied on.");
}
}
private static Object newSpyInstance(Object testInstance, Field field)
throws InstantiationException, IllegalAccessException, InvocationTargetException {
MockSettings settings = withSettings()
.defaultAnswer(Mockito.CALLS_REAL_METHODS)
.name(field.getName());
Class<?> type = field.getType();
if (type.isInterface()) {
return Mockito.mock(type, settings.useConstructor());
}
if (!Modifier.isStatic(type.getModifiers())) {
Class<?> enclosing = type.getEnclosingClass();
if (enclosing != null) {
if (!enclosing.isInstance(testInstance)) {
throw new MockitoException("@Spy annotation can only initialize inner classes declared in the test. "
+ "Inner class: '" + type.getSimpleName() + "', "
+ "outer class: '" + enclosing.getSimpleName() + "'.");
}
return Mockito.mock(type, settings
.useConstructor()
.outerInstance(testInstance));
}
}
Constructor<?> constructor;
try {
constructor = type.getDeclaredConstructor();
} catch (NoSuchMethodException e) {
throw new MockitoException("Please ensure that the type '" + type.getSimpleName() + "' has 0-arg constructor.");
}
if (Modifier.isPrivate(constructor.getModifiers())) {
constructor.setAccessible(true);
return Mockito.mock(type, settings
.spiedInstance(constructor.newInstance()));
} else {
return Mockito.mock(type, settings.useConstructor());
}
}
//TODO duplicated elsewhere
void assertNoIncompatibleAnnotations(Class annotation, Field field, Class... undesiredAnnotations) {
for (Class u : undesiredAnnotations) {
if (field.isAnnotationPresent(u)) {
new Reporter().unsupportedCombinationOfAnnotations(annotation.getSimpleName(), annotation.getClass().getSimpleName());
}
}
}
}