/modules/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/Inet6AddressTest.java

https://github.com/apache/harmony-classlib · Java · 966 lines · 602 code · 149 blank · 215 comment · 9 complexity · 241fabbd85c990240d8fcde7bdbdce30 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.apache.harmony.luni.tests.java.net;
  18. import java.io.Serializable;
  19. import java.net.Inet6Address;
  20. import java.net.InetAddress;
  21. import java.net.NetworkInterface;
  22. import java.net.UnknownHostException;
  23. import org.apache.harmony.testframework.serialization.SerializationTest;
  24. import org.apache.harmony.testframework.serialization.SerializationTest.SerializableAssert;
  25. public class Inet6AddressTest extends junit.framework.TestCase {
  26. /**
  27. * @tests java.net.Inet6Address#isMulticastAddress()
  28. */
  29. public void test_isMulticastAddress() throws Exception {
  30. String addrName = "";
  31. InetAddress addr = null;
  32. // IP V6 regular multicast and non-multicast tests
  33. //
  34. // Create 2 IP v6 addresses and call "isMulticastAddress()"
  35. // A prefix of "11111111" means that the address is multicast
  36. // The first one will be one with the prefix the second without
  37. addrName = "FFFF::42:42"; // 11111111 = FFFF
  38. addr = InetAddress.getByName(addrName);
  39. assertTrue("Multicast address " + addrName + " not detected.", addr
  40. .isMulticastAddress());
  41. addrName = "42::42:42"; // an non-multicast address
  42. addr = InetAddress.getByName(addrName);
  43. assertTrue("Non multicast address " + addrName
  44. + " reporting as a multicast address.", !addr
  45. .isMulticastAddress());
  46. // IPv4-compatible IPv6 address tests
  47. //
  48. // Now create 2 IP v6 addresses that are IP v4 compatable
  49. // to IP v6 addresses. The address prefix for a multicast ip v4
  50. // address is 1110 for the last 16 bits ::d.d.d.d
  51. // We expect these to be false
  52. addrName = "::224.42.42.42"; // an ipv4 multicast addr 1110 = 224
  53. addr = InetAddress.getByName(addrName);
  54. assertTrue("IPv4 compatable address " + addrName
  55. + " reported incorrectly as multicast.", !addr
  56. .isMulticastAddress());
  57. addrName = "::42.42.42.42"; // an ipv4 non-multicast address
  58. addr = InetAddress.getByName(addrName);
  59. assertTrue("IPv4 compatable address " + addrName
  60. + " reported incorrectly as multicast.", !addr
  61. .isMulticastAddress());
  62. // IPv4-mapped IPv6 address tests
  63. //
  64. // Now create 2 IP v6 addresses that are IP v4 compatable
  65. // to IP v6 addresses. The address prefix for a multicast ip v4
  66. // address is 1110 for the last 16 bits ::FFFF:d.d.d.d
  67. addrName = "::FFFF:224.42.42.42"; // an ipv4 multicast addr 1110 =
  68. // 224
  69. addr = InetAddress.getByName(addrName);
  70. assertTrue("IPv4-mapped IPv6 multicast address " + addrName
  71. + " not detected.", addr.isMulticastAddress());
  72. addrName = "::FFFF:42.42.42.42"; // an ipv4 non-multicast address
  73. addr = InetAddress.getByName(addrName);
  74. assertTrue("IPv4-mapped IPv6 non-multicast address " + addrName
  75. + " reporting as a multicast address.", !addr
  76. .isMulticastAddress());
  77. }
  78. /**
  79. * @tests java.net.Inet6Address#isAnyLocalAddress()
  80. */
  81. public void test_isAnyLocalAddress() throws Exception {
  82. String addrName = "";
  83. InetAddress addr = null;
  84. // test to ensure that the unspecified address returns tru
  85. addrName = "::0"; // The unspecified address
  86. addr = InetAddress.getByName(addrName);
  87. assertTrue(
  88. "The unspecified (also known as wildcard and any local address) "
  89. + addrName + " not detected.", addr
  90. .isAnyLocalAddress());
  91. addrName = "::"; // another form of the unspecified address
  92. addr = InetAddress.getByName(addrName);
  93. assertTrue(
  94. "The unspecified (also known as wildcard and any local address) "
  95. + addrName + " not detected.", addr
  96. .isAnyLocalAddress());
  97. addrName = "::1"; // The loopback address
  98. addr = InetAddress.getByName(addrName);
  99. assertTrue("The addresses " + addrName
  100. + " incorrectly reporting an the unspecified address.",
  101. !addr.isAnyLocalAddress());
  102. }
  103. /**
  104. * @tests java.net.Inet6Address#isLoopbackAddress()
  105. */
  106. public void test_isLoopbackAddress() throws Exception {
  107. String addrName = "";
  108. // IP V6 regular address tests for loopback
  109. // The loopback address for IPv6 is ::1
  110. addrName = "::1";
  111. InetAddress addr = InetAddress.getByName(addrName);
  112. assertTrue("IPv6 loopback address " + addrName + " not detected.",
  113. addr.isLoopbackAddress());
  114. addrName = "::2";
  115. addr = InetAddress.getByName(addrName);
  116. assertTrue("IPv6 address incorrectly " + addrName
  117. + " detected as a loopback address.", !addr
  118. .isLoopbackAddress());
  119. // a loopback address should be 127.d.d.d
  120. addrName = "42:42::42:42";
  121. addr = InetAddress.getByName(addrName);
  122. assertTrue("IPv6 address incorrectly " + addrName
  123. + " detected as a loopback address.", !addr
  124. .isLoopbackAddress());
  125. // IPv4-compatible IPv6 address tests
  126. //
  127. // Now create 2 IP v6 addresses that are IP v4 compatable
  128. // to IP v6 addresses. The address prefix for a multicast ip v4
  129. // address is 1110 for the last 16 bits ::d.d.d.d
  130. // We expect these to be false, as they are not IPv4 addresses
  131. // a loopback address should be 127.d.d.d
  132. addrName = "::127.0.0.0";
  133. addr = InetAddress.getByName(addrName);
  134. assertTrue("IPv4-compatible IPv6 address " + addrName
  135. + " detected incorrectly as a loopback.", !addr
  136. .isLoopbackAddress());
  137. addrName = "::127.42.42.42"; // a loopback address should be
  138. // 127.d.d.d
  139. addr = InetAddress.getByName(addrName);
  140. assertTrue("IPv4-compatible IPv6 address " + addrName
  141. + " detected incorrectly as a loopback.", !addr
  142. .isLoopbackAddress());
  143. // a loopback address should be 127.d.d.d
  144. addrName = "::42.42.42.42";
  145. addr = InetAddress.getByName(addrName);
  146. assertTrue("IPv4-compatible IPv6 address " + addrName
  147. + " detected incorrectly as a loopback.", !addr
  148. .isLoopbackAddress());
  149. // IPv4-mapped IPv6 address tests
  150. //
  151. // Now create 2 IP v6 addresses that are IP v4 compatable
  152. // to IP v6 addresses. The address prefix for a multicast ip v4
  153. // address is 1110 for the last 16 bits ::FFFF:d.d.d.d
  154. // a loopback address should be 127.d.d.d
  155. addrName = "::FFFF:127.0.0.0";
  156. addr = InetAddress.getByName(addrName);
  157. assertTrue("IPv4-compatible IPv6 loopback address " + addrName
  158. + " not detected.", addr.isLoopbackAddress());
  159. // a loopback address should be 127.d.d.d
  160. addrName = "::FFFF:127.42.42.42";
  161. addr = InetAddress.getByName(addrName);
  162. assertTrue("IPv4-compatible IPv6 loopback address " + addrName
  163. + " not detected.", addr.isLoopbackAddress());
  164. // a loopback address should be 127.d.d.d
  165. addrName = "::FFFF:42.42.42.42";
  166. addr = InetAddress.getByName(addrName);
  167. assertTrue("IPv4-compatible IPv6 address incorrectly " + addrName
  168. + " detected as a loopback address.", !addr
  169. .isLoopbackAddress());
  170. }
  171. /**
  172. * @tests java.net.Inet6Address#isLinkLocalAddress()
  173. */
  174. public void test_isLinkLocalAddress() throws Exception {
  175. String addrName = "";
  176. // IP V6 regular address tests for link local addresses
  177. //
  178. // Link local addresses are FE80:: -
  179. // FEBF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF
  180. addrName = "FE80::0";
  181. InetAddress addr = InetAddress.getByName(addrName);
  182. assertTrue(
  183. "IPv6 link local address " + addrName + " not detected.",
  184. addr.isLinkLocalAddress());
  185. addrName = "FEBF::FFFF:FFFF:FFFF:FFFF";
  186. addr = InetAddress.getByName(addrName);
  187. assertTrue(
  188. "IPv6 link local address " + addrName + " not detected.",
  189. addr.isLinkLocalAddress());
  190. addrName = "FEC0::1";
  191. addr = InetAddress.getByName(addrName);
  192. assertTrue("IPv6 address " + addrName
  193. + " detected incorrectly as a link local address.", !addr
  194. .isLinkLocalAddress());
  195. addrName = "FD80::1:FFFF:FFFF:FFFF:FFFF";
  196. addr = InetAddress.getByName(addrName);
  197. assertTrue("IPv6 address " + addrName
  198. + " detected incorrectly as a link local address.", !addr
  199. .isLinkLocalAddress());
  200. addrName = "FE7F::FFFF:FFFF:FFFF:FFFF";
  201. addr = InetAddress.getByName(addrName);
  202. assertTrue("IPv6 address " + addrName
  203. + " detected incorrectly as a link local address.", !addr
  204. .isLinkLocalAddress());
  205. }
  206. /**
  207. * @tests java.net.Inet6Address#isSiteLocalAddress()
  208. */
  209. public void test_isSiteLocalAddress() throws Exception {
  210. String addrName = "";
  211. // IP V6 regular address tests for link local addresses
  212. //
  213. // Link local addresses are FEC0::0 through to
  214. // FEFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF
  215. addrName = "FEC0::0";
  216. InetAddress addr = InetAddress.getByName(addrName);
  217. assertTrue(
  218. "IPv6 site local address " + addrName + " not detected.",
  219. addr.isSiteLocalAddress());
  220. addrName = "FEFF::FFFF:FFFF:FFFF:FFFF:FFFF";
  221. addr = InetAddress.getByName(addrName);
  222. assertTrue(
  223. "IPv6 site local address " + addrName + " not detected.",
  224. addr.isSiteLocalAddress());
  225. addrName = "FEBF::FFFF:FFFF:FFFF:FFFF:FFFF";
  226. addr = InetAddress.getByName(addrName);
  227. assertTrue("IPv6 address " + addrName
  228. + " detected incorrectly as a site local address.", !addr
  229. .isSiteLocalAddress());
  230. addrName = "FFC0::0";
  231. addr = InetAddress.getByName(addrName);
  232. assertTrue("IPv6 address " + addrName
  233. + " detected incorrectly as a site local address.", !addr
  234. .isSiteLocalAddress());
  235. }
  236. /**
  237. * @tests java.net.Inet6Address#isMCGlobal()
  238. */
  239. public void test_isMCGlobal() throws Exception {
  240. String addrName = "";
  241. // IP V6 regular address tests for Mulitcase Global addresses
  242. //
  243. // Multicast global addresses are FFxE:/112 where x is
  244. // a set of flags, and the addition 112 bits make up
  245. // the global address space
  246. addrName = "FF0E::0";
  247. InetAddress addr = InetAddress.getByName(addrName);
  248. assertTrue("IPv6 global mutlicast address " + addrName
  249. + " not detected.", addr.isMCGlobal());
  250. addrName = "FF0E:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  251. addr = InetAddress.getByName(addrName);
  252. assertTrue("IPv6 global multicast address " + addrName
  253. + " not detected.", addr.isMCGlobal());
  254. // a currently invalid address as the prefix FFxE
  255. // is only valid for x = {1,0} as the rest are reserved
  256. addrName = "FFFE::0";
  257. addr = InetAddress.getByName(addrName);
  258. assertTrue("IPv6 global mutlicast address " + addrName
  259. + " not detected.", addr.isMCGlobal());
  260. // a currently invalid address as the prefix FFxE
  261. // is only valid for x = {1,0} as the rest are reserved
  262. addrName = "FFFE:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  263. addr = InetAddress.getByName(addrName);
  264. assertTrue("IPv6 global multicast address " + addrName
  265. + " not detected.", addr.isMCGlobal());
  266. // a sample MC organizational address
  267. addrName = "FF08:42:42:42:42:42:42:42";
  268. addr = InetAddress.getByName(addrName);
  269. assertTrue("IPv6 mulitcast organizational " + addrName
  270. + " incorrectly indicated as a global address.", !addr
  271. .isMCGlobal());
  272. // a sample MC site address
  273. addrName = "FF05:42:42:42:42:42:42:42";
  274. addr = InetAddress.getByName(addrName);
  275. assertTrue("IPv6 mulitcast site address " + addrName
  276. + " incorrectly indicated as a global address.", !addr
  277. .isMCGlobal());
  278. // a sample MC link address
  279. addrName = "FF02:42:42:42:42:42:42:42";
  280. addr = InetAddress.getByName(addrName);
  281. assertTrue("IPv6 mulitcast link address " + addrName
  282. + " incorrectly indicated as a global address.", !addr
  283. .isMCGlobal());
  284. // a sample MC Node
  285. addrName = "FF01:42:42:42:42:42:42:42";
  286. addr = InetAddress.getByName(addrName);
  287. assertTrue("IPv6 mulitcast node address " + addrName
  288. + " incorrectly indicated as a global address.", !addr
  289. .isMCGlobal());
  290. // IPv4-mapped IPv6 address tests
  291. addrName = "::FFFF:224.0.1.0";
  292. addr = InetAddress.getByName(addrName);
  293. assertTrue("IPv4 global multicast address " + addrName
  294. + " not identified as a global multicast address.", addr
  295. .isMCGlobal());
  296. addrName = "::FFFF:238.255.255.255";
  297. addr = InetAddress.getByName(addrName);
  298. assertTrue("IPv4 global multicast address " + addrName
  299. + " not identified as a global multicast address.", addr
  300. .isMCGlobal());
  301. }
  302. /**
  303. * @tests java.net.Inet6Address#isMCNodeLocal()
  304. */
  305. public void test_isMCNodeLocal() throws Exception {
  306. String addrName = "";
  307. // IP V6 regular address tests for Mulitcase node local addresses
  308. //
  309. // Multicast node local addresses are FFx1:/112 where x is
  310. // a set of flags, and the addition 112 bits make up
  311. // the global address space
  312. addrName = "FF01::0";
  313. InetAddress addr = InetAddress.getByName(addrName);
  314. assertTrue("IPv6 node-local mutlicast address " + addrName
  315. + " not detected.", addr.isMCNodeLocal());
  316. addrName = "FF01:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  317. addr = InetAddress.getByName(addrName);
  318. assertTrue("IPv6 node-local multicast address " + addrName
  319. + " not detected.", addr.isMCNodeLocal());
  320. // a currently invalid address as the prefix FFxE
  321. // is only valid for x = {1,0} as the rest are reserved
  322. addrName = "FFF1::0";
  323. addr = InetAddress.getByName(addrName);
  324. assertTrue("IPv6 node-local mutlicast address " + addrName
  325. + " not detected.", addr.isMCNodeLocal());
  326. // a currently invalid address as the prefix FFxE
  327. // is only valid for x = {1,0} as the rest are reserved
  328. addrName = "FFF1:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  329. addr = InetAddress.getByName(addrName);
  330. assertTrue("IPv6 node-local multicast address " + addrName
  331. + " not detected.", addr.isMCNodeLocal());
  332. // a sample MC organizational address
  333. addrName = "FF08:42:42:42:42:42:42:42";
  334. addr = InetAddress.getByName(addrName);
  335. assertTrue("IPv6 mulitcast organizational address " + addrName
  336. + " incorrectly indicated as a node-local address.", !addr
  337. .isMCNodeLocal());
  338. // a sample MC site address
  339. addrName = "FF05:42:42:42:42:42:42:42";
  340. addr = InetAddress.getByName(addrName);
  341. assertTrue("IPv6 mulitcast site address " + addrName
  342. + " incorrectly indicated as a node-local address.", !addr
  343. .isMCNodeLocal());
  344. // a sample MC link address
  345. addrName = "FF02:42:42:42:42:42:42:42";
  346. addr = InetAddress.getByName(addrName);
  347. assertTrue("IPv6 mulitcast link address " + addrName
  348. + " incorrectly indicated as a node-local address.", !addr
  349. .isMCNodeLocal());
  350. // a sample MC global address
  351. addrName = "FF0E:42:42:42:42:42:42:42";
  352. addr = InetAddress.getByName(addrName);
  353. assertTrue("IPv6 mulitcast node address " + addrName
  354. + " incorrectly indicated as a node-local address.", !addr
  355. .isMCNodeLocal());
  356. }
  357. /**
  358. * @tests java.net.Inet6Address#isMCLinkLocal()
  359. */
  360. public void test_isMCLinkLocal() throws Exception {
  361. String addrName = "";
  362. // IP V6 regular address tests for Mulitcase link local addresses
  363. //
  364. // Multicast link local addresses are FFx2:/112 where x is
  365. // a set of flags, and the addition 112 bits make up
  366. // the global address space
  367. addrName = "FF02::0";
  368. InetAddress addr = InetAddress.getByName(addrName);
  369. assertTrue("IPv6 link local multicast address " + addrName
  370. + " not detected.", addr.isMCLinkLocal());
  371. addrName = "FF02:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  372. addr = InetAddress.getByName(addrName);
  373. assertTrue("IPv6 link local multicast address " + addrName
  374. + " not detected.", addr.isMCLinkLocal());
  375. // a currently invalid address as the prefix FFxE
  376. // is only valid for x = {1,0} as the rest are reserved
  377. addrName = "FFF2::0";
  378. addr = InetAddress.getByName(addrName);
  379. assertTrue("IPv6 link local multicast address " + addrName
  380. + " not detected.", addr.isMCLinkLocal());
  381. // a currently invalid address as the prefix FFxE
  382. // is only valid for x = {1,0} as the rest are reserved
  383. addrName = "FFF2:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  384. addr = InetAddress.getByName(addrName);
  385. assertTrue("IPv6 link local multicast address " + addrName
  386. + " not detected.", addr.isMCLinkLocal());
  387. // a sample MC organizational address
  388. addrName = "FF08:42:42:42:42:42:42:42";
  389. addr = InetAddress.getByName(addrName);
  390. assertTrue(
  391. "IPv6 organization multicast address "
  392. + addrName
  393. + " incorrectly indicated as a link-local mulitcast address.",
  394. !addr.isMCLinkLocal());
  395. // a sample MC site address
  396. addrName = "FF05:42:42:42:42:42:42:42";
  397. addr = InetAddress.getByName(addrName);
  398. assertTrue(
  399. "IPv6 site-local mulitcast address "
  400. + addrName
  401. + " incorrectly indicated as a link-local mulitcast address.",
  402. !addr.isMCLinkLocal());
  403. // a sample MC global address
  404. addrName = "FF0E:42:42:42:42:42:42:42";
  405. addr = InetAddress.getByName(addrName);
  406. assertTrue(
  407. "IPv6 global multicast address "
  408. + addrName
  409. + " incorrectly indicated as a link-local mulitcast address.",
  410. !addr.isMCLinkLocal());
  411. // a sample MC Node
  412. addrName = "FF01:42:42:42:42:42:42:42";
  413. addr = InetAddress.getByName(addrName);
  414. assertTrue(
  415. "IPv6 mulitcast node address "
  416. + addrName
  417. + " incorrectly indicated as a link-local mulitcast address.",
  418. !addr.isMCLinkLocal());
  419. // Ipv4-mapped IPv6 addresses
  420. addrName = "::FFFF:224.0.0.0"; // a multicast addr 1110
  421. addr = InetAddress.getByName(addrName);
  422. assertTrue("IPv4 link-local multicast address " + addrName
  423. + " not identified as a link-local multicast address.",
  424. addr.isMCLinkLocal());
  425. addrName = "::FFFF:224.0.0.255"; // a multicast addr 1110
  426. addr = InetAddress.getByName(addrName);
  427. assertTrue("IPv4 link-local multicast address " + addrName
  428. + " not identified as a link-local multicast address.",
  429. addr.isMCLinkLocal());
  430. }
  431. /**
  432. * @tests java.net.Inet6Address#isMCSiteLocal()
  433. */
  434. public void test_isMCSiteLocal() throws Exception {
  435. String addrName = "";
  436. // IP V6 regular address tests for Multicast site-local addresses
  437. //
  438. // Multicast global addresses are FFx5:/112 where x is
  439. // a set of flags, and the addition 112 bits make up
  440. // the global address space
  441. addrName = "FF05::0";
  442. InetAddress addr = InetAddress.getByName(addrName);
  443. assertTrue("IPv6 site-local mutlicast address " + addrName
  444. + " not detected.", addr.isMCSiteLocal());
  445. addrName = "FF05:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  446. addr = InetAddress.getByName(addrName);
  447. assertTrue("IPv6 site-local multicast address " + addrName
  448. + " not detected.", addr.isMCSiteLocal());
  449. // a currently invalid address as the prefix FFxE
  450. // is only valid for x = {1,0} as the rest are reserved
  451. addrName = "FFF5::0";
  452. addr = InetAddress.getByName(addrName);
  453. assertTrue("IPv6 site-local mutlicast address " + addrName
  454. + " not detected.", addr.isMCSiteLocal());
  455. // a currently invalid address as the prefix FFxE
  456. // is only valid for x = {1,0} as the rest are reserved
  457. addrName = "FFF5:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  458. addr = InetAddress.getByName(addrName);
  459. assertTrue("IPv6 site-local multicast address " + addrName
  460. + " not detected.", addr.isMCSiteLocal());
  461. // a sample MC organizational address
  462. addrName = "FF08:42:42:42:42:42:42:42";
  463. addr = InetAddress.getByName(addrName);
  464. assertTrue(
  465. "IPv6 organization multicast address "
  466. + addrName
  467. + " incorrectly indicated as a site-local mulitcast address.",
  468. !addr.isMCSiteLocal());
  469. // a sample MC global address
  470. addrName = "FF0E:42:42:42:42:42:42:42";
  471. addr = InetAddress.getByName(addrName);
  472. assertTrue(
  473. "IPv6 global mulitcast address "
  474. + addrName
  475. + " incorrectly indicated as a site-local mulitcast address.",
  476. !addr.isMCSiteLocal());
  477. // a sample MC link address
  478. addrName = "FF02:42:42:42:42:42:42:42";
  479. addr = InetAddress.getByName(addrName);
  480. assertTrue(
  481. "IPv6 link-local multicast address "
  482. + addrName
  483. + " incorrectly indicated as a site-local mulitcast address.",
  484. !addr.isMCSiteLocal());
  485. // a sample MC Node
  486. addrName = "FF01:42:42:42:42:42:42:42";
  487. addr = InetAddress.getByName(addrName);
  488. assertTrue(
  489. "IPv6 mulitcast node address "
  490. + addrName
  491. + " incorrectly indicated as a site-local mulitcast address.",
  492. !addr.isMCSiteLocal());
  493. // IPv4-mapped IPv6 addresses
  494. addrName = "::FFFF:239.255.0.0";
  495. addr = InetAddress.getByName(addrName);
  496. assertTrue("IPv4 site-local multicast address " + addrName
  497. + " not identified as a site-local multicast address.",
  498. addr.isMCSiteLocal());
  499. addrName = "::FFFF:239.255.255.255";
  500. addr = InetAddress.getByName(addrName);
  501. assertTrue("IPv4 site-local multicast address " + addrName
  502. + " not identified as a site-local multicast address.",
  503. addr.isMCSiteLocal());
  504. }
  505. /**
  506. * @tests java.net.Inet6Address#isMCOrgLocal()
  507. */
  508. public void test_isMCOrgLocal() throws Exception {
  509. String addrName = "";
  510. // IP V6 regular address tests for Mulitcase organization-local
  511. // addresses
  512. //
  513. // Multicast global addresses are FFxE:/112 where x is
  514. // a set of flags, and the addition 112 bits make up
  515. // the global address space
  516. addrName = "FF08::0";
  517. InetAddress addr = InetAddress.getByName(addrName);
  518. assertTrue("IPv6 organization-local mutlicast address " + addrName
  519. + " not detected.", addr.isMCOrgLocal());
  520. addrName = "FF08:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  521. addr = InetAddress.getByName(addrName);
  522. assertTrue("IPv6 organization-local multicast address " + addrName
  523. + " not detected.", addr.isMCOrgLocal());
  524. // a currently invalid address as the prefix FFxE
  525. // is only valid for x = {1,0} as the rest are reserved
  526. addrName = "FFF8::0";
  527. addr = InetAddress.getByName(addrName);
  528. assertTrue("IPv6 organization-local mutlicast address " + addrName
  529. + " not detected.", addr.isMCOrgLocal());
  530. // a currently invalid address as the prefix FFxE
  531. // is only valid for x = {1,0} as the rest are reserved
  532. addrName = "FFF8:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF";
  533. addr = InetAddress.getByName(addrName);
  534. assertTrue("IPv6 organization-local multicast address " + addrName
  535. + " not detected.", addr.isMCOrgLocal());
  536. // a sample MC global address
  537. addrName = "FF0E:42:42:42:42:42:42:42";
  538. addr = InetAddress.getByName(addrName);
  539. assertTrue(
  540. "IPv6 global multicast address "
  541. + addrName
  542. + " incorrectly indicated as an organization-local mulitcast address.",
  543. !addr.isMCOrgLocal());
  544. // a sample MC site address
  545. addrName = "FF05:42:42:42:42:42:42:42";
  546. addr = InetAddress.getByName(addrName);
  547. assertTrue(
  548. "IPv6 site-local mulitcast address "
  549. + addrName
  550. + " incorrectly indicated as an organization-local mulitcast address.",
  551. !addr.isMCOrgLocal());
  552. // a sample MC link address
  553. addrName = "FF02:42:42:42:42:42:42:42";
  554. addr = InetAddress.getByName(addrName);
  555. assertTrue(
  556. "IPv6 link-local multicast address "
  557. + addrName
  558. + " incorrectly indicated as an organization-local mulitcast address.",
  559. !addr.isMCOrgLocal());
  560. // a sample MC Node
  561. addrName = "FF01:42:42:42:42:42:42:42";
  562. addr = InetAddress.getByName(addrName);
  563. assertTrue(
  564. "IPv6 mulitcast node address "
  565. + addrName
  566. + " incorrectly indicated as an organization-local mulitcast address.",
  567. !addr.isMCOrgLocal());
  568. // IPv4-mapped IPv6 addresses
  569. addrName = "::FFFF:239.192.0.0";
  570. addr = InetAddress.getByName(addrName);
  571. assertTrue("IPv4 org-local multicast address " + addrName
  572. + " not identified as a org-local multicast address.", addr
  573. .isMCOrgLocal());
  574. addrName = "::FFFF:239.195.255.255";
  575. addr = InetAddress.getByName(addrName);
  576. assertTrue("IPv4 org-local multicast address " + addrName
  577. + " not identified as a org-local multicast address.", addr
  578. .isMCOrgLocal());
  579. }
  580. /**
  581. * @tests java.net.Inet6Address#isIPv4CompatibleAddress()
  582. */
  583. public void test_isIPv4CompatibleAddress() throws Exception {
  584. String addrName = "";
  585. Inet6Address addr = null;
  586. // Tests a number of addresses to see if they are compatable with
  587. // IPv6 addresses
  588. addrName = "FFFF::42:42"; // 11111111 = FFFF
  589. addr = (Inet6Address) InetAddress.getByName(addrName);
  590. assertTrue("A non-compatable IPv6 address " + addrName
  591. + " incorrectly identified as a IPv4 compatable address.",
  592. !addr.isIPv4CompatibleAddress());
  593. // IPv4-compatible IPv6 address tests
  594. //
  595. // Now create 2 IP v6 addresses that are IP v4 compatable
  596. // to IP v6 addresses.
  597. addrName = "::0.0.0.0";
  598. addr = (Inet6Address) InetAddress.getByName(addrName);
  599. assertTrue("IPv4 compatable address " + addrName
  600. + " not detected correctly.", addr
  601. .isIPv4CompatibleAddress());
  602. addrName = "::255.255.255.255"; // an ipv4 non-multicast address
  603. addr = (Inet6Address) InetAddress.getByName(addrName);
  604. assertTrue("IPv4 compatable address " + addrName
  605. + " not detected correctly.", addr
  606. .isIPv4CompatibleAddress());
  607. }
  608. /**
  609. * @tests java.net.Inet6Address#getAddress()
  610. */
  611. public void test_getAddress() {
  612. // TODO : Implementation
  613. }
  614. /**
  615. * @tests java.net.Inet6Address#getByName(java.lang.String)
  616. */
  617. public void test_getByNameLjava_lang_String() throws Exception {
  618. // ones to add "::255.255.255.255", "::FFFF:0.0.0.0",
  619. // "0.0.0.0.0.0::255.255.255.255", "F:F:F:F:F:F:F:F",
  620. // "[F:F:F:F:F:F:F:F]"
  621. String validIPAddresses[] = { "::1.2.3.4", "::", "::", "1::0", "1::",
  622. "::1", "0", /* jdk1.5 accepts 0 as valid */
  623. "FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF",
  624. "FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:255.255.255.255",
  625. "0:0:0:0:0:0:0:0", "0:0:0:0:0:0:0.0.0.0" };
  626. String invalidIPAddresses[] = { "FFFF:FFFF" };
  627. for (int i = 0; i < validIPAddresses.length; i++) {
  628. InetAddress.getByName(validIPAddresses[i]);
  629. //exercise positive cache
  630. InetAddress.getByName(validIPAddresses[i]);
  631. if (!validIPAddresses[i].equals("0")) {
  632. String tempIPAddress = "[" + validIPAddresses[i] + "]";
  633. InetAddress.getByName(tempIPAddress);
  634. }
  635. }
  636. for (int i = 0; i < invalidIPAddresses.length; i++) {
  637. try {
  638. InetAddress.getByName(invalidIPAddresses[i]);
  639. fail("Invalid IP address incorrectly recognized as valid: "
  640. + invalidIPAddresses[i]);
  641. } catch (Exception e) {
  642. }
  643. //exercise negative cache
  644. try {
  645. InetAddress.getByName(invalidIPAddresses[i]);
  646. fail("Invalid IP address incorrectly recognized as valid: "
  647. + invalidIPAddresses[i]);
  648. } catch (Exception e) {
  649. }
  650. }
  651. }
  652. /**
  653. * @tests java.net.Inet6Address#getByAddress(String, byte[], int)
  654. */
  655. public void test_getByAddressLString$BI() throws UnknownHostException{
  656. try {
  657. Inet6Address.getByAddress("123", null, 0);
  658. fail("should throw UnknownHostException");
  659. } catch (UnknownHostException uhe) {
  660. // expected
  661. }
  662. byte[] addr1 = { (byte) 127, 0, 0, 1 };
  663. try {
  664. Inet6Address.getByAddress("123", addr1, 0);
  665. fail("should throw UnknownHostException");
  666. } catch (UnknownHostException uhe) {
  667. // expected
  668. }
  669. byte[] addr2 = { (byte) 0xFE, (byte) 0x80, 0, 0, 0, 0, 0, 0, 0x02,
  670. 0x11, 0x25, (byte) 0xFF, (byte) 0xFE, (byte) 0xF8, (byte) 0x7C,
  671. (byte) 0xB2 };
  672. // should not throw any exception
  673. Inet6Address.getByAddress("123", addr2, 3);
  674. Inet6Address.getByAddress("123", addr2, 0);
  675. Inet6Address.getByAddress("123", addr2, -1);
  676. }
  677. /**
  678. * @tests java.net.Inet6Address#getByAddress(String, byte[],
  679. * NetworkInterface)
  680. */
  681. public void test_getByAddressLString$BLNetworkInterface()
  682. throws UnknownHostException {
  683. NetworkInterface nif = null;
  684. try {
  685. Inet6Address.getByAddress("123", null, nif);
  686. fail("should throw UnknownHostException");
  687. } catch (UnknownHostException uhe) {
  688. // expected
  689. }
  690. byte[] addr1 = { (byte) 127, 0, 0, 1 };
  691. try {
  692. Inet6Address.getByAddress("123", addr1, nif);
  693. fail("should throw UnknownHostException");
  694. } catch (UnknownHostException uhe) {
  695. // expected
  696. }
  697. byte[] addr2 = { (byte) 0xFE, (byte) 0x80, 0, 0, 0, 0, 0, 0, 0x02,
  698. 0x11, 0x25, (byte) 0xFF, (byte) 0xFE, (byte) 0xF8, (byte)
  699. 0x7C, (byte) 0xB2 };
  700. // should not throw any exception
  701. Inet6Address.getByAddress("123", addr2, nif);
  702. }
  703. /**
  704. * @throws UnknownHostException
  705. * @tests java.net.Inet6Address#getScopeID()
  706. */
  707. public void test_getScopeID() throws UnknownHostException {
  708. Inet6Address v6ia;
  709. byte[] addr = { (byte) 0xFE, (byte) 0x80, 0, 0, 0, 0, 0, 0, 0x02, 0x11,
  710. 0x25, (byte) 0xFF, (byte) 0xFE, (byte) 0xF8, (byte) 0x7C,
  711. (byte) 0xB2 };
  712. v6ia = Inet6Address.getByAddress("123", addr, 3);
  713. assertEquals(3, v6ia.getScopeId());
  714. v6ia = Inet6Address.getByAddress("123", addr, 0);
  715. assertEquals(0, v6ia.getScopeId());
  716. v6ia = Inet6Address.getByAddress("123", addr, -1);
  717. assertEquals(0, v6ia.getScopeId());
  718. }
  719. /**
  720. * @tests java.net.Inet6Address#getScopedInterface()
  721. */
  722. public void test_getScopedInterface() throws UnknownHostException {
  723. byte[] addr = { (byte) 0xFE, (byte) 0x80, (byte) 0x09, (byte) 0xb5,
  724. (byte) 0x6b, (byte) 0xa4, 0, 0, 0, 0, 0, 0, (byte) 0x09,
  725. (byte) 0xb5, (byte) 0x6b, (byte) 0xa4 };
  726. Inet6Address v6Addr;
  727. v6Addr = Inet6Address.getByAddress("123", addr, null);
  728. assertNull(v6Addr.getScopedInterface());
  729. }
  730. /**
  731. * @tests {@link java.net.Inet6Address#hashCode()}
  732. */
  733. public void test_hashCode() throws UnknownHostException{
  734. byte[] addr = { (byte) 0xFE, (byte) 0x80, 0, 0, 0, 0, 0, 0, 0x02, 0x11,
  735. 0x25, (byte) 0xFF, (byte) 0xFE, (byte) 0xF8, (byte) 0x7C,
  736. (byte) 0xB2 };
  737. Inet6Address address1, address2;
  738. address1 = Inet6Address.getByAddress("123", addr, 0);
  739. address2 = Inet6Address.getByAddress("1234", addr, 0);
  740. assertEquals(address1.hashCode(), address2.hashCode());
  741. }
  742. int bytesToInt(byte bytes[], int start) {
  743. int byteMask = 255;
  744. int value = ((bytes[start + 3] & byteMask))
  745. | ((bytes[start + 2] & byteMask) << 8)
  746. | ((bytes[start + 1] & byteMask) << 16)
  747. | ((bytes[start] & byteMask) << 24);
  748. return value;
  749. }
  750. String byteArrayToHexString(byte bytes[], boolean leadingZeros) {
  751. String fullString = "";
  752. int times = bytes.length / 4;
  753. int intArray[] = new int[times];
  754. for (int i = 0; i < times; i++) {
  755. intArray[i] = bytesToInt(bytes, i * 4);
  756. }
  757. return intArrayToHexString(intArray, leadingZeros);
  758. }
  759. void intToBytes(int value, byte bytes[], int start) {
  760. int byteMask = 255;
  761. bytes[start + 3] = (byte) (value & byteMask);
  762. bytes[start + 2] = (byte) ((value >> 8) & byteMask);
  763. bytes[start + 1] = (byte) ((value >> 16) & byteMask);
  764. bytes[start] = (byte) ((value >> 24) & byteMask);
  765. }
  766. String intArrayToHexString(int ints[], boolean leadingZeros) {
  767. String fullString = "";
  768. String tempString;
  769. int intsLength = ints.length;
  770. for (int i = 0; i < intsLength; i++) {
  771. tempString = Integer.toHexString(ints[i]);
  772. while (tempString.length() < 4 && leadingZeros) {
  773. tempString = "0" + tempString;
  774. }
  775. if (i + 1 < intsLength) {
  776. tempString += ":";
  777. }
  778. fullString += tempString;
  779. }
  780. return fullString.toUpperCase();
  781. }
  782. // comparator for Inet6Address objects
  783. private static final SerializableAssert COMPARATOR = new SerializableAssert() {
  784. public void assertDeserialized(Serializable initial,
  785. Serializable deserialized) {
  786. Inet6Address initAddr = (Inet6Address) initial;
  787. Inet6Address desrAddr = (Inet6Address) deserialized;
  788. byte[] iaAddresss = initAddr.getAddress();
  789. byte[] deIAAddresss = desrAddr.getAddress();
  790. for (int i = 0; i < iaAddresss.length; i++) {
  791. assertEquals(iaAddresss[i], deIAAddresss[i]);
  792. }
  793. assertEquals(initAddr.getScopeId(), desrAddr.getScopeId());
  794. assertEquals(initAddr.getScopedInterface(), desrAddr
  795. .getScopedInterface());
  796. }
  797. };
  798. /**
  799. * @tests serialization/deserialization compatibility.
  800. */
  801. public void testSerializationSelf() throws Exception {
  802. byte[] localv6 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
  803. SerializationTest.verifySelf(InetAddress.getByAddress(localv6),
  804. COMPARATOR);
  805. }
  806. /**
  807. * @tests serialization/deserialization compatibility with RI.
  808. */
  809. public void testSerializationCompatibility() throws Exception {
  810. byte[] localv6 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 };
  811. Object[] addresses = { InetAddress.getByAddress(localv6),
  812. // Regression for Harmony-1039: ser-form has
  813. // null interface name
  814. InetAddress.getByAddress(localv6) };
  815. SerializationTest.verifyGolden(this, addresses, COMPARATOR);
  816. }
  817. }