/test/unit/org/apache/cassandra/locator/InetAddressAndPortTest.java

https://github.com/apache/cassandra · Java · 182 lines · 126 code · 29 blank · 27 comment · 0 complexity · 10e0dc1060a2bc02f9b4e8dbe48df7e8 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.cassandra.locator;
  19. import java.net.InetAddress;
  20. import java.net.UnknownHostException;
  21. import org.junit.Test;
  22. import static org.junit.Assert.assertEquals;
  23. import static org.junit.Assert.assertTrue;
  24. import static org.junit.Assert.fail;
  25. public class InetAddressAndPortTest
  26. {
  27. private static interface ThrowingRunnable
  28. {
  29. public void run() throws Throwable;
  30. }
  31. @Test
  32. public void getByNameIPv4Test() throws Exception
  33. {
  34. //Negative port
  35. shouldThrow(() -> InetAddressAndPort.getByName("127.0.0.1:-1"), IllegalArgumentException.class);
  36. //Too large port
  37. shouldThrow(() -> InetAddressAndPort.getByName("127.0.0.1:65536"), IllegalArgumentException.class);
  38. //bad address, caught by InetAddress
  39. shouldThrow(() -> InetAddressAndPort.getByName("127.0.0.1.0"), UnknownHostException.class);
  40. //Test default port
  41. InetAddressAndPort address = InetAddressAndPort.getByName("127.0.0.1");
  42. assertEquals(InetAddress.getByName("127.0.0.1"), address.getAddress());
  43. assertEquals(InetAddressAndPort.defaultPort, address.getPort());
  44. //Test overriding default port
  45. address = InetAddressAndPort.getByName("127.0.0.1:42");
  46. assertEquals(InetAddress.getByName("127.0.0.1"), address.getAddress());
  47. assertEquals(42, address.getPort());
  48. }
  49. @Test
  50. public void getByNameIPv6Test() throws Exception
  51. {
  52. //Negative port
  53. shouldThrow(() -> InetAddressAndPort.getByName("[2001:0db8:0000:0000:0000:ff00:0042:8329]:-1"), IllegalArgumentException.class);
  54. //Too large port
  55. shouldThrow(() -> InetAddressAndPort.getByName("[2001:0db8:0000:0000:0000:ff00:0042:8329]:65536"), IllegalArgumentException.class);
  56. //bad address, caught by InetAddress
  57. shouldThrow(() -> InetAddressAndPort.getByName("2001:0db8:0000:0000:0000:ff00:0042:8329:8329"), UnknownHostException.class);
  58. //Test default port
  59. InetAddressAndPort address = InetAddressAndPort.getByName("2001:0db8:0000:0000:0000:ff00:0042:8329");
  60. assertEquals(InetAddress.getByName("2001:0db8:0000:0000:0000:ff00:0042:8329"), address.getAddress());
  61. assertEquals(InetAddressAndPort.defaultPort, address.getPort());
  62. //Test overriding default port
  63. address = InetAddressAndPort.getByName("[2001:0db8:0000:0000:0000:ff00:0042:8329]:42");
  64. assertEquals(InetAddress.getByName("2001:0db8:0000:0000:0000:ff00:0042:8329"), address.getAddress());
  65. assertEquals(42, address.getPort());
  66. }
  67. @Test
  68. public void compareAndEqualsAndHashCodeTest() throws Exception
  69. {
  70. InetAddressAndPort address1 = InetAddressAndPort.getByName("127.0.0.1:42");
  71. InetAddressAndPort address4 = InetAddressAndPort.getByName("127.0.0.1:43");
  72. InetAddressAndPort address5 = InetAddressAndPort.getByName("127.0.0.1:41");
  73. InetAddressAndPort address6 = InetAddressAndPort.getByName("127.0.0.2:42");
  74. InetAddressAndPort address7 = InetAddressAndPort.getByName("127.0.0.0:42");
  75. assertEquals(0, address1.compareTo(address1));
  76. assertEquals(-1, address1.compareTo(address4));
  77. assertEquals(1, address1.compareTo(address5));
  78. assertEquals(-1, address1.compareTo(address6));
  79. assertEquals(1, address1.compareTo(address7));
  80. assertEquals(address1, address1);
  81. assertEquals(address1.hashCode(), address1.hashCode());
  82. assertEquals(address1, InetAddressAndPort.getByName("127.0.0.1:42"));
  83. assertEquals(address1.hashCode(), InetAddressAndPort.getByName("127.0.0.1:42").hashCode());
  84. assertEquals(address1, InetAddressAndPort.getByNameOverrideDefaults("127.0.0.1", 42));
  85. assertEquals(address1.hashCode(), InetAddressAndPort.getByNameOverrideDefaults("127.0.0.1", 42).hashCode());
  86. int originalPort = InetAddressAndPort.defaultPort;
  87. InetAddressAndPort.initializeDefaultPort(42);
  88. try
  89. {
  90. assertEquals(address1, InetAddressAndPort.getByName("127.0.0.1"));
  91. assertEquals(address1.hashCode(), InetAddressAndPort.getByName("127.0.0.1").hashCode());
  92. }
  93. finally
  94. {
  95. InetAddressAndPort.initializeDefaultPort(originalPort);
  96. }
  97. assertTrue(!address1.equals(address4));
  98. assertTrue(!address1.equals(address5));
  99. assertTrue(!address1.equals(address6));
  100. assertTrue(!address1.equals(address7));
  101. }
  102. @Test
  103. public void toStringTest() throws Exception
  104. {
  105. InetAddress resolvedIPv4 = InetAddress.getByAddress("resolved4", new byte[] { 127, 0, 0, 1});
  106. assertEquals("resolved4", resolvedIPv4.getHostName());
  107. assertEquals("resolved4/127.0.0.1:42", InetAddressAndPort.getByAddressOverrideDefaults(resolvedIPv4, 42).toString());
  108. InetAddress strangeIPv4 = InetAddress.getByAddress("strange/host/name4", new byte[] { 127, 0, 0, 1});
  109. assertEquals("strange/host/name4", strangeIPv4.getHostName());
  110. assertEquals("strange/host/name4/127.0.0.1:42", InetAddressAndPort.getByAddressOverrideDefaults(strangeIPv4, 42).toString());
  111. InetAddress unresolvedIPv4 = InetAddress.getByAddress(null, new byte[] { 127, 0, 0, 1}); // don't call getHostName and resolve
  112. assertEquals("/127.0.0.1:42", InetAddressAndPort.getByAddressOverrideDefaults(unresolvedIPv4, 42).toString());
  113. InetAddress resolvedIPv6 = InetAddress.getByAddress("resolved6", new byte[] { 0x20, 0x01, 0xd, (byte) 0xb8, 0, 0, 0, 0, 0, 0, (byte) 0xff, 0, 0x00, 0x42, (byte) 0x83, 0x29});
  114. assertEquals("resolved6", resolvedIPv6.getHostName());
  115. assertEquals("resolved6/[2001:db8:0:0:0:ff00:42:8329]:42", InetAddressAndPort.getByAddressOverrideDefaults(resolvedIPv6, 42).toString());
  116. InetAddress strangeIPv6 = InetAddress.getByAddress("strange/host/name6", new byte[] { 0x20, 0x01, 0xd, (byte) 0xb8, 0, 0, 0, 0, 0, 0, (byte) 0xff, 0, 0x00, 0x42, (byte) 0x83, 0x29});
  117. assertEquals("strange/host/name6", strangeIPv6.getHostName());
  118. assertEquals("strange/host/name6/[2001:db8:0:0:0:ff00:42:8329]:42", InetAddressAndPort.getByAddressOverrideDefaults(strangeIPv6, 42).toString());
  119. InetAddress unresolvedIPv6 = InetAddress.getByAddress(null, new byte[] { 0x20, 0x01, 0xd, (byte) 0xb8, 0, 0, 0, 0, 0, 0, (byte) 0xff, 0, 0x00, 0x42, (byte) 0x83, 0x29});
  120. assertEquals("/[2001:db8:0:0:0:ff00:42:8329]:42", InetAddressAndPort.getByAddressOverrideDefaults(unresolvedIPv6, 42).toString());
  121. }
  122. @Test
  123. public void getHostAddressAndPortTest() throws Exception
  124. {
  125. String ipv4withoutPort = "127.0.0.1";
  126. String ipv6withoutPort = "2001:db8:0:0:0:ff00:42:8329";
  127. String ipv4 = ipv4withoutPort + ":42";
  128. String ipv6 = "[" + ipv6withoutPort + "]:42";
  129. String ipv4forJMX = ipv4.replace("[", "_").replace("]", "_").replace(":","_");
  130. String ipv6forJMX = ipv6.replace("[", "_").replace("]", "_").replace(":","_");
  131. assertEquals(ipv4, InetAddressAndPort.getByName(ipv4).getHostAddressAndPort());
  132. assertEquals(ipv6, InetAddressAndPort.getByName(ipv6).getHostAddressAndPort());
  133. assertEquals(ipv4, InetAddressAndPort.getByName(ipv4).getHostAddress(true));
  134. assertEquals(ipv6, InetAddressAndPort.getByName(ipv6).getHostAddress(true));
  135. assertEquals(ipv4withoutPort, InetAddressAndPort.getByName(ipv4).getHostAddress(false));
  136. assertEquals(ipv6withoutPort, InetAddressAndPort.getByName(ipv6).getHostAddress(false));
  137. assertEquals(ipv4forJMX, InetAddressAndPort.getByName(ipv4).getHostAddressAndPortForJMX());
  138. assertEquals(ipv6forJMX, InetAddressAndPort.getByName(ipv6).getHostAddressAndPortForJMX());
  139. }
  140. private void shouldThrow(ThrowingRunnable t, Class expectedClass)
  141. {
  142. try
  143. {
  144. t.run();
  145. }
  146. catch (Throwable thrown)
  147. {
  148. assertEquals(thrown.getClass(), expectedClass);
  149. return;
  150. }
  151. fail("Runnable didn't throw");
  152. }
  153. }