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

https://bitbucket.org/cvgaviao/google-guice-mavenized · Java · 183 lines · 132 code · 20 blank · 31 comment · 0 complexity · d5c8f5d2998806f7709a7962b5d29882 MD5 · raw file

  1. /**
  2. * Copyright (C) 2007 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.assertContains;
  18. import static com.google.inject.Asserts.assertNotSerializable;
  19. import com.google.inject.name.Names;
  20. import java.io.IOException;
  21. import java.util.ArrayList;
  22. import java.util.List;
  23. import junit.framework.TestCase;
  24. /**
  25. * @author crazybob@google.com (Bob Lee)
  26. */
  27. public class BinderTest extends TestCase {
  28. Provider<Foo> fooProvider;
  29. public void testProviderFromBinder() {
  30. Guice.createInjector(new Module() {
  31. public void configure(Binder binder) {
  32. fooProvider = binder.getProvider(Foo.class);
  33. try {
  34. fooProvider.get();
  35. } catch (IllegalStateException e) { /* expected */ }
  36. }
  37. });
  38. assertNotNull(fooProvider.get());
  39. }
  40. static class Foo {}
  41. public void testInvalidProviderFromBinder() {
  42. try {
  43. Guice.createInjector(new Module() {
  44. public void configure(Binder binder) {
  45. binder.getProvider(Runnable.class);
  46. }
  47. });
  48. }
  49. catch (CreationException e) {
  50. assertEquals(1, e.getErrorMessages().size());
  51. }
  52. }
  53. public void testDanglingConstantBinding() {
  54. try {
  55. Guice.createInjector(new AbstractModule() {
  56. @Override public void configure() {
  57. bindConstant();
  58. }
  59. });
  60. fail();
  61. } catch (CreationException expected) {
  62. assertContains(expected.getMessage(), "Missing constant value.");
  63. }
  64. }
  65. public void testToStringOnBinderApi() {
  66. try {
  67. Guice.createInjector(new AbstractModule() {
  68. @Override public void configure() {
  69. assertEquals("Binder", binder().toString());
  70. assertEquals("Provider<java.lang.Integer>", getProvider(Integer.class).toString());
  71. assertEquals("Provider<java.util.List<java.lang.String>>",
  72. getProvider(Key.get(new TypeLiteral<List<String>>() {})).toString());
  73. assertEquals("AnnotatedBindingBuilder<java.lang.Integer>",
  74. bind(Integer.class).toString());
  75. assertEquals("LinkedBindingBuilder<java.lang.Integer>",
  76. bind(Integer.class).annotatedWith(Names.named("a")).toString());
  77. assertEquals("AnnotatedConstantBindingBuilder", bindConstant().toString());
  78. assertEquals("ConstantBindingBuilder",
  79. bindConstant().annotatedWith(Names.named("b")).toString());
  80. }
  81. });
  82. fail();
  83. } catch (CreationException ignored) {
  84. }
  85. }
  86. public void testNothingIsSerializableInBinderApi() {
  87. try {
  88. Guice.createInjector(new AbstractModule() {
  89. @Override public void configure() {
  90. try {
  91. assertNotSerializable(binder());
  92. assertNotSerializable(getProvider(Integer.class));
  93. assertNotSerializable(getProvider(Key.get(new TypeLiteral<List<String>>() {})));
  94. assertNotSerializable(bind(Integer.class));
  95. assertNotSerializable(bind(Integer.class).annotatedWith(Names.named("a")));
  96. assertNotSerializable(bindConstant());
  97. assertNotSerializable(bindConstant().annotatedWith(Names.named("b")));
  98. } catch (IOException e) {
  99. fail(e.getMessage());
  100. }
  101. }
  102. });
  103. fail();
  104. } catch (CreationException ignored) {
  105. }
  106. }
  107. /**
  108. * Although {@code String[].class} isn't equal to {@code new
  109. * GenericArrayTypeImpl(String.class)}, Guice should treat these two types
  110. * interchangeably.
  111. */
  112. public void testArrayTypeCanonicalization() {
  113. final String[] strings = new String[] { "A" };
  114. final Integer[] integers = new Integer[] { 1 };
  115. Injector injector = Guice.createInjector(new AbstractModule() {
  116. protected void configure() {
  117. bind(String[].class).toInstance(strings);
  118. bind(new TypeLiteral<Integer[]>() {}).toInstance(integers);
  119. }
  120. });
  121. assertSame(integers, injector.getInstance(Key.get(new TypeLiteral<Integer[]>() {})));
  122. assertSame(integers, injector.getInstance(new Key<Integer[]>() {}));
  123. assertSame(integers, injector.getInstance(Integer[].class));
  124. assertSame(strings, injector.getInstance(Key.get(new TypeLiteral<String[]>() {})));
  125. assertSame(strings, injector.getInstance(new Key<String[]>() {}));
  126. assertSame(strings, injector.getInstance(String[].class));
  127. try {
  128. Guice.createInjector(new AbstractModule() {
  129. protected void configure() {
  130. bind(String[].class).toInstance(strings);
  131. bind(new TypeLiteral<String[]>() {}).toInstance(strings);
  132. }
  133. });
  134. fail();
  135. } catch (CreationException expected) {
  136. Asserts.assertContains(expected.getMessage(),
  137. "A binding to java.lang.String[] was already configured");
  138. Asserts.assertContains(expected.getMessage(),
  139. "1 error[s]");
  140. }
  141. }
  142. /** Test for issue 186 */
  143. public void testGuiceRefusesToCreateParameterizedClasses() {
  144. try {
  145. Guice.createInjector(new AbstractModule() {
  146. protected void configure() {
  147. bind(List.class).to(ArrayList.class);
  148. }
  149. });
  150. fail();
  151. } catch (CreationException expected) {
  152. Asserts.assertContains(expected.getMessage(),
  153. "Cannot instantiate Parameterized class java.util.List");
  154. }
  155. }
  156. // public void testBindInterfaceWithoutImplementation() {
  157. // Guice.createInjector(new AbstractModule() {
  158. // protected void configure() {
  159. // bind(Runnable.class);
  160. // }
  161. // }).getInstance(Runnable.class);
  162. // }
  163. }