/tags/snapshot20080611/test/com/google/inject/InjectorTest.java

https://bitbucket.org/cvgaviao/google-guice-mavenized · Java · 290 lines · 209 code · 62 blank · 19 comment · 1 complexity · 55adcc19c5fd45d0eed0fe857b4a5ca5 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.Asserts.assertNotSerializable;
  18. import junit.framework.TestCase;
  19. import java.io.IOException;
  20. import java.lang.annotation.Retention;
  21. import static java.lang.annotation.RetentionPolicy.RUNTIME;
  22. /**
  23. * @author crazybob@google.com (Bob Lee)
  24. */
  25. public class InjectorTest extends TestCase {
  26. @Retention(RUNTIME)
  27. @BindingAnnotation @interface Other {}
  28. @Retention(RUNTIME)
  29. @BindingAnnotation @interface S {}
  30. @Retention(RUNTIME)
  31. @BindingAnnotation @interface I {}
  32. public void testToStringDoesNotInfinitelyRecurse() {
  33. Injector injector = Guice.createInjector(Stage.TOOL);
  34. injector.toString();
  35. injector.getBinding(Injector.class).toString();
  36. }
  37. public void testProviderMethods() throws CreationException {
  38. final SampleSingleton singleton = new SampleSingleton();
  39. final SampleSingleton other = new SampleSingleton();
  40. Injector injector = Guice.createInjector(new AbstractModule() {
  41. protected void configure() {
  42. bind(SampleSingleton.class).toInstance(singleton);
  43. bind(SampleSingleton.class)
  44. .annotatedWith(Other.class)
  45. .toInstance(other);
  46. }
  47. });
  48. assertSame(singleton,
  49. injector.getInstance(Key.get(SampleSingleton.class)));
  50. assertSame(singleton, injector.getInstance(SampleSingleton.class));
  51. assertSame(other,
  52. injector.getInstance(Key.get(SampleSingleton.class, Other.class)));
  53. }
  54. static class SampleSingleton {}
  55. public void testInjection() throws CreationException {
  56. Injector injector = createFooInjector();
  57. Foo foo = injector.getInstance(Foo.class);
  58. assertEquals("test", foo.s);
  59. assertEquals("test", foo.bar.getTee().getS());
  60. assertSame(foo.bar, foo.copy);
  61. assertEquals(5, foo.i);
  62. assertEquals(5, foo.bar.getI());
  63. // Test circular dependency.
  64. assertSame(foo.bar, foo.bar.getTee().getBar());
  65. }
  66. private Injector createFooInjector() throws CreationException {
  67. return Guice.createInjector(new AbstractModule() {
  68. protected void configure() {
  69. bind(Bar.class).to(BarImpl.class);
  70. bind(Tee.class).to(TeeImpl.class);
  71. bindConstant().annotatedWith(S.class).to("test");
  72. bindConstant().annotatedWith(I.class).to(5);
  73. }
  74. });
  75. }
  76. public void testGetInstance() throws CreationException {
  77. Injector injector = createFooInjector();
  78. Bar bar = injector.getInstance(Key.get(Bar.class));
  79. assertEquals("test", bar.getTee().getS());
  80. assertEquals(5, bar.getI());
  81. }
  82. public void testIntAndIntegerAreInterchangeable()
  83. throws CreationException {
  84. Injector injector = Guice.createInjector(new AbstractModule() {
  85. protected void configure() {
  86. bindConstant().annotatedWith(I.class).to(5);
  87. }
  88. });
  89. IntegerWrapper iw = injector.getInstance(IntegerWrapper.class);
  90. assertEquals(5, (int) iw.i);
  91. }
  92. public void testInjectorApiIsNotSerializable() throws IOException {
  93. Injector injector = Guice.createInjector();
  94. assertNotSerializable(injector);
  95. assertNotSerializable(injector.getProvider(String.class));
  96. assertNotSerializable(injector.getBinding(String.class));
  97. for (Binding<?> binding : injector.getBindings().values()) {
  98. assertNotSerializable(binding);
  99. }
  100. }
  101. static class IntegerWrapper {
  102. @Inject @I Integer i;
  103. }
  104. static class Foo {
  105. @Inject Bar bar;
  106. @Inject Bar copy;
  107. @Inject @S String s;
  108. int i;
  109. @Inject
  110. void setI(@I int i) {
  111. this.i = i;
  112. }
  113. }
  114. interface Bar {
  115. Tee getTee();
  116. int getI();
  117. }
  118. @Singleton
  119. static class BarImpl implements Bar {
  120. @Inject @I int i;
  121. Tee tee;
  122. @Inject
  123. void initialize(Tee tee) {
  124. this.tee = tee;
  125. }
  126. public Tee getTee() {
  127. return tee;
  128. }
  129. public int getI() {
  130. return i;
  131. }
  132. }
  133. interface Tee {
  134. String getS();
  135. Bar getBar();
  136. }
  137. static class TeeImpl implements Tee {
  138. final String s;
  139. @Inject Bar bar;
  140. @Inject
  141. TeeImpl(@S String s) {
  142. this.s = s;
  143. }
  144. public String getS() {
  145. return s;
  146. }
  147. public Bar getBar() {
  148. return bar;
  149. }
  150. }
  151. public void testInjectStatics() throws CreationException {
  152. Guice.createInjector(new AbstractModule() {
  153. protected void configure() {
  154. bindConstant().annotatedWith(S.class).to("test");
  155. bindConstant().annotatedWith(I.class).to(5);
  156. requestStaticInjection(Static.class);
  157. }
  158. });
  159. assertEquals("test", Static.s);
  160. assertEquals(5, Static.i);
  161. }
  162. static class Static {
  163. @Inject @I static int i;
  164. static String s;
  165. @Inject static void setS(@S String s) {
  166. Static.s = s;
  167. }
  168. }
  169. public void testPrivateInjection() throws CreationException {
  170. Injector injector = Guice.createInjector(new AbstractModule() {
  171. protected void configure() {
  172. bind(String.class).toInstance("foo");
  173. bind(int.class).toInstance(5);
  174. }
  175. });
  176. Private p = injector.getInstance(Private.class);
  177. assertEquals("foo", p.fromConstructor);
  178. assertEquals(5, p.fromMethod);
  179. }
  180. static class Private {
  181. String fromConstructor;
  182. int fromMethod;
  183. @Inject
  184. private Private(String fromConstructor) {
  185. this.fromConstructor = fromConstructor;
  186. }
  187. @Inject
  188. private void setInt(int i) {
  189. this.fromMethod = i;
  190. }
  191. }
  192. public void testProtectedInjection() throws CreationException {
  193. Injector injector = Guice.createInjector(new AbstractModule() {
  194. protected void configure() {
  195. bind(String.class).toInstance("foo");
  196. bind(int.class).toInstance(5);
  197. }
  198. });
  199. Protected p = injector.getInstance(Protected.class);
  200. assertEquals("foo", p.fromConstructor);
  201. assertEquals(5, p.fromMethod);
  202. }
  203. static class Protected {
  204. String fromConstructor;
  205. int fromMethod;
  206. @Inject
  207. protected Protected(String fromConstructor) {
  208. this.fromConstructor = fromConstructor;
  209. }
  210. @Inject
  211. protected void setInt(int i) {
  212. this.fromMethod = i;
  213. }
  214. }
  215. public void testInstanceInjectionHappensAfterFactoriesAreSetUp() {
  216. Guice.createInjector(new AbstractModule() {
  217. protected void configure() {
  218. bind(Object.class).toInstance(new Object() {
  219. @Inject Runnable r;
  220. });
  221. bind(Runnable.class).to(MyRunnable.class);
  222. }
  223. });
  224. }
  225. static class MyRunnable implements Runnable {
  226. public void run() {}
  227. }
  228. }