/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestMachineList.java

http://github.com/apache/hadoop-common · Java · 291 lines · 181 code · 53 blank · 57 comment · 1 complexity · 256ad31efcb17793bcfb88dde878f428 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, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. package org.apache.hadoop.util;
  19. import static org.junit.Assert.assertEquals;
  20. import static org.junit.Assert.assertFalse;
  21. import static org.junit.Assert.assertTrue;
  22. import static org.junit.Assert.fail;
  23. import java.net.InetAddress;
  24. import java.net.UnknownHostException;
  25. import java.util.Collection;
  26. import org.junit.Test;
  27. import org.mockito.Mockito;
  28. public class TestMachineList {
  29. private static String IP_LIST = "10.119.103.110,10.119.103.112,10.119.103.114";
  30. private static String IP_LIST_SPACES =
  31. " 10.119.103.110 , 10.119.103.112,10.119.103.114 ,10.119.103.110, ";
  32. private static String CIDR_LIST = "10.222.0.0/16,10.241.23.0/24";
  33. private static String CIDR_LIST1 = "10.222.0.0/16";
  34. private static String CIDR_LIST2 = "10.241.23.0/24";
  35. private static String INVALID_CIDR = "10.241/24";
  36. private static String IP_CIDR_LIST =
  37. "10.222.0.0/16,10.119.103.110,10.119.103.112,10.119.103.114,10.241.23.0/24";
  38. private static String HOST_LIST = "host1,host4";
  39. private static String HOSTNAME_IP_CIDR_LIST =
  40. "host1,10.222.0.0/16,10.119.103.110,10.119.103.112,10.119.103.114,10.241.23.0/24,host4,";
  41. @Test
  42. public void testWildCard() {
  43. //create MachineList with a list of of IPs
  44. MachineList ml = new MachineList("*");
  45. //test for inclusion with any IP
  46. assertTrue(ml.includes("10.119.103.112"));
  47. assertTrue(ml.includes("1.2.3.4"));
  48. }
  49. @Test
  50. public void testIPList() {
  51. //create MachineList with a list of of IPs
  52. MachineList ml = new MachineList(IP_LIST);
  53. //test for inclusion with an known IP
  54. assertTrue(ml.includes("10.119.103.112"));
  55. //test for exclusion with an unknown IP
  56. assertFalse(ml.includes("10.119.103.111"));
  57. }
  58. @Test
  59. public void testIPListSpaces() {
  60. //create MachineList with a ip string which has duplicate ip and spaces
  61. MachineList ml = new MachineList(IP_LIST_SPACES);
  62. //test for inclusion with an known IP
  63. assertTrue(ml.includes("10.119.103.112"));
  64. //test for exclusion with an unknown IP
  65. assertFalse(ml.includes("10.119.103.111"));
  66. }
  67. @Test
  68. public void testStaticIPHostNameList()throws UnknownHostException {
  69. //create MachineList with a list of of Hostnames
  70. InetAddress addressHost1 = InetAddress.getByName("1.2.3.1");
  71. InetAddress addressHost4 = InetAddress.getByName("1.2.3.4");
  72. MachineList.InetAddressFactory addressFactory =
  73. Mockito.mock(MachineList.InetAddressFactory.class);
  74. Mockito.when(addressFactory.getByName("host1")).thenReturn(addressHost1);
  75. Mockito.when(addressFactory.getByName("host4")).thenReturn(addressHost4);
  76. MachineList ml = new MachineList(
  77. StringUtils.getTrimmedStringCollection(HOST_LIST), addressFactory);
  78. //test for inclusion with an known IP
  79. assertTrue(ml.includes("1.2.3.4"));
  80. //test for exclusion with an unknown IP
  81. assertFalse(ml.includes("1.2.3.5"));
  82. }
  83. @Test
  84. public void testHostNames() throws UnknownHostException {
  85. //create MachineList with a list of of Hostnames
  86. InetAddress addressHost1 = InetAddress.getByName("1.2.3.1");
  87. InetAddress addressHost4 = InetAddress.getByName("1.2.3.4");
  88. InetAddress addressMockHost4 = Mockito.mock(InetAddress.class);
  89. Mockito.when(addressMockHost4.getCanonicalHostName()).thenReturn("differentName");
  90. InetAddress addressMockHost5 = Mockito.mock(InetAddress.class);
  91. Mockito.when(addressMockHost5.getCanonicalHostName()).thenReturn("host5");
  92. MachineList.InetAddressFactory addressFactory =
  93. Mockito.mock(MachineList.InetAddressFactory.class);
  94. Mockito.when(addressFactory.getByName("1.2.3.4")).thenReturn(addressMockHost4);
  95. Mockito.when(addressFactory.getByName("1.2.3.5")).thenReturn(addressMockHost5);
  96. Mockito.when(addressFactory.getByName("host1")).thenReturn(addressHost1);
  97. Mockito.when(addressFactory.getByName("host4")).thenReturn(addressHost4);
  98. MachineList ml = new MachineList(
  99. StringUtils.getTrimmedStringCollection(HOST_LIST), addressFactory );
  100. //test for inclusion with an known IP
  101. assertTrue(ml.includes("1.2.3.4"));
  102. //test for exclusion with an unknown IP
  103. assertFalse(ml.includes("1.2.3.5"));
  104. }
  105. @Test
  106. public void testHostNamesReverserIpMatch() throws UnknownHostException {
  107. //create MachineList with a list of of Hostnames
  108. InetAddress addressHost1 = InetAddress.getByName("1.2.3.1");
  109. InetAddress addressHost4 = InetAddress.getByName("1.2.3.4");
  110. InetAddress addressMockHost4 = Mockito.mock(InetAddress.class);
  111. Mockito.when(addressMockHost4.getCanonicalHostName()).thenReturn("host4");
  112. InetAddress addressMockHost5 = Mockito.mock(InetAddress.class);
  113. Mockito.when(addressMockHost5.getCanonicalHostName()).thenReturn("host5");
  114. MachineList.InetAddressFactory addressFactory =
  115. Mockito.mock(MachineList.InetAddressFactory.class);
  116. Mockito.when(addressFactory.getByName("1.2.3.4")).thenReturn(addressMockHost4);
  117. Mockito.when(addressFactory.getByName("1.2.3.5")).thenReturn(addressMockHost5);
  118. Mockito.when(addressFactory.getByName("host1")).thenReturn(addressHost1);
  119. Mockito.when(addressFactory.getByName("host4")).thenReturn(addressHost4);
  120. MachineList ml = new MachineList(
  121. StringUtils.getTrimmedStringCollection(HOST_LIST), addressFactory );
  122. //test for inclusion with an known IP
  123. assertTrue(ml.includes("1.2.3.4"));
  124. //test for exclusion with an unknown IP
  125. assertFalse(ml.includes("1.2.3.5"));
  126. }
  127. @Test
  128. public void testCIDRs() {
  129. //create MachineList with a list of of ip ranges specified in CIDR format
  130. MachineList ml = new MachineList(CIDR_LIST);
  131. //test for inclusion/exclusion
  132. assertFalse(ml.includes("10.221.255.255"));
  133. assertTrue(ml.includes("10.222.0.0"));
  134. assertTrue(ml.includes("10.222.0.1"));
  135. assertTrue(ml.includes("10.222.0.255"));
  136. assertTrue(ml.includes("10.222.255.0"));
  137. assertTrue(ml.includes("10.222.255.254"));
  138. assertTrue(ml.includes("10.222.255.255"));
  139. assertFalse(ml.includes("10.223.0.0"));
  140. assertTrue(ml.includes("10.241.23.0"));
  141. assertTrue(ml.includes("10.241.23.1"));
  142. assertTrue(ml.includes("10.241.23.254"));
  143. assertTrue(ml.includes("10.241.23.255"));
  144. //test for exclusion with an unknown IP
  145. assertFalse(ml.includes("10.119.103.111"));
  146. }
  147. @Test
  148. public void testCIDRWith16bitmask() {
  149. //create MachineList with a list of of ip ranges specified in CIDR format
  150. MachineList ml = new MachineList(CIDR_LIST1);
  151. //test for inclusion/exclusion
  152. assertFalse(ml.includes("10.221.255.255"));
  153. assertTrue(ml.includes("10.222.0.0"));
  154. assertTrue(ml.includes("10.222.0.1"));
  155. assertTrue(ml.includes("10.222.0.255"));
  156. assertTrue(ml.includes("10.222.255.0"));
  157. assertTrue(ml.includes("10.222.255.254"));
  158. assertTrue(ml.includes("10.222.255.255"));
  159. assertFalse(ml.includes("10.223.0.0"));
  160. //test for exclusion with an unknown IP
  161. assertFalse(ml.includes("10.119.103.111"));
  162. }
  163. @Test
  164. public void testCIDRWith8BitMask() {
  165. //create MachineList with a list of of ip ranges specified in CIDR format
  166. MachineList ml = new MachineList(CIDR_LIST2);
  167. //test for inclusion/exclusion
  168. assertFalse(ml.includes("10.241.22.255"));
  169. assertTrue(ml.includes("10.241.23.0"));
  170. assertTrue(ml.includes("10.241.23.1"));
  171. assertTrue(ml.includes("10.241.23.254"));
  172. assertTrue(ml.includes("10.241.23.255"));
  173. assertFalse(ml.includes("10.241.24.0"));
  174. //test for exclusion with an unknown IP
  175. assertFalse(ml.includes("10.119.103.111"));
  176. }
  177. //test invalid cidr
  178. @Test
  179. public void testInvalidCIDR() {
  180. //create MachineList with an Invalid CIDR
  181. try {
  182. new MachineList(INVALID_CIDR);
  183. fail("Expected IllegalArgumentException");
  184. } catch (IllegalArgumentException e) {
  185. //expected Exception
  186. } catch (Throwable t) {
  187. fail ("Expected only IllegalArgumentException");
  188. }
  189. }
  190. //
  191. @Test
  192. public void testIPandCIDRs() {
  193. //create MachineList with a list of of ip ranges and ip addresses
  194. MachineList ml = new MachineList(IP_CIDR_LIST);
  195. //test for inclusion with an known IP
  196. assertTrue(ml.includes("10.119.103.112"));
  197. //test for exclusion with an unknown IP
  198. assertFalse(ml.includes("10.119.103.111"));
  199. //CIDR Ranges
  200. assertFalse(ml.includes("10.221.255.255"));
  201. assertTrue(ml.includes("10.222.0.0"));
  202. assertTrue(ml.includes("10.222.255.255"));
  203. assertFalse(ml.includes("10.223.0.0"));
  204. assertFalse(ml.includes("10.241.22.255"));
  205. assertTrue(ml.includes("10.241.23.0"));
  206. assertTrue(ml.includes("10.241.23.255"));
  207. assertFalse(ml.includes("10.241.24.0"));
  208. }
  209. @Test
  210. public void testHostNameIPandCIDRs() {
  211. //create MachineList with a mix of ip addresses , hostnames and ip ranges
  212. MachineList ml = new MachineList(HOSTNAME_IP_CIDR_LIST);
  213. //test for inclusion with an known IP
  214. assertTrue(ml.includes("10.119.103.112"));
  215. //test for exclusion with an unknown IP
  216. assertFalse(ml.includes("10.119.103.111"));
  217. //CIDR Ranges
  218. assertFalse(ml.includes("10.221.255.255"));
  219. assertTrue(ml.includes("10.222.0.0"));
  220. assertTrue(ml.includes("10.222.255.255"));
  221. assertFalse(ml.includes("10.223.0.0"));
  222. assertFalse(ml.includes("10.241.22.255"));
  223. assertTrue(ml.includes("10.241.23.0"));
  224. assertTrue(ml.includes("10.241.23.255"));
  225. assertFalse(ml.includes("10.241.24.0"));
  226. }
  227. @Test
  228. public void testGetCollection() {
  229. //create MachineList with a mix of ip addresses , hostnames and ip ranges
  230. MachineList ml = new MachineList(HOSTNAME_IP_CIDR_LIST);
  231. Collection<String> col = ml.getCollection();
  232. //test getCollectionton to return the full collection
  233. assertEquals(7,ml.getCollection().size());
  234. for (String item:StringUtils.getTrimmedStringCollection(HOSTNAME_IP_CIDR_LIST)) {
  235. assertTrue(col.contains(item));
  236. }
  237. }
  238. }