/support/guice/src/test/java/org/apache/shiro/guice/BeanTypeListenerTest.java

https://github.com/apache/shiro · Java · 130 lines · 78 code · 24 blank · 28 comment · 0 complexity · 4ee5989508cebff2ea2d4f3e4773a8fc MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package org.apache.shiro.guice;
  20. import com.google.inject.ConfigurationException;
  21. import com.google.inject.Injector;
  22. import com.google.inject.Key;
  23. import com.google.inject.MembersInjector;
  24. import com.google.inject.Provider;
  25. import com.google.inject.TypeLiteral;
  26. import com.google.inject.name.Names;
  27. import com.google.inject.spi.Message;
  28. import com.google.inject.spi.TypeEncounter;
  29. import org.apache.shiro.SecurityUtils;
  30. import org.apache.shiro.aop.DefaultAnnotationResolver;
  31. import org.apache.shiro.crypto.cipher.BlowfishCipherService;
  32. import org.apache.shiro.guice.aop.ShiroAopModule;
  33. import org.apache.shiro.guice.web.ShiroWebModule;
  34. import org.junit.Test;
  35. import org.mockito.ArgumentCaptor;
  36. import java.util.Collections;
  37. import java.util.Map;
  38. import static org.junit.Assert.assertFalse;
  39. import static org.junit.Assert.assertNull;
  40. import static org.junit.Assert.assertSame;
  41. import static org.junit.Assert.assertTrue;
  42. import static org.mockito.Mockito.mock;
  43. import static org.mockito.Mockito.verify;
  44. import static org.mockito.Mockito.when;
  45. /**
  46. * Test Cases::
  47. * Test package matching
  48. * injects on classes in shiro package and sub packages
  49. * excludes classes in shiro-guice package and sub packages
  50. * Test that properties are set properly
  51. * ensure optional
  52. * ensure property names are correct
  53. * ensure "named" properties require a name, and unnamed do not
  54. */
  55. public class BeanTypeListenerTest {
  56. @Test
  57. public void testUnmatchedPackage() throws Exception {
  58. assertFalse(BeanTypeListener.MATCHER.matches(TypeLiteral.get(GuiceEnvironment.class)));
  59. assertFalse(BeanTypeListener.MATCHER.matches(TypeLiteral.get(ShiroWebModule.class)));
  60. assertFalse(BeanTypeListener.MATCHER.matches(TypeLiteral.get(ShiroAopModule.class)));
  61. }
  62. @Test
  63. public void testMatchedPackage() throws Exception {
  64. assertTrue(BeanTypeListener.MATCHER.matches(TypeLiteral.get(SecurityUtils.class)));
  65. assertTrue(BeanTypeListener.MATCHER.matches(TypeLiteral.get(DefaultAnnotationResolver.class)));
  66. assertTrue(BeanTypeListener.MATCHER.matches(TypeLiteral.get(BlowfishCipherService.class)));
  67. }
  68. @Test
  69. public void testPropertySetting() throws Exception {
  70. TypeEncounter<SomeInjectableBean> encounter = mock(TypeEncounter.class);
  71. Provider<Injector> injectorProvider = mock(Provider.class);
  72. Injector injector = mock(Injector.class);
  73. when(encounter.getProvider(Injector.class)).then(args -> injectorProvider);
  74. when(injectorProvider.get()).then(args -> injector);
  75. ArgumentCaptor<MembersInjector<SomeInjectableBean>> captor = ArgumentCaptor.forClass(MembersInjector.class);
  76. SecurityManager securityManager = mock(SecurityManager.class);
  77. String property = "myPropertyValue";
  78. when(injector.getInstance(Key.get(SecurityManager.class))).then(args -> securityManager);
  79. when(injector.getInstance(Key.get(String.class, Names.named("shiro.myProperty")))).then(args -> property);
  80. when(injector.getInstance(Key.get(String.class, Names.named("shiro.unavailableProperty"))))
  81. .thenThrow(new ConfigurationException(Collections.singleton(new Message("Not Available!"))));
  82. when((Map) injector.getInstance(BeanTypeListener.MAP_KEY)).then(args -> Collections.EMPTY_MAP);
  83. BeanTypeListener underTest = new BeanTypeListener();
  84. underTest.hear(TypeLiteral.get(SomeInjectableBean.class), encounter);
  85. SomeInjectableBean bean = new SomeInjectableBean();
  86. verify(encounter).register(captor.capture());
  87. captor.getValue().injectMembers(bean);
  88. assertSame(securityManager, bean.securityManager);
  89. assertSame(property, bean.myProperty);
  90. assertNull(bean.unavailableProperty);
  91. }
  92. public static class SomeInjectableBean {
  93. private SecurityManager securityManager;
  94. private String myProperty;
  95. private String unavailableProperty;
  96. public void setSecurityManager(SecurityManager securityManager) {
  97. this.securityManager = securityManager;
  98. }
  99. public void setMyProperty(String myProperty) {
  100. this.myProperty = myProperty;
  101. }
  102. public void setUnavailableProperty(String unavailableProperty) {
  103. this.unavailableProperty = unavailableProperty;
  104. }
  105. }
  106. }