/ninja-core/src/test/java/ninja/lifecycle/LifecycleSupportTest.java

https://gitlab.com/kidaa/ninja · Java · 203 lines · 164 code · 24 blank · 15 comment · 0 complexity · 07c88bdfbe9a6a300196dc1901b41139 MD5 · raw file

  1. /**
  2. * Copyright (C) 2012-2015 the original author or authors.
  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 ninja.lifecycle;
  17. import static org.hamcrest.core.IsEqual.equalTo;
  18. import static org.junit.Assert.assertThat;
  19. import java.util.ArrayList;
  20. import java.util.Arrays;
  21. import java.util.List;
  22. import org.junit.Before;
  23. import org.junit.Test;
  24. import com.google.inject.AbstractModule;
  25. import com.google.inject.Guice;
  26. import com.google.inject.Injector;
  27. import com.google.inject.Module;
  28. import com.google.inject.Provides;
  29. import com.google.inject.Singleton;
  30. public class LifecycleSupportTest {
  31. @Before
  32. public void setUp() {
  33. MockSingletonService.started = 0;
  34. MockService.started = 0;
  35. }
  36. @Test
  37. public void serviceShouldNotBeStartedBeforeLifecycleServiceIsStarted() {
  38. createInjector().getInstance(MockService.class);
  39. assertThat(MockService.started, equalTo(0));
  40. }
  41. @Test
  42. public void serviceShouldBeStartedWhenLifecycleServiceIsStarted() {
  43. Injector injector = createInjector();
  44. injector.getInstance(MockService.class);
  45. start(injector);
  46. assertThat(MockService.started, equalTo(1));
  47. }
  48. @Test
  49. public void serviceShouldBeStartedIfAccessedAfterLifecycleServiceIsStarted() {
  50. Injector injector = createInjector();
  51. start(injector);
  52. injector.getInstance(MockService.class);
  53. assertThat(MockService.started, equalTo(1));
  54. }
  55. @Test
  56. public void serviceShouldBeStartedIfExplicitlyBoundAndSingleton() {
  57. Injector injector = createInjector(new AbstractModule() {
  58. @Override
  59. protected void configure() {
  60. bind(MockSingletonService.class);
  61. }
  62. });
  63. start(injector);
  64. assertThat(MockSingletonService.started, equalTo(1));
  65. }
  66. @Test
  67. public void serviceShouldBeStartedIfExplicitlyBoundAsSingleton() {
  68. Injector injector = createInjector(new AbstractModule() {
  69. @Override
  70. protected void configure() {
  71. bind(MockService.class).toInstance(new MockService());
  72. }
  73. });
  74. start(injector);
  75. assertThat(MockService.started, equalTo(1));
  76. }
  77. @Test
  78. public void serviceShouldNotBeStartedIfExplicitlyBoundAndNotSingleton() {
  79. Injector injector = createInjector(new AbstractModule() {
  80. @Override
  81. protected void configure() {
  82. bind(MockService.class);
  83. }
  84. });
  85. start(injector);
  86. assertThat(MockService.started, equalTo(0));
  87. }
  88. @Test
  89. public void singletonServiceShouldNotBeStartedTwice() {
  90. Injector injector = createInjector();
  91. injector.getInstance(MockSingletonService.class);
  92. injector.getInstance(MockSingletonService.class);
  93. start(injector);
  94. assertThat(MockSingletonService.started, equalTo(1));
  95. }
  96. @Test
  97. public void nonSingletonServicesShouldBeInstantiatedForEachInstance() {
  98. Injector injector = createInjector();
  99. injector.getInstance(MockService.class);
  100. injector.getInstance(MockService.class);
  101. start(injector);
  102. assertThat(MockService.started, equalTo(2));
  103. }
  104. @Test
  105. public void disposablesShouldBeDisposedOf() {
  106. Injector injector = createInjector();
  107. injector.getInstance(MockService.class);
  108. start(injector);
  109. stop(injector);
  110. assertThat(MockService.disposed, equalTo(1));
  111. }
  112. @Test
  113. public void providedSingletonStartableShouldBeStarted() {
  114. Injector injector = createInjector(new AbstractModule() {
  115. @Override
  116. protected void configure() {
  117. }
  118. @Provides
  119. @Singleton
  120. public MockSingletonService provide() {
  121. return new MockSingletonService();
  122. }
  123. });
  124. start(injector);
  125. assertThat(MockSingletonService.started, equalTo(1));
  126. }
  127. @Test
  128. public void providedSingletonDisposableShouldBeDisposed() {
  129. Injector injector = createInjector(new AbstractModule() {
  130. @Override
  131. protected void configure() {
  132. }
  133. @Provides
  134. @Singleton
  135. public MockSingletonService provide() {
  136. return new MockSingletonService();
  137. }
  138. });
  139. start(injector);
  140. stop(injector);
  141. assertThat(MockSingletonService.disposed, equalTo(1));
  142. }
  143. private Injector createInjector(Module... modules) {
  144. List<Module> ms = new ArrayList<Module>(Arrays.asList(modules));
  145. ms.add(LifecycleSupport.getModule());
  146. return Guice.createInjector(ms);
  147. }
  148. private void start(Injector injector) {
  149. injector.getInstance(LifecycleService.class).start();
  150. }
  151. private void stop(Injector injector) {
  152. injector.getInstance(LifecycleService.class).stop();
  153. }
  154. @Singleton
  155. public static class MockSingletonService {
  156. static int started;
  157. static int disposed;
  158. @Start
  159. public void start() {
  160. started++;
  161. }
  162. @Dispose
  163. public void dispose() {
  164. disposed++;
  165. }
  166. }
  167. public static class MockService {
  168. static int started;
  169. static int disposed;
  170. @Start
  171. public void start() {
  172. started++;
  173. }
  174. @Dispose
  175. public void dispose() {
  176. disposed++;
  177. }
  178. }
  179. }