/MOVED_TO_GITHUB/mycila-guice/tags/mycila-guice-2.1.ga/src/test/java/MycilaInitDestroyBindingsTest.java

http://mycila.googlecode.com/ · Java · 238 lines · 172 code · 44 blank · 22 comment · 0 complexity · 30fe7556a7bf6b27993a77d27266e4cc MD5 · raw file

  1. /**
  2. * Copyright (C) 2010 Mycila <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. import com.google.inject.AbstractModule;
  17. import com.google.inject.Provider;
  18. import com.mycila.inject.jsr250.Jsr250;
  19. import com.mycila.inject.jsr250.Jsr250Injector;
  20. import org.junit.Test;
  21. import javax.annotation.PostConstruct;
  22. import javax.annotation.PreDestroy;
  23. import javax.inject.Singleton;
  24. import static org.junit.Assert.assertEquals;
  25. public class MycilaInitDestroyBindingsTest {
  26. public static class InitDestroyCounter {
  27. public int initialized;
  28. public int destroyed;
  29. @PostConstruct
  30. public void init() {
  31. initialized++;
  32. }
  33. @PreDestroy
  34. public void destroy() {
  35. destroyed++;
  36. }
  37. }
  38. public interface SomeInterface {
  39. }
  40. public interface AnotherInterface {
  41. }
  42. public static class NonScopedTestObject extends InitDestroyCounter implements SomeInterface, AnotherInterface {
  43. }
  44. @Singleton
  45. public static class TestSingleton extends InitDestroyCounter implements SomeInterface, AnotherInterface {
  46. }
  47. public static abstract class TestProvider<T> extends InitDestroyCounter implements Provider<T> {
  48. }
  49. @Test
  50. public void testUntargettedBinding() {
  51. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  52. @Override
  53. protected void configure() {
  54. bind(TestSingleton.class);
  55. }
  56. });
  57. TestSingleton component = injector.getInstance(TestSingleton.class);
  58. assertEquals(1, component.initialized);
  59. assertEquals(0, component.destroyed);
  60. injector.destroy();
  61. assertEquals(1, component.initialized);
  62. assertEquals(1, component.destroyed);
  63. }
  64. @Test
  65. public void testLinkedBinding() {
  66. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  67. @Override
  68. protected void configure() {
  69. bind(SomeInterface.class).to(TestSingleton.class);
  70. }
  71. });
  72. TestSingleton component = (TestSingleton) injector.getInstance(SomeInterface.class);
  73. assertEquals(1, component.initialized);
  74. assertEquals(0, component.destroyed);
  75. injector.destroy();
  76. assertEquals(1, component.initialized);
  77. assertEquals(1, component.destroyed);
  78. // Guice creates an internal jit ConstructorBinding therefor this fails as Mycila destroys on both bindings
  79. }
  80. @Test
  81. public void testLinkedAndUntargettedBinding() {
  82. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  83. @Override
  84. protected void configure() {
  85. bind(TestSingleton.class);
  86. bind(SomeInterface.class).to(TestSingleton.class);
  87. }
  88. });
  89. TestSingleton component = (TestSingleton) injector.getInstance(SomeInterface.class);
  90. assertEquals(1, component.initialized);
  91. assertEquals(0, component.destroyed);
  92. injector.destroy();
  93. assertEquals(1, component.initialized);
  94. assertEquals(1, component.destroyed);
  95. // Both bindings return the same object therefor this fails as Mycila destroys on both bindings
  96. }
  97. @Test
  98. public void testInstanceBinding() {
  99. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  100. @Override
  101. protected void configure() {
  102. TestSingleton instance = new TestSingleton();
  103. bind(SomeInterface.class).toInstance(instance);
  104. bind(AnotherInterface.class).toInstance(instance);
  105. }
  106. });
  107. TestSingleton component = (TestSingleton) injector.getInstance(SomeInterface.class);
  108. assertEquals(1, component.initialized);
  109. assertEquals(0, component.destroyed);
  110. injector.destroy();
  111. assertEquals(1, component.initialized);
  112. assertEquals(1, component.destroyed);
  113. // Both bindings return the same object therefor this fails as Mycila destroys on both bindings
  114. }
  115. @Test
  116. public void testNonSingletonInstanceBinding() {
  117. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  118. @Override
  119. protected void configure() {
  120. NonScopedTestObject instance = new NonScopedTestObject();
  121. bind(SomeInterface.class).toInstance(instance);
  122. bind(AnotherInterface.class).toInstance(instance);
  123. }
  124. });
  125. // The object is not scoped but Guice considers instance bindings to be singletons so Mycila will destroy it
  126. NonScopedTestObject component = (NonScopedTestObject) injector.getInstance(SomeInterface.class);
  127. assertEquals(1, component.initialized);
  128. assertEquals(0, component.destroyed);
  129. injector.destroy();
  130. assertEquals(1, component.initialized);
  131. assertEquals(1, component.destroyed);
  132. // Both bindings return the same object therefor this fails as Mycila destroys on both bindings
  133. }
  134. @Test
  135. public void testProviderBinding() {
  136. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  137. @Override
  138. protected void configure() {
  139. final TestSingleton instance = new TestSingleton();
  140. bind(TestSingleton.class).toProvider(new Provider<TestSingleton>() {
  141. @Override
  142. public TestSingleton get() {
  143. return instance;
  144. }
  145. });
  146. bind(SomeInterface.class).toProvider(new Provider<SomeInterface>() {
  147. @Override
  148. public TestSingleton get() {
  149. return instance;
  150. }
  151. });
  152. }
  153. });
  154. // Provider bindings are not scoped so Mycila will not destroy them
  155. TestSingleton component = (TestSingleton) injector.getInstance(SomeInterface.class);
  156. assertEquals(0, component.initialized);
  157. assertEquals(0, component.destroyed);
  158. injector.destroy();
  159. assertEquals(0, component.initialized);
  160. assertEquals(0, component.destroyed);
  161. }
  162. @Test
  163. public void testProvider() {
  164. final TestProvider<TestSingleton> testProvider1 = new TestProvider<TestSingleton>() {
  165. @Override
  166. public TestSingleton get() {
  167. return new TestSingleton();
  168. }
  169. };
  170. final TestProvider<SomeInterface> testProvider2 = new TestProvider<SomeInterface>() {
  171. @Override
  172. public TestSingleton get() {
  173. return new TestSingleton();
  174. }
  175. };
  176. Jsr250Injector injector = Jsr250.createInjector(new AbstractModule() {
  177. @Override
  178. protected void configure() {
  179. bind(TestSingleton.class).toProvider(testProvider1);
  180. bind(SomeInterface.class).toProvider(testProvider2);
  181. }
  182. });
  183. // Guice will do injection on the provider but will not destroy it since its not singleton scoped
  184. assertEquals(1, testProvider1.initialized);
  185. assertEquals(0, testProvider1.destroyed);
  186. assertEquals(1, testProvider2.initialized);
  187. assertEquals(0, testProvider2.destroyed);
  188. injector.destroy();
  189. assertEquals(1, testProvider1.initialized);
  190. assertEquals(1, testProvider1.destroyed);
  191. assertEquals(1, testProvider2.initialized);
  192. assertEquals(1, testProvider2.destroyed);
  193. }
  194. }