/mycila-testing/tags/mycila-testing-1.0-rc1/mycila-testing-plugins/mycila-testing-atunit/src/main/java/com/mycila/testing/plugin/atunit/container/GuiceContainer.java
http://mycila.googlecode.com/ · Java · 73 lines · 46 code · 10 blank · 17 comment · 6 complexity · d23ff5fa5cb73c498428fed73bf0aad8 MD5 · raw file
- /**
- * Copyright (C) 2008 Mathieu Carbou <mathieu.carbou@gmail.com>
- *
- * 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.*;
- import com.mycila.testing.core.ContextHolder;
- 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<Field, Object> 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(ContextHolder.get().getTest().getTarget());
- return null;
- }
- protected class FieldModule extends AbstractModule {
- final Map<Field, Object> fields;
- public FieldModule(Map<Field, Object> fields) {
- this.fields = fields;
- }
- @Override
- @SuppressWarnings("unchecked")
- protected void configure() {
- // map field values by type
- Multimap<Type, Field> 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<Field> 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));
- }
- }
- }
- }
- }