/OpenGPSTracker/branches/cupcake_google/external_sources/httpclient-4.1.1/httpclient/src/test/java/org/apache/ogt/http/conn/routing/TestRouteDirector.java

http://open-gpstracker.googlecode.com/ · Java · 478 lines · 325 code · 108 blank · 45 comment · 0 complexity · b96c9f3582f5b2931d073ba8bd25f9b5 MD5 · raw file

  1. /*
  2. * ====================================================================
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. * ====================================================================
  20. *
  21. * This software consists of voluntary contributions made by many
  22. * individuals on behalf of the Apache Software Foundation. For more
  23. * information on the Apache Software Foundation, please see
  24. * <http://www.apache.org/>.
  25. *
  26. */
  27. package org.apache.ogt.http.conn.routing;
  28. import java.net.InetAddress;
  29. import org.apache.ogt.http.HttpHost;
  30. import org.apache.ogt.http.conn.routing.BasicRouteDirector;
  31. import org.apache.ogt.http.conn.routing.HttpRoute;
  32. import org.apache.ogt.http.conn.routing.HttpRouteDirector;
  33. import org.apache.ogt.http.conn.routing.RouteInfo.LayerType;
  34. import org.apache.ogt.http.conn.routing.RouteInfo.TunnelType;
  35. import org.junit.Assert;
  36. import org.junit.Test;
  37. /**
  38. * Tests for {@link BasicRouteDirector}.
  39. */
  40. public class TestRouteDirector {
  41. // a selection of constants for generating routes
  42. public final static
  43. HttpHost TARGET1 = new HttpHost("target1.test.invalid");
  44. public final static
  45. HttpHost TARGET2 = new HttpHost("target2.test.invalid", 8080);
  46. // It is not necessary to have extra targets for https.
  47. // The 'layered' and 'secure' flags are specified explicitly
  48. // for routes, they will not be determined from the scheme.
  49. public final static
  50. HttpHost PROXY1 = new HttpHost("proxy1.test.invalid");
  51. public final static
  52. HttpHost PROXY2 = new HttpHost("proxy2.test.invalid", 1080);
  53. public final static
  54. HttpHost PROXY3 = new HttpHost("proxy3.test.invalid", 88);
  55. public final static InetAddress LOCAL41;
  56. public final static InetAddress LOCAL42;
  57. public final static InetAddress LOCAL61;
  58. public final static InetAddress LOCAL62;
  59. // need static initializer to deal with exceptions
  60. static {
  61. try {
  62. LOCAL41 = InetAddress.getByAddress(new byte[]{ 127, 0, 0, 1 });
  63. LOCAL42 = InetAddress.getByAddress(new byte[]{ 127, 0, 0, 2 });
  64. LOCAL61 = InetAddress.getByAddress(new byte[]{
  65. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
  66. });
  67. LOCAL62 = InetAddress.getByAddress(new byte[]{
  68. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2
  69. });
  70. } catch (Exception x) {
  71. throw new ExceptionInInitializerError(x);
  72. }
  73. }
  74. @Test(expected=IllegalArgumentException.class)
  75. public void testIllegal() {
  76. HttpRouteDirector rowdy = new BasicRouteDirector();
  77. HttpRoute route = new HttpRoute(TARGET1);
  78. rowdy.nextStep(null, route);
  79. }
  80. @Test
  81. public void testDirect() {
  82. HttpRouteDirector rowdy = new BasicRouteDirector();
  83. HttpRoute route1 = new HttpRoute(TARGET1);
  84. HttpRoute route2 = new HttpRoute(TARGET2);
  85. HttpRoute route1p1 = new HttpRoute(TARGET1, null, PROXY1, false);
  86. int step = rowdy.nextStep(route1, null);
  87. Assert.assertEquals("wrong step to route1",
  88. HttpRouteDirector.CONNECT_TARGET, step);
  89. step = rowdy.nextStep(route2, null);
  90. Assert.assertEquals("wrong step to route2",
  91. HttpRouteDirector.CONNECT_TARGET, step);
  92. step = rowdy.nextStep(route1, route1);
  93. Assert.assertEquals("complete route1 not detected",
  94. HttpRouteDirector.COMPLETE, step);
  95. step = rowdy.nextStep(route2, route2);
  96. Assert.assertEquals("complete route2 not detected",
  97. HttpRouteDirector.COMPLETE, step);
  98. step = rowdy.nextStep(route1, route2);
  99. Assert.assertEquals("unreachable target not detected",
  100. HttpRouteDirector.UNREACHABLE, step);
  101. step = rowdy.nextStep(route1, route1p1);
  102. Assert.assertEquals("invalid proxy not detected",
  103. HttpRouteDirector.UNREACHABLE, step);
  104. }
  105. @Test
  106. public void testProxy() {
  107. HttpRouteDirector rowdy = new BasicRouteDirector();
  108. HttpRoute route1p1 = new HttpRoute(TARGET1, null, PROXY1, false);
  109. HttpRoute route1p2 = new HttpRoute(TARGET1, null, PROXY2, false);
  110. HttpRoute route2p1 = new HttpRoute(TARGET2, null, PROXY1, false);
  111. HttpRoute route0 = new HttpRoute(PROXY1);
  112. HttpRoute route1 = new HttpRoute(TARGET1);
  113. int step = rowdy.nextStep(route1p1, null);
  114. Assert.assertEquals("wrong step to route1p1",
  115. HttpRouteDirector.CONNECT_PROXY, step);
  116. step = rowdy.nextStep(route1p2, null);
  117. Assert.assertEquals("wrong step to route1p2",
  118. HttpRouteDirector.CONNECT_PROXY, step);
  119. step = rowdy.nextStep(route1p1, route1p1);
  120. Assert.assertEquals("complete route1p1 not detected",
  121. HttpRouteDirector.COMPLETE, step);
  122. step = rowdy.nextStep(route1p2, route1p2);
  123. Assert.assertEquals("complete route1p2 not detected",
  124. HttpRouteDirector.COMPLETE, step);
  125. step = rowdy.nextStep(route2p1, route2p1);
  126. Assert.assertEquals("complete route2p1 not detected",
  127. HttpRouteDirector.COMPLETE, step);
  128. step = rowdy.nextStep(route1p1, route1p2);
  129. Assert.assertEquals("unreachable route1p1 via route1p2 not detected",
  130. HttpRouteDirector.UNREACHABLE, step);
  131. step = rowdy.nextStep(route1p1, route2p1);
  132. Assert.assertEquals("unreachable route1p1 via route2p1 not detected",
  133. HttpRouteDirector.UNREACHABLE, step);
  134. step = rowdy.nextStep(route1p1, route0);
  135. Assert.assertEquals("unreachable route1p1 via route0 not detected",
  136. HttpRouteDirector.UNREACHABLE, step);
  137. step = rowdy.nextStep(route1p1, route1);
  138. Assert.assertEquals("unreachable route1p1 via route1 not detected",
  139. HttpRouteDirector.UNREACHABLE, step);
  140. }
  141. @Test
  142. public void testProxyChain() {
  143. HttpHost[] chainA = { PROXY1 };
  144. HttpHost[] chainB = { PROXY1, PROXY2 };
  145. HttpHost[] chainC = { PROXY2, PROXY1 };
  146. HttpRouteDirector rowdy = new BasicRouteDirector();
  147. HttpRoute route1cA = new HttpRoute(TARGET1, null, chainA, false,
  148. TunnelType.PLAIN, LayerType.PLAIN);
  149. HttpRoute route1cB = new HttpRoute(TARGET1, null, chainB, false,
  150. TunnelType.PLAIN, LayerType.PLAIN);
  151. HttpRoute route1cC = new HttpRoute(TARGET1, null, chainC, false,
  152. TunnelType.PLAIN, LayerType.PLAIN);
  153. HttpRoute route1cD = new HttpRoute(TARGET1, null, chainC, false,
  154. TunnelType.PLAIN, LayerType.PLAIN);
  155. int step = rowdy.nextStep(route1cA, null);
  156. Assert.assertEquals("wrong step to route1cA",
  157. HttpRouteDirector.CONNECT_PROXY, step);
  158. step = rowdy.nextStep(route1cB, null);
  159. Assert.assertEquals("wrong step to route1cB",
  160. HttpRouteDirector.CONNECT_PROXY, step);
  161. step = rowdy.nextStep(route1cC, null);
  162. Assert.assertEquals("wrong step to route1cC",
  163. HttpRouteDirector.CONNECT_PROXY, step);
  164. step = rowdy.nextStep(route1cD, null);
  165. Assert.assertEquals("wrong step to route1cD",
  166. HttpRouteDirector.CONNECT_PROXY, step);
  167. step = rowdy.nextStep(route1cB, route1cA);
  168. Assert.assertEquals("wrong step to route 1cB from 1cA",
  169. HttpRouteDirector.TUNNEL_PROXY, step);
  170. step = rowdy.nextStep(route1cB, route1cB);
  171. Assert.assertEquals("complete route 1cB not detected",
  172. HttpRouteDirector.COMPLETE, step);
  173. step = rowdy.nextStep(route1cB, route1cC);
  174. Assert.assertEquals("unreachable route 1cB from 1cC not detected",
  175. HttpRouteDirector.UNREACHABLE, step);
  176. step = rowdy.nextStep(route1cB, route1cD);
  177. Assert.assertEquals("unreachable route 1cB from 1cD not detected",
  178. HttpRouteDirector.UNREACHABLE, step);
  179. step = rowdy.nextStep(route1cA, route1cB);
  180. Assert.assertEquals("unreachable route 1cA from 1cB not detected",
  181. HttpRouteDirector.UNREACHABLE, step);
  182. }
  183. @Test
  184. public void testLocalDirect() {
  185. HttpRouteDirector rowdy = new BasicRouteDirector();
  186. HttpRoute route1l41 = new HttpRoute(TARGET1, LOCAL41, false);
  187. HttpRoute route1l42 = new HttpRoute(TARGET1, LOCAL42, false);
  188. HttpRoute route1l61 = new HttpRoute(TARGET1, LOCAL61, false);
  189. HttpRoute route1l00 = new HttpRoute(TARGET1, null, false);
  190. int step = rowdy.nextStep(route1l41, null);
  191. Assert.assertEquals("wrong step to route1l41",
  192. HttpRouteDirector.CONNECT_TARGET, step);
  193. step = rowdy.nextStep(route1l42, null);
  194. Assert.assertEquals("wrong step to route1l42",
  195. HttpRouteDirector.CONNECT_TARGET, step);
  196. step = rowdy.nextStep(route1l61, null);
  197. Assert.assertEquals("wrong step to route1l61",
  198. HttpRouteDirector.CONNECT_TARGET, step);
  199. step = rowdy.nextStep(route1l00, null);
  200. Assert.assertEquals("wrong step to route1l00",
  201. HttpRouteDirector.CONNECT_TARGET, step);
  202. step = rowdy.nextStep(route1l41, route1l41);
  203. Assert.assertEquals("complete route1l41 not detected",
  204. HttpRouteDirector.COMPLETE, step);
  205. step = rowdy.nextStep(route1l42, route1l42);
  206. Assert.assertEquals("complete route1l42 not detected",
  207. HttpRouteDirector.COMPLETE, step);
  208. step = rowdy.nextStep(route1l61, route1l61);
  209. Assert.assertEquals("complete route1l61 not detected",
  210. HttpRouteDirector.COMPLETE, step);
  211. step = rowdy.nextStep(route1l00, route1l00);
  212. Assert.assertEquals("complete route1l00 not detected",
  213. HttpRouteDirector.COMPLETE, step);
  214. step = rowdy.nextStep(route1l41, route1l42);
  215. Assert.assertEquals("unreachable route1l41 via route1l42 not detected",
  216. HttpRouteDirector.UNREACHABLE, step);
  217. step = rowdy.nextStep(route1l41, route1l61);
  218. Assert.assertEquals("unreachable route1l41 via route1l61 not detected",
  219. HttpRouteDirector.UNREACHABLE, step);
  220. step = rowdy.nextStep(route1l41, route1l00);
  221. Assert.assertEquals("unreachable route1l41 via route1l00 not detected",
  222. HttpRouteDirector.UNREACHABLE, step);
  223. step = rowdy.nextStep(route1l00, route1l41);
  224. Assert.assertEquals("complete route1l00 as route1l41 not detected",
  225. HttpRouteDirector.COMPLETE, step);
  226. step = rowdy.nextStep(route1l00, route1l42);
  227. Assert.assertEquals("complete route1l00 as route1l42 not detected",
  228. HttpRouteDirector.COMPLETE, step);
  229. step = rowdy.nextStep(route1l00, route1l61);
  230. Assert.assertEquals("complete route1l00 as route1l61 not detected",
  231. HttpRouteDirector.COMPLETE, step);
  232. }
  233. @Test
  234. public void testDirectSecure() {
  235. HttpRouteDirector rowdy = new BasicRouteDirector();
  236. HttpRoute route1u = new HttpRoute(TARGET1, null, false);
  237. HttpRoute route1s = new HttpRoute(TARGET1, null, true);
  238. HttpRoute route1p1u = new HttpRoute(TARGET1, null, PROXY1, false);
  239. HttpRoute route1p1s = new HttpRoute(TARGET1, null, PROXY1, true);
  240. int step = rowdy.nextStep(route1u, null);
  241. Assert.assertEquals("wrong step to route1u",
  242. HttpRouteDirector.CONNECT_TARGET, step);
  243. step = rowdy.nextStep(route1s, null);
  244. Assert.assertEquals("wrong step to route1s",
  245. HttpRouteDirector.CONNECT_TARGET, step);
  246. // unrequested security is currently not tolerated
  247. step = rowdy.nextStep(route1u, route1s);
  248. Assert.assertEquals("unreachable route 1u from 1s not detected",
  249. HttpRouteDirector.UNREACHABLE, step);
  250. // secure layering of direct connections is currently not supported
  251. step = rowdy.nextStep(route1s, route1u);
  252. Assert.assertEquals("unreachable route 1s from 1u not detected",
  253. HttpRouteDirector.UNREACHABLE, step);
  254. step = rowdy.nextStep(route1s, route1p1u);
  255. Assert.assertEquals("unreachable route 1s from 1p1u not detected",
  256. HttpRouteDirector.UNREACHABLE, step);
  257. step = rowdy.nextStep(route1s, route1p1s);
  258. Assert.assertEquals("unreachable route 1s from 1p1s not detected",
  259. HttpRouteDirector.UNREACHABLE, step);
  260. }
  261. @Test
  262. public void testProxyTLS() {
  263. HttpRouteDirector rowdy = new BasicRouteDirector();
  264. HttpRoute route1 = new HttpRoute
  265. (TARGET1, null, PROXY1, false,
  266. TunnelType.PLAIN, LayerType.PLAIN);
  267. HttpRoute route1t = new HttpRoute
  268. (TARGET1, null, PROXY1, false,
  269. TunnelType.TUNNELLED, LayerType.PLAIN);
  270. HttpRoute route1tl = new HttpRoute
  271. (TARGET1, null, PROXY1, false,
  272. TunnelType.TUNNELLED, LayerType.LAYERED);
  273. HttpRoute route1s = new HttpRoute
  274. (TARGET1, null, PROXY1, true,
  275. TunnelType.PLAIN, LayerType.PLAIN);
  276. HttpRoute route1ts = new HttpRoute
  277. (TARGET1, null, PROXY1, true,
  278. TunnelType.TUNNELLED, LayerType.PLAIN);
  279. HttpRoute route1tls = new HttpRoute
  280. (TARGET1, null, PROXY1, true,
  281. TunnelType.TUNNELLED, LayerType.LAYERED);
  282. // we don't consider a route that is layered but not tunnelled
  283. int step = rowdy.nextStep(route1, null);
  284. Assert.assertEquals("wrong step to route1",
  285. HttpRouteDirector.CONNECT_PROXY, step);
  286. step = rowdy.nextStep(route1t, null);
  287. Assert.assertEquals("wrong step to route1t",
  288. HttpRouteDirector.CONNECT_PROXY, step);
  289. step = rowdy.nextStep(route1tl, null);
  290. Assert.assertEquals("wrong step to route1tl",
  291. HttpRouteDirector.CONNECT_PROXY, step);
  292. step = rowdy.nextStep(route1s, null);
  293. Assert.assertEquals("wrong step to route1s",
  294. HttpRouteDirector.CONNECT_PROXY, step);
  295. step = rowdy.nextStep(route1ts, null);
  296. Assert.assertEquals("wrong step to route1ts",
  297. HttpRouteDirector.CONNECT_PROXY, step);
  298. step = rowdy.nextStep(route1tls, null);
  299. Assert.assertEquals("wrong step to route1tls",
  300. HttpRouteDirector.CONNECT_PROXY, step);
  301. step = rowdy.nextStep(route1, route1);
  302. Assert.assertEquals("complete route1 not detected",
  303. HttpRouteDirector.COMPLETE, step);
  304. step = rowdy.nextStep(route1t, route1t);
  305. Assert.assertEquals("complete route1t not detected",
  306. HttpRouteDirector.COMPLETE, step);
  307. step = rowdy.nextStep(route1tl, route1tl);
  308. Assert.assertEquals("complete route1tl not detected",
  309. HttpRouteDirector.COMPLETE, step);
  310. step = rowdy.nextStep(route1s, route1s);
  311. Assert.assertEquals("complete route1s not detected",
  312. HttpRouteDirector.COMPLETE, step);
  313. step = rowdy.nextStep(route1ts, route1ts);
  314. Assert.assertEquals("complete route1ts not detected",
  315. HttpRouteDirector.COMPLETE, step);
  316. step = rowdy.nextStep(route1tls, route1tls);
  317. Assert.assertEquals("complete route1tls not detected",
  318. HttpRouteDirector.COMPLETE, step);
  319. step = rowdy.nextStep(route1, route1t);
  320. Assert.assertEquals("unreachable route1 from 1t not detected",
  321. HttpRouteDirector.UNREACHABLE, step);
  322. step = rowdy.nextStep(route1, route1tl);
  323. Assert.assertEquals("unreachable route1 from 1tl not detected",
  324. HttpRouteDirector.UNREACHABLE, step);
  325. // unrequested security is currently not tolerated
  326. step = rowdy.nextStep(route1, route1s);
  327. Assert.assertEquals("unreachable route1 from 1s not detected",
  328. HttpRouteDirector.UNREACHABLE, step);
  329. step = rowdy.nextStep(route1, route1ts);
  330. Assert.assertEquals("unreachable route1 from 1ts not detected",
  331. HttpRouteDirector.UNREACHABLE, step);
  332. step = rowdy.nextStep(route1, route1tls);
  333. Assert.assertEquals("unreachable route1 from 1tls not detected",
  334. HttpRouteDirector.UNREACHABLE, step);
  335. // securing requires layering
  336. step = rowdy.nextStep(route1s, route1);
  337. Assert.assertEquals("unreachable route1s from 1 not detected",
  338. HttpRouteDirector.UNREACHABLE, step);
  339. // securing requires layering, and multiple layers are not supported
  340. step = rowdy.nextStep(route1tls, route1tl);
  341. Assert.assertEquals("unreachable route1tls from 1tl not detected",
  342. HttpRouteDirector.UNREACHABLE, step);
  343. // cases where tunnelling to the target is required
  344. step = rowdy.nextStep(route1t, route1);
  345. Assert.assertEquals("wrong step to route1t from 1",
  346. HttpRouteDirector.TUNNEL_TARGET, step);
  347. step = rowdy.nextStep(route1tl, route1);
  348. Assert.assertEquals("wrong step to route1tl from 1",
  349. HttpRouteDirector.TUNNEL_TARGET, step);
  350. step = rowdy.nextStep(route1tls, route1);
  351. Assert.assertEquals("wrong step to route1tls from 1",
  352. HttpRouteDirector.TUNNEL_TARGET, step);
  353. // cases where layering on the tunnel is required
  354. step = rowdy.nextStep(route1tl, route1t);
  355. Assert.assertEquals("wrong step to route1tl from 1t",
  356. HttpRouteDirector.LAYER_PROTOCOL, step);
  357. step = rowdy.nextStep(route1tl, route1ts);
  358. Assert.assertEquals("wrong step to route1tl from 1ts",
  359. HttpRouteDirector.LAYER_PROTOCOL, step);
  360. step = rowdy.nextStep(route1tls, route1t);
  361. Assert.assertEquals("wrong step to route1tls from 1t",
  362. HttpRouteDirector.LAYER_PROTOCOL, step);
  363. step = rowdy.nextStep(route1tls, route1ts);
  364. Assert.assertEquals("wrong step to route1tls from 1ts",
  365. HttpRouteDirector.LAYER_PROTOCOL, step);
  366. // There are some odd cases left over, like having a secure tunnel
  367. // that becomes unsecure by layering, or a secure connection to a
  368. // proxy that becomes unsecure by tunnelling to another proxy.
  369. }
  370. }