/core-common/src/test/java/org/glassfish/jersey/internal/util/PropertiesHelperTest.java

http://github.com/jersey/jersey · Java · 200 lines · 119 code · 33 blank · 48 comment · 0 complexity · 422b74fe9ed406ab3964efe1a6522530 MD5 · raw file

  1. /*
  2. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
  3. *
  4. * Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved.
  5. *
  6. * The contents of this file are subject to the terms of either the GNU
  7. * General Public License Version 2 only ("GPL") or the Common Development
  8. * and Distribution License("CDDL") (collectively, the "License"). You
  9. * may not use this file except in compliance with the License. You can
  10. * obtain a copy of the License at
  11. * https://oss.oracle.com/licenses/CDDL+GPL-1.1
  12. * or LICENSE.txt. See the License for the specific
  13. * language governing permissions and limitations under the License.
  14. *
  15. * When distributing the software, include this License Header Notice in each
  16. * file and include the License file at LICENSE.txt.
  17. *
  18. * GPL Classpath Exception:
  19. * Oracle designates this particular file as subject to the "Classpath"
  20. * exception as provided by Oracle in the GPL Version 2 section of the License
  21. * file that accompanied this code.
  22. *
  23. * Modifications:
  24. * If applicable, add the following below the License Header, with the fields
  25. * enclosed by brackets [] replaced by your own identifying information:
  26. * "Portions Copyright [year] [name of copyright owner]"
  27. *
  28. * Contributor(s):
  29. * If you wish your version of this file to be governed by only the CDDL or
  30. * only the GPL Version 2, indicate your decision by adding "[Contributor]
  31. * elects to include this software in this distribution under the [CDDL or GPL
  32. * Version 2] license." If you don't indicate a single choice of license, a
  33. * recipient has the option to distribute your version of this file under
  34. * either the CDDL, the GPL Version 2 or to extend the choice of license to
  35. * its licensees as provided above. However, if you add GPL Version 2 code
  36. * and therefore, elected the GPL Version 2 license, then the option applies
  37. * only if the new code is made subject to such option by the copyright
  38. * holder.
  39. */
  40. package org.glassfish.jersey.internal.util;
  41. import java.util.HashMap;
  42. import java.util.Map;
  43. import javax.ws.rs.RuntimeType;
  44. import org.junit.Test;
  45. import static org.junit.Assert.assertEquals;
  46. import static org.junit.Assert.assertNull;
  47. /**
  48. * @author Miroslav Fuksa
  49. *
  50. */
  51. public class PropertiesHelperTest {
  52. @Test
  53. public void testGetValueWithType() {
  54. Map<String, String> properties = new HashMap<>();
  55. final String key = "my.property";
  56. properties.put(key, "15");
  57. assertEquals("15", PropertiesHelper.getValue(properties, key, String.class, null));
  58. assertEquals(Integer.valueOf(15), PropertiesHelper.getValue(properties, key, Integer.class, null));
  59. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, key, Long.class, null));
  60. }
  61. @Test
  62. public void testGetValueWithTypeAndDefaultValue() {
  63. Map<String, String> properties = new HashMap<>();
  64. final String key = "my.property";
  65. properties.put(key, "15");
  66. assertEquals("15", PropertiesHelper.getValue(properties, key, "80", String.class, null));
  67. assertEquals(Integer.valueOf(30), PropertiesHelper.getValue(properties, "non.existing", 30, Integer.class, null));
  68. assertEquals(Long.valueOf(20), PropertiesHelper.getValue(properties, "non.existing", 20L, Long.class, null));
  69. }
  70. @Test
  71. public void testGetValueWithDefaultValue() {
  72. Map<String, String> properties = new HashMap<>();
  73. final String key = "my.property";
  74. properties.put(key, "15");
  75. assertEquals("15", PropertiesHelper.getValue(properties, key, "80", null));
  76. assertEquals(Integer.valueOf(30), PropertiesHelper.getValue(properties, "non.existing", 30, null));
  77. assertEquals(Long.valueOf(20), PropertiesHelper.getValue(properties, "non.existing", 20L, null));
  78. }
  79. @Test
  80. public void testGetValueByIgnoredRuntime() {
  81. Map<String, String> properties = new HashMap<>();
  82. final String key = "my.property";
  83. properties.put(key, "15");
  84. assertEquals("15", PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, String.class, null));
  85. assertEquals(Integer.valueOf(15), PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, Integer.class,
  86. null));
  87. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, RuntimeType.SERVER, key, Long.class, null));
  88. }
  89. @Test
  90. public void testGetValueByRuntime1() {
  91. Map<String, String> properties = new HashMap<>();
  92. final String key = "jersey.config.my.property";
  93. properties.put(key, "15");
  94. properties.put("jersey.config.client.my.property", "999");
  95. properties.put("jersey.config.server.my.property", "1");
  96. assertEquals("999", PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, String.class, null));
  97. assertEquals(Integer.valueOf(999), PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, Integer.class,
  98. null));
  99. assertEquals(Long.valueOf(1), PropertiesHelper.getValue(properties, RuntimeType.SERVER, key, Long.class, null));
  100. assertEquals("15", PropertiesHelper.getValue(properties, key, String.class, null));
  101. assertEquals(Integer.valueOf(15), PropertiesHelper.getValue(properties, key, Integer.class, null));
  102. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, key, Long.class, null));
  103. }
  104. @Test
  105. public void testGetValueByRuntime2() {
  106. Map<String, String> properties = new HashMap<>();
  107. final String key = "jersey.config.my.property";
  108. properties.put(key, "15");
  109. properties.put("jersey.config.client.my.property", "999");
  110. assertEquals("999", PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, String.class, null));
  111. assertEquals(Integer.valueOf(999), PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, Integer.class,
  112. null));
  113. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, RuntimeType.SERVER, key, Long.class, null));
  114. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, RuntimeType.SERVER, key, 800L, Long.class,
  115. null));
  116. assertEquals("15", PropertiesHelper.getValue(properties, key, String.class, null));
  117. assertEquals(Integer.valueOf(15), PropertiesHelper.getValue(properties, key, Integer.class, null));
  118. assertEquals(Long.valueOf(15), PropertiesHelper.getValue(properties, key, Long.class, null));
  119. }
  120. @Test
  121. public void testGetValueByRuntime3() {
  122. Map<String, String> properties = new HashMap<>();
  123. final String key = "jersey.config.my.property";
  124. properties.put("jersey.config.client.my.property", "999");
  125. assertEquals("999", PropertiesHelper.getValue(properties, RuntimeType.CLIENT, key, String.class, null));
  126. assertNull(PropertiesHelper.getValue(properties, key, String.class, null));
  127. assertNull(PropertiesHelper.getValue(properties, RuntimeType.SERVER, key, String.class, null));
  128. assertEquals("55", PropertiesHelper.getValue(properties, key, "55", String.class, null));
  129. }
  130. /**
  131. * There is a value but of different type and no way how to transform.
  132. */
  133. @Test
  134. public void testGetValueNoTransformation() {
  135. Map<String, Object> properties = new HashMap<>();
  136. final String key = "my.property";
  137. properties.put(key, Boolean.TRUE);
  138. assertNull(PropertiesHelper.getValue(properties, key, Integer.class, null));
  139. //look at System.out, there is a message:
  140. // WARNING: There is no way how to transform value "true" [java.lang.Boolean] to type [java.lang.Integer].
  141. }
  142. @Test
  143. public void testFallback() {
  144. Map<String, String> fallback = new HashMap<>();
  145. fallback.put("my.property", "my.old.property");
  146. Map<String, Object> properties = new HashMap<>();
  147. properties.put("my.old.property", "foo");
  148. assertEquals("foo", PropertiesHelper.getValue(properties, "my.property", String.class, fallback));
  149. }
  150. @Test
  151. public void testPropertyNameDeclination() {
  152. String myProperty = "jersey.config.my.property";
  153. String myClientProperty = "jersey.config.client.my.property";
  154. String myServerProperty = "jersey.config.server.my.property";
  155. String myNonJerseyProperty = "my.property";
  156. assertEquals(myProperty, PropertiesHelper.getPropertyNameForRuntime(myProperty, null));
  157. assertEquals(myClientProperty, PropertiesHelper.getPropertyNameForRuntime(myProperty, RuntimeType.CLIENT));
  158. assertEquals(myServerProperty, PropertiesHelper.getPropertyNameForRuntime(myProperty, RuntimeType.SERVER));
  159. assertEquals(myServerProperty, PropertiesHelper.getPropertyNameForRuntime(myServerProperty, RuntimeType.SERVER));
  160. assertEquals(myServerProperty, PropertiesHelper.getPropertyNameForRuntime(myServerProperty, RuntimeType.CLIENT));
  161. assertEquals(myClientProperty, PropertiesHelper.getPropertyNameForRuntime(myClientProperty, RuntimeType.SERVER));
  162. assertEquals(myClientProperty, PropertiesHelper.getPropertyNameForRuntime(myClientProperty, RuntimeType.CLIENT));
  163. assertEquals(myNonJerseyProperty, PropertiesHelper.getPropertyNameForRuntime(myNonJerseyProperty, RuntimeType.CLIENT));
  164. assertEquals(myNonJerseyProperty, PropertiesHelper.getPropertyNameForRuntime(myNonJerseyProperty, RuntimeType.CLIENT));
  165. assertEquals(myNonJerseyProperty, PropertiesHelper.getPropertyNameForRuntime(myNonJerseyProperty, null));
  166. }
  167. }