当前位置: 首页>>代码示例>>Java>>正文


Java TunnelType类代码示例

本文整理汇总了Java中org.apache.http.conn.routing.RouteInfo.TunnelType的典型用法代码示例。如果您正苦于以下问题:Java TunnelType类的具体用法?Java TunnelType怎么用?Java TunnelType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


TunnelType类属于org.apache.http.conn.routing.RouteInfo包,在下文中一共展示了TunnelType类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testAuthDefaultHttpsPortWhenProxy

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testAuthDefaultHttpsPortWhenProxy() throws Exception {
    final HttpRequest request = new BasicHttpRequest("GET", "/stuff");

    this.target = new HttpHost("localhost", -1, "https");
    final HttpRoute route = new HttpRoute(
            new HttpHost("localhost", 443, "https"), null,
            new HttpHost("localhost", 8888), true, TunnelType.TUNNELLED, LayerType.LAYERED);

    final HttpClientContext context = HttpClientContext.create();
    context.setAttribute(HttpCoreContext.HTTP_TARGET_HOST, this.target);
    context.setAttribute(HttpClientContext.HTTP_ROUTE, route);
    context.setAttribute(HttpClientContext.COOKIE_STORE, this.cookieStore);
    context.setAttribute(HttpClientContext.COOKIESPEC_REGISTRY, this.cookieSpecRegistry);

    final HttpRequestInterceptor interceptor = new RequestAddCookies();
    interceptor.process(request, context);

    final CookieOrigin cookieOrigin = context.getCookieOrigin();
    Assert.assertNotNull(cookieOrigin);
    Assert.assertEquals(this.target.getHostName(), cookieOrigin.getHost());
    Assert.assertEquals(443, cookieOrigin.getPort());
    Assert.assertEquals("/stuff", cookieOrigin.getPath());
    Assert.assertTrue(cookieOrigin.isSecure());
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:26,代码来源:TestRequestAddCookies.java

示例2: testConnectionKeepAliveForTunneledRequests

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testConnectionKeepAliveForTunneledRequests() throws Exception {
    final HttpRequest request = new BasicHttpRequest("GET", "/");
    final HttpClientContext context = HttpClientContext.create();

    final HttpHost target = new HttpHost("localhost", 443, "https");
    final HttpHost proxy = new HttpHost("localhost", 8080);
    final HttpRoute route = new HttpRoute(target, null, proxy, true,
            TunnelType.TUNNELLED, LayerType.LAYERED);

    context.setAttribute(HttpClientContext.HTTP_ROUTE, route);

    final HttpRequestInterceptor interceptor = new RequestClientConnControl();
    interceptor.process(request, context);

    final Header header1 = request.getFirstHeader(HTTP.CONN_DIRECTIVE);
    Assert.assertNotNull(header1);
    Assert.assertEquals(HTTP.CONN_KEEP_ALIVE, header1.getValue());
    final Header header2 = request.getFirstHeader("Proxy-Connection");
    Assert.assertNull(header2);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:22,代码来源:TestRequestClientConnControl.java

示例3: testProxyConnectionKeepAliveForRequestsOverProxy

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testProxyConnectionKeepAliveForRequestsOverProxy() throws Exception {
    final HttpRequest request = new BasicHttpRequest("GET", "/");
    final HttpClientContext context = HttpClientContext.create();

    final HttpHost target = new HttpHost("localhost", 80, "http");
    final HttpHost proxy = new HttpHost("localhost", 8080);
    final HttpRoute route = new HttpRoute(target, null, proxy, false,
            TunnelType.PLAIN, LayerType.PLAIN);

    context.setAttribute(HttpClientContext.HTTP_ROUTE, route);

    final HttpRequestInterceptor interceptor = new RequestClientConnControl();
    interceptor.process(request, context);

    final Header header1 = request.getFirstHeader("Proxy-Connection");
    Assert.assertNotNull(header1);
    Assert.assertEquals(HTTP.CONN_KEEP_ALIVE, header1.getValue());
    final Header header2 = request.getFirstHeader(HTTP.CONN_DIRECTIVE);
    Assert.assertNull(header2);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:22,代码来源:TestRequestClientConnControl.java

示例4: testPreserveCustomConnectionHeader

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testPreserveCustomConnectionHeader() throws Exception {
    final HttpRequest request = new BasicHttpRequest("GET", "/");
    request.addHeader(HTTP.CONN_DIRECTIVE, HTTP.CONN_CLOSE);
    final HttpClientContext context = HttpClientContext.create();

    final HttpHost target = new HttpHost("localhost", 443, "https");
    final HttpHost proxy = new HttpHost("localhost", 8080);
    final HttpRoute route = new HttpRoute(target, null, proxy, true,
            TunnelType.TUNNELLED, LayerType.LAYERED);

    context.setAttribute(HttpClientContext.HTTP_ROUTE, route);

    final HttpRequestInterceptor interceptor = new RequestClientConnControl();
    interceptor.process(request, context);

    final Header header1 = request.getFirstHeader(HTTP.CONN_DIRECTIVE);
    Assert.assertNotNull(header1);
    Assert.assertEquals(HTTP.CONN_CLOSE, header1.getValue());
    final Header header2 = request.getFirstHeader("Proxy-Connection");
    Assert.assertNull(header2);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:23,代码来源:TestRequestClientConnControl.java

示例5: testPreserveCustomProxyConnectionHeader

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testPreserveCustomProxyConnectionHeader() throws Exception {
    final HttpRequest request = new BasicHttpRequest("GET", "/");
    request.addHeader("Proxy-Connection", HTTP.CONN_CLOSE);
    final HttpClientContext context = HttpClientContext.create();

    final HttpHost target = new HttpHost("localhost", 80, "http");
    final HttpHost proxy = new HttpHost("localhost", 8080);
    final HttpRoute route = new HttpRoute(target, null, proxy, false,
            TunnelType.PLAIN, LayerType.PLAIN);

    context.setAttribute(HttpClientContext.HTTP_ROUTE, route);

    final HttpRequestInterceptor interceptor = new RequestClientConnControl();
    interceptor.process(request, context);

    final Header header1 = request.getFirstHeader("Proxy-Connection");
    Assert.assertNotNull(header1);
    Assert.assertEquals(HTTP.CONN_CLOSE, header1.getValue());
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:21,代码来源:TestRequestClientConnControl.java

示例6: testCstr4

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@SuppressWarnings("unused")
@Test
public void testCstr4() {
    // test convenience constructor with 4 arguments
    HttpRoute route = new HttpRoute(TARGET2, null, PROXY2, false);
    HttpRoute should = new HttpRoute
        (TARGET2, null, new HttpHost[]{ PROXY2 }, false,
         TunnelType.PLAIN, LayerType.PLAIN);
    Assert.assertEquals("bad convenience route 4/insecure", route, should);

    route = new HttpRoute(TARGET2, LOCAL42, PROXY1, true);
    should = new HttpRoute
        (TARGET2, LOCAL42, new HttpHost[]{ PROXY1 }, true,
         TunnelType.TUNNELLED, LayerType.LAYERED);
    Assert.assertEquals("bad convenience route 4/secure", route, should);

    // this constructor REQUIRES a proxy to be specified
    try {
        new HttpRoute(TARGET1, LOCAL61, null, false);
        Assert.fail("missing proxy not detected");
    } catch (final IllegalArgumentException iax) {
        // expected
    }
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:25,代码来源:TestHttpRoute.java

示例7: testCstr6

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testCstr6() {
    // test convenience constructor with 6 arguments
    HttpRoute route = new HttpRoute
        (TARGET2, null, PROXY2, true,
         TunnelType.TUNNELLED, LayerType.PLAIN);
    HttpRoute should = new HttpRoute
        (TARGET2, null, new HttpHost[]{ PROXY2 }, true,
         TunnelType.TUNNELLED, LayerType.PLAIN);
    Assert.assertEquals("bad convenience route 6/proxied", route, should);

    route = new HttpRoute
        (TARGET2, null, (HttpHost) null, true,
         TunnelType.PLAIN, LayerType.LAYERED);
    should = new HttpRoute
        (TARGET2, null, (HttpHost[]) null, true,
         TunnelType.PLAIN, LayerType.LAYERED);
    Assert.assertEquals("bad convenience route 6/direct", route, should);

    // handling of null vs. empty chain is checked in the equals tests
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:22,代码来源:TestHttpRoute.java

示例8: testImmutable

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testImmutable() throws CloneNotSupportedException {

    final HttpHost[] proxies = new HttpHost[]{ PROXY1, PROXY2, PROXY3 };
    final HttpRoute route1 = new HttpRoute(TARGET1, null, proxies, false,
                                     TunnelType.PLAIN, LayerType.PLAIN);
    final HttpRoute route2 = (HttpRoute) route1.clone();
    final HttpRoute route3 = new HttpRoute(TARGET1, null,
                                     proxies.clone(), false,
                                     TunnelType.PLAIN, LayerType.PLAIN);

    // modify the array that was passed to the constructor of route1
    proxies[1] = PROXY3;
    proxies[2] = PROXY2;

    Assert.assertEquals("route differs from clone", route2, route1);
    Assert.assertEquals("route was modified", route3, route1);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:19,代码来源:TestHttpRoute.java

示例9: checkCTLS

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
/** Helper to check the status of the four flags. */
public final static void checkCTLS(final RouteTracker rt,
                                   final boolean c, final boolean t,
                                   final boolean l, final boolean s) {
    final String rts = rt.toString();
    Assert.assertEquals("wrong flag connected: " + rts, c, rt.isConnected());
    Assert.assertEquals("wrong flag tunnelled: " + rts, t, rt.isTunnelled());
    Assert.assertEquals("wrong enum tunnelled: " + rts,
                 t ? TunnelType.TUNNELLED : TunnelType.PLAIN,
                 rt.getTunnelType());
    Assert.assertEquals("wrong flag layered: "   + rts, l, rt.isLayered());
    Assert.assertEquals("wrong enum layered: "   + rts,
                 l ? LayerType.LAYERED : LayerType.PLAIN,
                 rt.getLayerType());
    Assert.assertEquals("wrong flag secure: "    + rts, s, rt.isSecure());
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:17,代码来源:TestRouteTracker.java

示例10: testCstrFullRoute

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testCstrFullRoute() {
    // create a route with all arguments and check the details
    final HttpHost[] chain3 = { PROXY1, PROXY2, PROXY3 };

    final HttpRoute route = new HttpRoute(TARGET1, LOCAL41, chain3, false,
                                    TunnelType.PLAIN, LayerType.PLAIN);
    Assert.assertEquals("wrong target",
                 TARGET1, route.getTargetHost());
    Assert.assertEquals("wrong local address",
                 LOCAL41, route.getLocalAddress());
    Assert.assertEquals("wrong proxy host",
                 PROXY1, route.getProxyHost());
    Assert.assertEquals("wrong hop count",
                 4, route.getHopCount());
    Assert.assertEquals("wrong hop 0",
                 PROXY1, route.getHopTarget(0));
    Assert.assertEquals("wrong hop 1",
                 PROXY2, route.getHopTarget(1));
    Assert.assertEquals("wrong hop 2",
                 PROXY3, route.getHopTarget(2));
    Assert.assertEquals("wrong hop 3",
                 TARGET1, route.getHopTarget(3));
    Assert.assertFalse("wrong flag: secured", route.isSecure());
    Assert.assertFalse("wrong flag: tunnelled", route.isTunnelled());
    Assert.assertFalse("wrong flag: layered", route.isLayered());

    final String routestr = route.toString();
    Assert.assertTrue("missing target in toString",
            routestr.contains(TARGET1.getHostName()));
    Assert.assertTrue("missing local address in toString",
            routestr.contains(LOCAL41.toString()));
    Assert.assertTrue("missing proxy 1 in toString",
            routestr.contains(PROXY1.getHostName()));
    Assert.assertTrue("missing proxy 2 in toString",
            routestr.contains(PROXY2.getHostName()));
    Assert.assertTrue("missing proxy 3 in toString",
            routestr.contains(PROXY3.getHostName()));
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:40,代码来源:TestHttpRoute.java

示例11: testNullEnums

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testNullEnums() {

    // tests the default values for the enum parameters
    // also covers the accessors for the enum attributes

    final HttpRoute route = new HttpRoute(TARGET1, null, PROXY1, false,
                                    null, null); // here are defaults

    Assert.assertFalse("default tunnelling", route.isTunnelled());
    Assert.assertEquals("untunnelled", TunnelType.PLAIN, route.getTunnelType());

    Assert.assertFalse("default layering", route.isLayered());
    Assert.assertEquals("unlayered", LayerType.PLAIN, route.getLayerType());
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:16,代码来源:TestHttpRoute.java

示例12: testCstr1

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testCstr1() {
    final HttpRoute route = new HttpRoute(TARGET2);
    final HttpRoute should = new HttpRoute
        (TARGET2, null, (HttpHost[]) null, false,
         TunnelType.PLAIN, LayerType.PLAIN);
    Assert.assertEquals("bad convenience route", route, should);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:9,代码来源:TestHttpRoute.java

示例13: testCstr3

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testCstr3() {
    // test convenience constructor with 3 arguments
    HttpRoute route = new HttpRoute(TARGET2, LOCAL61, false);
    HttpRoute should = new HttpRoute
        (TARGET2, LOCAL61, (HttpHost[]) null, false,
         TunnelType.PLAIN, LayerType.PLAIN);
    Assert.assertEquals("bad convenience route 3/insecure", route, should);

    route = new HttpRoute(TARGET2, null, true);
    should = new HttpRoute(TARGET2, null, (HttpHost[]) null, true,
                           TunnelType.PLAIN, LayerType.PLAIN);
    Assert.assertEquals("bad convenience route 3/secure", route, should);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:15,代码来源:TestHttpRoute.java

示例14: testProxyRoutes

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testProxyRoutes() {

    final HttpRouteDirector rd = new BasicRouteDirector();
    HttpRoute r = new HttpRoute(TARGET2, null, PROXY1, false);
    RouteTracker rt = new RouteTracker(r);
    boolean complete = checkVia(rt, r, rd, 2);
    Assert.assertTrue("incomplete route 1", complete);

    // tunnelled, but neither secure nor layered
    r = new HttpRoute(TARGET1, LOCAL61, PROXY3, false,
                      TunnelType.TUNNELLED, LayerType.PLAIN);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 3);
    Assert.assertTrue("incomplete route 2", complete);

    // tunnelled, layered, but not secure
    r = new HttpRoute(TARGET1, LOCAL61, PROXY3, false,
                      TunnelType.TUNNELLED, LayerType.LAYERED);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 4);
    Assert.assertTrue("incomplete route 3", complete);

    // tunnelled, layered, secure
    r = new HttpRoute(TARGET1, LOCAL61, PROXY3, true);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 4);
    Assert.assertTrue("incomplete route 4", complete);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:30,代码来源:TestRouteTracker.java

示例15: testProxyChainRoutes

import org.apache.http.conn.routing.RouteInfo.TunnelType; //导入依赖的package包/类
@Test
public void testProxyChainRoutes() {

    final HttpRouteDirector rd = new BasicRouteDirector();
    HttpHost[] proxies = { PROXY1, PROXY2 };
    HttpRoute r = new HttpRoute(TARGET2, LOCAL42, proxies, false,
                                TunnelType.PLAIN, LayerType.PLAIN);
    RouteTracker rt = new RouteTracker(r);
    boolean complete = checkVia(rt, r, rd, 3);
    Assert.assertTrue("incomplete route 1", complete);

    // tunnelled, but neither secure nor layered
    proxies = new HttpHost[]{ PROXY3, PROXY2 };
    r = new HttpRoute(TARGET1, null, proxies, false,
                      TunnelType.TUNNELLED, LayerType.PLAIN);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 4);
    Assert.assertTrue("incomplete route 2", complete);

    // tunnelled, layered, but not secure
    proxies = new HttpHost[]{ PROXY3, PROXY2, PROXY1 };
    r = new HttpRoute(TARGET2, LOCAL61, proxies, false,
                      TunnelType.TUNNELLED, LayerType.LAYERED);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 6);
    Assert.assertTrue("incomplete route 3", complete);

    // tunnelled, layered, secure
    proxies = new HttpHost[]{ PROXY1, PROXY3 };
    r = new HttpRoute(TARGET1, LOCAL61, proxies, true,
                      TunnelType.TUNNELLED, LayerType.LAYERED);
    rt = new RouteTracker(r);
    complete = checkVia(rt, r, rd, 5);
    Assert.assertTrue("incomplete route 4", complete);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:36,代码来源:TestRouteTracker.java


注:本文中的org.apache.http.conn.routing.RouteInfo.TunnelType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。