/core/tests/coretests/src/android/net/StaticIpConfigurationTest.java

http://github.com/android/platform_frameworks_base · Java · 225 lines · 161 code · 45 blank · 19 comment · 0 complexity · 405bd6d83fb45ac259e51a1a3ba1b12d MD5 · raw file

  1. /*
  2. * Copyright (C) 2014 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package android.net;
  17. import android.net.IpPrefix;
  18. import android.net.LinkAddress;
  19. import android.net.RouteInfo;
  20. import android.net.StaticIpConfiguration;
  21. import android.os.Parcel;
  22. import java.net.InetAddress;
  23. import java.util.HashSet;
  24. import junit.framework.TestCase;
  25. import android.test.suitebuilder.annotation.SmallTest;
  26. import static org.junit.Assert.*;
  27. public class StaticIpConfigurationTest extends TestCase {
  28. private static final String ADDRSTR = "192.0.2.2/25";
  29. private static final LinkAddress ADDR = new LinkAddress(ADDRSTR);
  30. private static final InetAddress GATEWAY = IpAddress("192.0.2.1");
  31. private static final InetAddress OFFLINKGATEWAY = IpAddress("192.0.2.129");
  32. private static final InetAddress DNS1 = IpAddress("8.8.8.8");
  33. private static final InetAddress DNS2 = IpAddress("8.8.4.4");
  34. private static final InetAddress DNS3 = IpAddress("4.2.2.2");
  35. private static final String IFACE = "eth0";
  36. private static InetAddress IpAddress(String addr) {
  37. return InetAddress.parseNumericAddress(addr);
  38. }
  39. private void checkEmpty(StaticIpConfiguration s) {
  40. assertNull(s.ipAddress);
  41. assertNull(s.gateway);
  42. assertNull(s.domains);
  43. assertEquals(0, s.dnsServers.size());
  44. }
  45. private boolean isEqual(StaticIpConfiguration s1, StaticIpConfiguration s2) {
  46. return s1.equals(s2);
  47. }
  48. private void assertEquals(StaticIpConfiguration s1, StaticIpConfiguration s2) {
  49. assertTrue(isEqual(s1, s2));
  50. }
  51. private void assertNotEquals(StaticIpConfiguration s1, StaticIpConfiguration s2) {
  52. assertFalse(isEqual(s1, s2));
  53. }
  54. private StaticIpConfiguration makeTestObject() {
  55. StaticIpConfiguration s = new StaticIpConfiguration();
  56. s.ipAddress = ADDR;
  57. s.gateway = GATEWAY;
  58. s.dnsServers.add(DNS1);
  59. s.dnsServers.add(DNS2);
  60. s.dnsServers.add(DNS3);
  61. s.domains = "google.com";
  62. return s;
  63. }
  64. @SmallTest
  65. public void testConstructor() {
  66. StaticIpConfiguration s = new StaticIpConfiguration();
  67. checkEmpty(s);
  68. }
  69. @SmallTest
  70. public void testCopyAndClear() {
  71. StaticIpConfiguration empty = new StaticIpConfiguration((StaticIpConfiguration) null);
  72. checkEmpty(empty);
  73. StaticIpConfiguration s1 = makeTestObject();
  74. StaticIpConfiguration s2 = new StaticIpConfiguration(s1);
  75. assertEquals(s1, s2);
  76. s2.clear();
  77. assertEquals(empty, s2);
  78. }
  79. @SmallTest
  80. public void testHashCodeAndEquals() {
  81. HashSet<Integer> hashCodes = new HashSet();
  82. hashCodes.add(0);
  83. StaticIpConfiguration s = new StaticIpConfiguration();
  84. // Check that this hash code is nonzero and different from all the ones seen so far.
  85. assertTrue(hashCodes.add(s.hashCode()));
  86. s.ipAddress = ADDR;
  87. assertTrue(hashCodes.add(s.hashCode()));
  88. s.gateway = GATEWAY;
  89. assertTrue(hashCodes.add(s.hashCode()));
  90. s.dnsServers.add(DNS1);
  91. assertTrue(hashCodes.add(s.hashCode()));
  92. s.dnsServers.add(DNS2);
  93. assertTrue(hashCodes.add(s.hashCode()));
  94. s.dnsServers.add(DNS3);
  95. assertTrue(hashCodes.add(s.hashCode()));
  96. s.domains = "example.com";
  97. assertTrue(hashCodes.add(s.hashCode()));
  98. assertFalse(s.equals(null));
  99. assertEquals(s, s);
  100. StaticIpConfiguration s2 = new StaticIpConfiguration(s);
  101. assertEquals(s, s2);
  102. s.ipAddress = new LinkAddress(DNS1, 32);
  103. assertNotEquals(s, s2);
  104. s2 = new StaticIpConfiguration(s);
  105. s.domains = "foo";
  106. assertNotEquals(s, s2);
  107. s2 = new StaticIpConfiguration(s);
  108. s.gateway = DNS2;
  109. assertNotEquals(s, s2);
  110. s2 = new StaticIpConfiguration(s);
  111. s.dnsServers.add(DNS3);
  112. assertNotEquals(s, s2);
  113. }
  114. @SmallTest
  115. public void testToLinkProperties() {
  116. LinkProperties expected = new LinkProperties();
  117. expected.setInterfaceName(IFACE);
  118. StaticIpConfiguration s = new StaticIpConfiguration();
  119. assertEquals(expected, s.toLinkProperties(IFACE));
  120. final RouteInfo connectedRoute = new RouteInfo(new IpPrefix(ADDRSTR), null, IFACE);
  121. s.ipAddress = ADDR;
  122. expected.addLinkAddress(ADDR);
  123. expected.addRoute(connectedRoute);
  124. assertEquals(expected, s.toLinkProperties(IFACE));
  125. s.gateway = GATEWAY;
  126. RouteInfo defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), GATEWAY, IFACE);
  127. expected.addRoute(defaultRoute);
  128. assertEquals(expected, s.toLinkProperties(IFACE));
  129. s.gateway = OFFLINKGATEWAY;
  130. expected.removeRoute(defaultRoute);
  131. defaultRoute = new RouteInfo(new IpPrefix("0.0.0.0/0"), OFFLINKGATEWAY, IFACE);
  132. expected.addRoute(defaultRoute);
  133. RouteInfo gatewayRoute = new RouteInfo(new IpPrefix("192.0.2.129/32"), null, IFACE);
  134. expected.addRoute(gatewayRoute);
  135. assertEquals(expected, s.toLinkProperties(IFACE));
  136. s.dnsServers.add(DNS1);
  137. expected.addDnsServer(DNS1);
  138. assertEquals(expected, s.toLinkProperties(IFACE));
  139. s.dnsServers.add(DNS2);
  140. s.dnsServers.add(DNS3);
  141. expected.addDnsServer(DNS2);
  142. expected.addDnsServer(DNS3);
  143. assertEquals(expected, s.toLinkProperties(IFACE));
  144. s.domains = "google.com";
  145. expected.setDomains("google.com");
  146. assertEquals(expected, s.toLinkProperties(IFACE));
  147. s.gateway = null;
  148. expected.removeRoute(defaultRoute);
  149. expected.removeRoute(gatewayRoute);
  150. assertEquals(expected, s.toLinkProperties(IFACE));
  151. // Without knowing the IP address, we don't have a directly-connected route, so we can't
  152. // tell if the gateway is off-link or not and we don't add a host route. This isn't a real
  153. // configuration, but we should at least not crash.
  154. s.gateway = OFFLINKGATEWAY;
  155. s.ipAddress = null;
  156. expected.removeLinkAddress(ADDR);
  157. expected.removeRoute(connectedRoute);
  158. expected.addRoute(defaultRoute);
  159. assertEquals(expected, s.toLinkProperties(IFACE));
  160. }
  161. private StaticIpConfiguration passThroughParcel(StaticIpConfiguration s) {
  162. Parcel p = Parcel.obtain();
  163. StaticIpConfiguration s2 = null;
  164. try {
  165. s.writeToParcel(p, 0);
  166. p.setDataPosition(0);
  167. s2 = StaticIpConfiguration.CREATOR.createFromParcel(p);
  168. } finally {
  169. p.recycle();
  170. }
  171. assertNotNull(s2);
  172. return s2;
  173. }
  174. @SmallTest
  175. public void testParceling() {
  176. StaticIpConfiguration s = makeTestObject();
  177. StaticIpConfiguration s2 = passThroughParcel(s);
  178. assertEquals(s, s2);
  179. }
  180. }