/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

  1. /**
  2. * Copyright (C) 2008 Mathieu Carbou <mathieu.carbou@gmail.com>
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mycila.testing.plugin.atunit.container;
  17. import atunit.core.Container;
  18. import atunit.lib.com.google.common.collect.Iterables;
  19. import atunit.lib.com.google.common.collect.Multimap;
  20. import atunit.lib.com.google.common.collect.Multimaps;
  21. import com.google.inject.*;
  22. import com.mycila.testing.core.ContextHolder;
  23. import java.lang.reflect.Field;
  24. import java.lang.reflect.Type;
  25. import java.util.Collection;
  26. import java.util.Map;
  27. public class GuiceContainer implements Container {
  28. public Object createTest(Class<?> testClass, Map<Field, Object> fieldValues) throws Exception {
  29. FieldModule fields = new FieldModule(fieldValues);
  30. Injector injector;
  31. if (Module.class.isAssignableFrom(testClass)) {
  32. injector = Guice.createInjector(fields, (Module) testClass.newInstance());
  33. } else {
  34. injector = Guice.createInjector(fields);
  35. }
  36. injector.injectMembers(ContextHolder.get().getTest().getTarget());
  37. return null;
  38. }
  39. protected class FieldModule extends AbstractModule {
  40. final Map<Field, Object> fields;
  41. public FieldModule(Map<Field, Object> fields) {
  42. this.fields = fields;
  43. }
  44. @Override
  45. @SuppressWarnings("unchecked")
  46. protected void configure() {
  47. // map field values by type
  48. Multimap<Type, Field> fieldsByType = Multimaps.newHashMultimap();
  49. for (Field field : fields.keySet()) {
  50. fieldsByType.put(field.getGenericType(), field);
  51. }
  52. // for any types that don't have duplicates, bind instances.
  53. for (Type type : fieldsByType.keySet()) {
  54. Collection<Field> fields = fieldsByType.get(type);
  55. if (fields.size() == 1) {
  56. Field field = Iterables.getOnlyElement(fields);
  57. TypeLiteral literal = TypeLiteral.get(type);
  58. bind(literal).toInstance(this.fields.get(field));
  59. }
  60. }
  61. }
  62. }
  63. }