/core/src/test/java/org/jclouds/logging/config/BindLoggersAnnotatedWithResourceTest.java

http://github.com/jclouds/jclouds · Java · 137 lines · 96 code · 25 blank · 16 comment · 0 complexity · 346a26eb6214ad328cbedb9101872b33 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.jclouds.logging.config;
  18. import static com.google.inject.matcher.Matchers.any;
  19. import static org.easymock.EasyMock.createMock;
  20. import static org.testng.Assert.assertEquals;
  21. import java.lang.reflect.Field;
  22. import java.util.Set;
  23. import javax.annotation.Resource;
  24. import javax.inject.Inject;
  25. import javax.inject.Named;
  26. import org.jclouds.logging.Logger;
  27. import org.jclouds.logging.config.BindLoggersAnnotatedWithResource.AssignLoggerToField;
  28. import org.jclouds.logging.config.BindLoggersAnnotatedWithResource.LoggerFieldsAnnotatedWithResource;
  29. import org.jclouds.logging.jdk.JDKLogger;
  30. import org.testng.annotations.BeforeMethod;
  31. import org.testng.annotations.Test;
  32. import com.google.inject.AbstractModule;
  33. import com.google.inject.Guice;
  34. import com.google.inject.Injector;
  35. @Test
  36. public class BindLoggersAnnotatedWithResourceTest {
  37. private BindLoggersAnnotatedWithResource blawr;
  38. public static class A {
  39. @Resource
  40. private Logger logger = Logger.NULL;
  41. }
  42. private static class B {
  43. @Resource
  44. private Logger logger = Logger.NULL;
  45. @Resource
  46. @Named("blogger")
  47. private Logger blogger = Logger.NULL;
  48. }
  49. @BeforeMethod
  50. void createBlawr() {
  51. blawr = new BindLoggersAnnotatedWithResource(new JDKLogger.JDKLoggerFactory());
  52. }
  53. @Test
  54. void testHear() {
  55. Injector i = Guice.createInjector(new AbstractModule() {
  56. @Override
  57. protected void configure() {
  58. bindListener(any(), blawr);
  59. }
  60. });
  61. assertEquals(i.getInstance(A.class).logger.getCategory(), getClass().getName() + "$A");
  62. assertEquals(i.getInstance(B.class).logger.getCategory(), getClass().getName() + "$B");
  63. assertEquals(i.getInstance(B.class).blogger.getCategory(), "blogger");
  64. }
  65. @Test
  66. public void testAssignLoggerToField() throws SecurityException, NoSuchFieldException,
  67. IllegalArgumentException, IllegalAccessException {
  68. Logger logger = createMock(Logger.class);
  69. A a = new A();
  70. Field field = A.class.getDeclaredField("logger");
  71. AssignLoggerToField<A> assigner = new AssignLoggerToField<A>(logger, field);
  72. assigner.afterInjection(a);
  73. assert field.get(a).equals(logger);
  74. }
  75. @Test
  76. public void testLoggerFieldsAnnotatedWithResource() throws SecurityException,
  77. NoSuchFieldException {
  78. LoggerFieldsAnnotatedWithResource predicate = new LoggerFieldsAnnotatedWithResource();
  79. assert predicate.apply(A.class.getDeclaredField("logger"));
  80. }
  81. public static class C {
  82. @Inject
  83. private Logger logger = Logger.NULL;
  84. }
  85. @Test
  86. public void testLoggerFieldsAnnotatedWithInjectReturnsNull() throws SecurityException,
  87. NoSuchFieldException {
  88. LoggerFieldsAnnotatedWithResource predicate = new LoggerFieldsAnnotatedWithResource();
  89. assert !predicate.apply(C.class.getDeclaredField("logger"));
  90. }
  91. public static class D {
  92. @Resource
  93. private Logger logger = Logger.NULL;
  94. @Resource
  95. private Logger blogger;
  96. }
  97. @Test
  98. public void testGetLoggerFieldsAnnotatedWithResourceNoLogger() {
  99. Set<Field> fields = blawr.getLoggerFieldsAnnotatedWithResource(this.getClass());
  100. assertEquals(fields.size(), 0);
  101. }
  102. @Test
  103. public void testGetLoggerFieldsAnnotatedWithResourceOneLogger() {
  104. Set<Field> fields = blawr.getLoggerFieldsAnnotatedWithResource(A.class);
  105. assertEquals(fields.size(), 1);
  106. }
  107. @Test
  108. public void testGetLoggerFieldsAnnotatedWithResourceTwoLoggers() {
  109. Set<Field> fields = blawr.getLoggerFieldsAnnotatedWithResource(D.class);
  110. assertEquals(fields.size(), 2);
  111. }
  112. }