com.fitbur.mockito.internal.configuration.DefaultAnnotationEngine Maven / Gradle / Ivy
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package com.fitbur.mockito.internal.configuration;
import com.fitbur.mockito.Captor;
import com.fitbur.mockito.Mock;
import com.fitbur.mockito.MockitoAnnotations;
import com.fitbur.mockito.configuration.AnnotationEngine;
import com.fitbur.mockito.exceptions.Reporter;
import com.fitbur.mockito.exceptions.base.MockitoException;
import com.fitbur.mockito.internal.util.reflection.FieldSetter;
import static com.fitbur.mockito.exceptions.Reporter.moreThanOneAnnotationNotAllowed;
import static com.fitbur.mockito.internal.util.reflection.FieldSetter.setField;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;
/**
* Initializes fields annotated with @{@link com.fitbur.mockito.Mock} or @{@link com.fitbur.mockito.Captor}.
*
*
* The {@link #process(Class, Object)} method implementation does not process super classes!
*
* @see MockitoAnnotations
*/
@SuppressWarnings("unchecked")
public class DefaultAnnotationEngine implements AnnotationEngine {
private final Map, FieldAnnotationProcessor>> annotationProcessorMap = new HashMap, FieldAnnotationProcessor>>();
public DefaultAnnotationEngine() {
registerAnnotationProcessor(Mock.class, new MockAnnotationProcessor());
registerAnnotationProcessor(Captor.class, new CaptorAnnotationProcessor());
}
private Object createMockFor(Annotation annotation, Field field) {
return forAnnotation(annotation).process(annotation, field);
}
private FieldAnnotationProcessor forAnnotation(A annotation) {
if (annotationProcessorMap.containsKey(annotation.annotationType())) {
return (FieldAnnotationProcessor) annotationProcessorMap.get(annotation.annotationType());
}
return new FieldAnnotationProcessor() {
public Object process(A annotation, Field field) {
return null;
}
};
}
private void registerAnnotationProcessor(Class annotationClass, FieldAnnotationProcessor fieldAnnotationProcessor) {
annotationProcessorMap.put(annotationClass, fieldAnnotationProcessor);
}
@Override
public void process(Class> clazz, Object testInstance) {
Field[] fields = clazz.getDeclaredFields();
for (Field field : fields) {
boolean alreadyAssigned = false;
for(Annotation annotation : field.getAnnotations()) {
Object mock = createMockFor(annotation, field);
if (mock != null) {
throwIfAlreadyAssigned(field, alreadyAssigned);
alreadyAssigned = true;
try {
setField(testInstance, field,mock);
} catch (Exception e) {
throw new MockitoException("Problems setting field " + field.getName() + " annotated with "
+ annotation, e);
}
}
}
}
}
void throwIfAlreadyAssigned(Field field, boolean alreadyAssigned) {
if (alreadyAssigned) {
throw moreThanOneAnnotationNotAllowed(field.getName());
}
}
}