/core/test/com/google/inject/RequireAtInjectOnConstructorsTest.java

https://code.google.com/ · Java · 202 lines · 167 code · 13 blank · 22 comment · 0 complexity · 70f0a9f93c4064a4ca201fb8c6dcba20 MD5 · raw file

  1. /*
  2. * Copyright (C) 2012 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 junit.framework.TestCase;
  18. /**
  19. * Tests for {@link Binder#requireAtInjectOnConstructors()}
  20. *
  21. * @author sameb@google.com (Sam Berlin)
  22. */
  23. public class RequireAtInjectOnConstructorsTest extends TestCase {
  24. public void testNoCxtors_explicitBinding() {
  25. try {
  26. Guice.createInjector(new AbstractModule() {
  27. @Override
  28. protected void configure() {
  29. bind(NoCxtors.class);
  30. binder().requireAtInjectOnConstructors();
  31. }
  32. });
  33. fail();
  34. } catch (CreationException ce) {
  35. assertEquals(1, ce.getErrorMessages().size());
  36. Asserts.assertContains(ce.getMessage(),
  37. "1) Explicit @Inject annotations are required on constructors, but "
  38. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  39. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  40. }
  41. }
  42. public void testNoCxtors_jitBinding() {
  43. Injector injector = Guice.createInjector(new AbstractModule() {
  44. @Override
  45. protected void configure() {
  46. binder().requireAtInjectOnConstructors();
  47. }
  48. });
  49. try {
  50. injector.getInstance(NoCxtors.class);
  51. fail();
  52. } catch (ConfigurationException ce) {
  53. Asserts.assertContains(ce.getMessage(),
  54. "1) Explicit @Inject annotations are required on constructors, but "
  55. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  56. "while locating " + NoCxtors.class.getName());
  57. }
  58. }
  59. public void testNoCxtors_implicitBinding() {
  60. try {
  61. Guice.createInjector(new AbstractModule() {
  62. @Override
  63. protected void configure() {
  64. bind(Interface.class).to(NoCxtors.class);
  65. binder().requireAtInjectOnConstructors();
  66. }
  67. });
  68. fail();
  69. } catch (CreationException ce) {
  70. assertEquals(1, ce.getErrorMessages().size());
  71. Asserts.assertContains(ce.getMessage(),
  72. "1) Explicit @Inject annotations are required on constructors, but "
  73. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  74. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  75. }
  76. }
  77. public void testNoCxtors_inheritedByPrivateModules() {
  78. try {
  79. Guice.createInjector(new AbstractModule() {
  80. @Override
  81. protected void configure() {
  82. binder().requireAtInjectOnConstructors();
  83. install(new PrivateModule() {
  84. @Override
  85. protected void configure() {
  86. bind(NoCxtors.class);
  87. }
  88. });
  89. }
  90. });
  91. fail();
  92. } catch (CreationException ce) {
  93. assertEquals(1, ce.getErrorMessages().size());
  94. Asserts.assertContains(ce.getMessage(),
  95. "1) Explicit @Inject annotations are required on constructors, but "
  96. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  97. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  98. }
  99. }
  100. public void testNoCxtors_accumulatesAllErrors() {
  101. try {
  102. Guice.createInjector(new AbstractModule() {
  103. @Override
  104. protected void configure() {
  105. bind(NoCxtors.class);
  106. bind(AnotherNoCxtors.class);
  107. binder().requireAtInjectOnConstructors();
  108. }
  109. });
  110. fail();
  111. } catch (CreationException ce) {
  112. assertEquals(2, ce.getErrorMessages().size());
  113. Asserts.assertContains(ce.getMessage(),
  114. "1) Explicit @Inject annotations are required on constructors, but "
  115. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  116. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure",
  117. "2) Explicit @Inject annotations are required on constructors, but "
  118. + AnotherNoCxtors.class.getName() + " has no constructors annotated with @Inject",
  119. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  120. }
  121. }
  122. public void testNoCxtors_separateOptionsForPrivateModules() {
  123. try {
  124. Guice.createInjector(new AbstractModule() {
  125. @Override
  126. protected void configure() {
  127. bind(AnotherNoCxtors.class);
  128. install(new PrivateModule() {
  129. @Override
  130. protected void configure() {
  131. binder().requireAtInjectOnConstructors();
  132. bind(NoCxtors.class);
  133. }
  134. });
  135. }
  136. });
  137. fail();
  138. } catch (CreationException ce) {
  139. // This is testing that the parent module doesn't fail because it isn't included
  140. // in the error message.
  141. assertEquals(1, ce.getErrorMessages().size());
  142. Asserts.assertContains(ce.getMessage(),
  143. "1) Explicit @Inject annotations are required on constructors, but "
  144. + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
  145. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  146. }
  147. }
  148. public void testManyConstructorsButNoneWithAtInject() {
  149. try {
  150. Guice.createInjector(new AbstractModule() {
  151. @Override
  152. protected void configure() {
  153. bind(ManyConstructors.class);
  154. binder().requireAtInjectOnConstructors();
  155. }
  156. });
  157. fail();
  158. } catch (CreationException ce) {
  159. assertEquals(1, ce.getErrorMessages().size());
  160. Asserts.assertContains(ce.getMessage(),
  161. "1) Explicit @Inject annotations are required on constructors, but "
  162. + ManyConstructors.class.getName() + " has no constructors annotated with @Inject",
  163. "at " + RequireAtInjectOnConstructorsTest.class.getName() + "$", "configure");
  164. }
  165. }
  166. public void testRequireAtInjectStillAllowsToConstructorBindings() {
  167. Injector injector = Guice.createInjector(new AbstractModule() {
  168. @Override
  169. protected void configure() {
  170. try {
  171. bind(ManyConstructors.class)
  172. .toConstructor(ManyConstructors.class.getDeclaredConstructor());
  173. } catch (Exception e) {
  174. throw new RuntimeException(e);
  175. }
  176. binder().requireAtInjectOnConstructors();
  177. }
  178. });
  179. injector.getInstance(ManyConstructors.class);
  180. }
  181. private static interface Interface {}
  182. private static class NoCxtors implements Interface {}
  183. private static class AnotherNoCxtors {}
  184. private static class ManyConstructors {
  185. @SuppressWarnings("unused") ManyConstructors() {}
  186. @SuppressWarnings("unused") ManyConstructors(String a) {}
  187. @SuppressWarnings("unused") ManyConstructors(int a) {}
  188. }
  189. }