com.mycila.testing.plugin.atunit.container.GuiceContainer Maven / Gradle / Ivy
/**
* Copyright (C) 2008 Mathieu Carbou
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mycila.testing.plugin.atunit.container;
import atunit.core.Container;
import atunit.lib.com.google.common.collect.Iterables;
import atunit.lib.com.google.common.collect.Multimap;
import atunit.lib.com.google.common.collect.Multimaps;
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Module;
import com.google.inject.TypeLiteral;
import com.mycila.testing.core.Mycila;
import java.lang.reflect.Field;
import java.lang.reflect.Type;
import java.util.Collection;
import java.util.Map;
public class GuiceContainer implements Container {
public Object createTest(Class> testClass, Map fieldValues) throws Exception {
FieldModule fields = new FieldModule(fieldValues);
Injector injector;
if (Module.class.isAssignableFrom(testClass)) {
injector = Guice.createInjector(fields, (Module) testClass.newInstance());
} else {
injector = Guice.createInjector(fields);
}
injector.injectMembers(Mycila.currentExecution().context().introspector().instance());
return null;
}
protected class FieldModule extends AbstractModule {
final Map fields;
public FieldModule(Map fields) {
this.fields = fields;
}
@Override
@SuppressWarnings("unchecked")
protected void configure() {
// map field values by type
Multimap fieldsByType = Multimaps.newHashMultimap();
for (Field field : fields.keySet()) {
fieldsByType.put(field.getGenericType(), field);
}
// for any types that don't have duplicates, bind instances.
for (Type type : fieldsByType.keySet()) {
Collection fields = fieldsByType.get(type);
if (fields.size() == 1) {
Field field = Iterables.getOnlyElement(fields);
TypeLiteral literal = TypeLiteral.get(type);
bind(literal).toInstance(this.fields.get(field));
}
}
}
}
}