/httpcomponents-client-4.1.3/httpclient/src/test/java/org/apache/http/conn/routing/TestRouteDirector.java

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