/javamelody-core/src/test/java/net/bull/javamelody/TestMonitoringGuiceInterceptor.java

http://javamelody.googlecode.com/ · Java · 117 lines · 73 code · 15 blank · 29 comment · 0 complexity · 28dbc622a4a78f806bebb03526d94a5b MD5 · raw file

  1. /*
  2. * Copyright 2008-2012 by Emeric Vernat
  3. *
  4. * This file is part of Java Melody.
  5. *
  6. * Java Melody is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Java Melody is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with Java Melody. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package net.bull.javamelody;
  20. import static org.junit.Assert.assertNotNull;
  21. import static org.junit.Assert.assertSame;
  22. import net.bull.javamelody.TestMonitoringSpringInterceptor.AnnotatedTest;
  23. import net.bull.javamelody.TestMonitoringSpringInterceptor.AnnotatedTestClass;
  24. import net.bull.javamelody.TestMonitoringSpringInterceptor.AnnotatedTestMethod;
  25. import net.bull.javamelody.TestMonitoringSpringInterceptor.AnnotatedTestOtherClass;
  26. import org.junit.Before;
  27. import org.junit.Test;
  28. import com.google.inject.AbstractModule;
  29. import com.google.inject.Guice;
  30. import com.google.inject.Injector;
  31. import com.google.inject.Key;
  32. import com.google.inject.Module;
  33. import com.google.inject.name.Names;
  34. /**
  35. * Test unitaire de la classe MonitoringGuiceInterceptor.
  36. * @author Emeric Vernat
  37. */
  38. public class TestMonitoringGuiceInterceptor {
  39. private static final String REQUESTS_COUNT = "requestsCount";
  40. /** Check. */
  41. @Before
  42. public void setUp() {
  43. Utils.initialize();
  44. }
  45. /** Test. */
  46. @Test
  47. public void testNewInstance() {
  48. assertNotNull("new MonitoringGuiceInterceptor", new MonitoringGuiceInterceptor());
  49. }
  50. /** Test. */
  51. @Test
  52. public void testGetGuiceCounter() {
  53. assertNotNull("getGuiceCounter", MonitoringProxy.getGuiceCounter());
  54. }
  55. /** Test. */
  56. @Test
  57. public void testGuiceAOP() {
  58. final Counter guiceCounter = MonitoringProxy.getGuiceCounter();
  59. guiceCounter.clear();
  60. final Key<AnnotatedTest> annotatedTestMethodKey = Key.get(AnnotatedTest.class,
  61. Names.named("annotatedTestMethod"));
  62. final Key<AnnotatedTest> annotatedTestOtherClassKey = Key.get(AnnotatedTest.class,
  63. Names.named("annotatedTestOtherClass"));
  64. final Module testModule = new AbstractModule() {
  65. /** {@inheritDoc} */
  66. @Override
  67. protected void configure() {
  68. // configuration du monitoring Guice
  69. install(new MonitoringGuiceModule());
  70. // impl?確entation de test
  71. bind(SpringTestFacade.class).to(SpringTestFacadeImpl.class);
  72. bind(AnnotatedTest.class).to(AnnotatedTestClass.class);
  73. bind(annotatedTestOtherClassKey).to(AnnotatedTestOtherClass.class);
  74. bind(annotatedTestMethodKey).to(AnnotatedTestMethod.class);
  75. }
  76. };
  77. final Injector injector = Guice.createInjector(testModule);
  78. final SpringTestFacade springTestFacade = injector.getInstance(SpringTestFacade.class);
  79. guiceCounter.setDisplayed(false);
  80. assertNotNull("now()", springTestFacade.now());
  81. assertSame(REQUESTS_COUNT, 0, guiceCounter.getRequestsCount());
  82. guiceCounter.setDisplayed(true);
  83. assertNotNull("now()", springTestFacade.now());
  84. assertSame(REQUESTS_COUNT, 1, guiceCounter.getRequestsCount());
  85. try {
  86. springTestFacade.throwError();
  87. } catch (final Error e) {
  88. assertSame(REQUESTS_COUNT, 2, guiceCounter.getRequestsCount());
  89. }
  90. final AnnotatedTest annotatedTestClass = injector.getInstance(AnnotatedTestClass.class);
  91. assertNotNull("annotatedTestClass", annotatedTestClass.myMethod());
  92. assertSame(REQUESTS_COUNT, 3, guiceCounter.getRequestsCount());
  93. final AnnotatedTest annotatedTestOtherClass = injector
  94. .getInstance(annotatedTestOtherClassKey);
  95. assertNotNull("annotatedTestOtherClass", annotatedTestOtherClass.myMethod());
  96. assertSame(REQUESTS_COUNT, 4, guiceCounter.getRequestsCount());
  97. final AnnotatedTest annotatedTestMethod = injector.getInstance(annotatedTestMethodKey);
  98. assertNotNull("annotatedTestMethod", annotatedTestMethod.myMethod());
  99. assertNotNull("annotatedTestMethod", annotatedTestMethod.myOtherMethod());
  100. assertSame(REQUESTS_COUNT, 6, guiceCounter.getRequestsCount());
  101. }
  102. }