/guice/core/test/com/google/inject/ProviderInjectionTest.java

https://gitlab.com/jbwhips883/roboguice · Java · 190 lines · 125 code · 29 blank · 36 comment · 0 complexity · 2e723a9a77babc8b888f4c157bac1a28 MD5 · raw file

  1. /**
  2. * Copyright (C) 2006 Google Inc.
  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.google.inject;
  17. import static com.google.inject.name.Names.named;
  18. import com.google.inject.name.Named;
  19. import junit.framework.TestCase;
  20. import java.util.Arrays;
  21. import java.util.List;
  22. /**
  23. * @author crazybob@google.com (Bob Lee)
  24. */
  25. public class ProviderInjectionTest extends TestCase {
  26. public void testProviderInjection() throws CreationException {
  27. Injector injector = Guice.createInjector(new AbstractModule() {
  28. @Override
  29. protected void configure() {
  30. bind(Bar.class);
  31. bind(SampleSingleton.class).in(Scopes.SINGLETON);
  32. }
  33. });
  34. Foo foo = injector.getInstance(Foo.class);
  35. Bar bar = foo.barProvider.get();
  36. assertNotNull(bar);
  37. assertNotSame(bar, foo.barProvider.get());
  38. SampleSingleton singleton = foo.singletonProvider.get();
  39. assertNotNull(singleton);
  40. assertSame(singleton, foo.singletonProvider.get());
  41. }
  42. /** Test for bug 155. */
  43. public void testProvidersAreInjectedWhenBound() {
  44. Module m = new AbstractModule() {
  45. @Override
  46. protected void configure() {
  47. bind(Bar.class).toProvider(new Provider<Bar>() {
  48. @SuppressWarnings("unused")
  49. @Inject void cantBeCalled(Baz baz) {
  50. fail("Can't have called this method since Baz is not bound.");
  51. }
  52. public Bar get() {
  53. return new Bar() {};
  54. }
  55. });
  56. }
  57. };
  58. try {
  59. Guice.createInjector(m);
  60. fail("Should have thrown a CreationException");
  61. }
  62. catch (CreationException expected) {
  63. }
  64. }
  65. /**
  66. * When custom providers are used at injector creation time, they should be
  67. * injected before use. In this testcase, we verify that a provider for
  68. * List.class is injected before it is used.
  69. */
  70. public void testProvidersAreInjectedBeforeTheyAreUsed() {
  71. Injector injector = Guice.createInjector(new AbstractModule() {
  72. @Override
  73. public void configure() {
  74. // should bind String to "[true]"
  75. bind(String.class).toProvider(new Provider<String>() {
  76. private String value;
  77. @Inject void initialize(List list) {
  78. value = list.toString();
  79. }
  80. public String get() {
  81. return value;
  82. }
  83. });
  84. // should bind List to [true]
  85. bind(List.class).toProvider(new Provider<List>() {
  86. @Inject Boolean injectedYet = Boolean.FALSE;
  87. public List get() {
  88. return Arrays.asList(injectedYet);
  89. }
  90. });
  91. // should bind Boolean to true
  92. bind(Boolean.class).toInstance(Boolean.TRUE);
  93. }
  94. });
  95. assertEquals("Providers not injected before use",
  96. "[true]",
  97. injector.getInstance(String.class));
  98. }
  99. /**
  100. * This test ensures that regardless of binding order, instances are injected
  101. * before they are used. It injects mutable Count objects and records their
  102. * value at the time that they're injected.
  103. */
  104. public void testCreationTimeInjectionOrdering() {
  105. Injector injector = Guice.createInjector(new AbstractModule() {
  106. @Override
  107. protected void configure() {
  108. // instance injection
  109. bind(Count.class).annotatedWith(named("a")).toInstance(new Count(0) {
  110. @Inject void initialize(@Named("b") Count bCount) {
  111. value = bCount.value + 1;
  112. }
  113. });
  114. // provider injection
  115. bind(Count.class).annotatedWith(named("b")).toProvider(new Provider<Count>() {
  116. Count count;
  117. @Inject void initialize(@Named("c") Count cCount) {
  118. count = new Count(cCount.value + 2);
  119. }
  120. public Count get() {
  121. return count;
  122. }
  123. });
  124. // field and method injection, fields first
  125. bind(Count.class).annotatedWith(named("c")).toInstance(new Count(0) {
  126. @Inject @Named("d") Count dCount;
  127. @Inject void initialize(@Named("e") Count eCount) {
  128. value = dCount.value + eCount.value + 4;
  129. }
  130. });
  131. // static injection
  132. requestStaticInjection(StaticallyInjectable.class);
  133. bind(Count.class).annotatedWith(named("d")).toInstance(new Count(8));
  134. bind(Count.class).annotatedWith(named("e")).toInstance(new Count(16));
  135. }
  136. });
  137. assertEquals(28, injector.getInstance(Key.get(Count.class, named("c"))).value);
  138. assertEquals(30, injector.getInstance(Key.get(Count.class, named("b"))).value);
  139. assertEquals(31, injector.getInstance(Key.get(Count.class, named("a"))).value);
  140. assertEquals(28, StaticallyInjectable.cCountAtInjectionTime);
  141. }
  142. static class Count {
  143. int value;
  144. Count(int value) {
  145. this.value = value;
  146. }
  147. }
  148. static class StaticallyInjectable {
  149. static int cCountAtInjectionTime;
  150. @Inject static void initialize(@Named("c") Count cCount) {
  151. cCountAtInjectionTime = cCount.value;
  152. }
  153. }
  154. static class Foo {
  155. @Inject Provider<Bar> barProvider;
  156. @Inject Provider<SampleSingleton> singletonProvider;
  157. }
  158. static class Bar {}
  159. static class SampleSingleton {}
  160. interface Baz { }
  161. }