View Javadoc
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  
28  package org.apache.hc.core5.testing.classic;
29  
30  import java.io.IOException;
31  
32  import org.apache.hc.core5.http.ClassicHttpResponse;
33  import org.apache.hc.core5.http.HeaderElements;
34  import org.apache.hc.core5.http.HttpException;
35  import org.apache.hc.core5.http.HttpHeaders;
36  import org.apache.hc.core5.http.URIScheme;
37  import org.apache.hc.core5.http.impl.bootstrap.HttpRequester;
38  import org.apache.hc.core5.http.impl.bootstrap.HttpServer;
39  import org.apache.hc.core5.http.impl.bootstrap.StandardFilter;
40  import org.apache.hc.core5.http.impl.routing.RequestRouter;
41  import org.apache.hc.core5.http.io.HttpFilterChain;
42  import org.apache.hc.core5.http.io.HttpRequestHandler;
43  import org.apache.hc.core5.http.io.SocketConfig;
44  import org.apache.hc.core5.testing.classic.extension.HttpRequesterResource;
45  import org.apache.hc.core5.testing.classic.extension.HttpServerResource;
46  import org.apache.hc.core5.testing.extension.SocksProxyResource;
47  import org.apache.hc.core5.util.Timeout;
48  import org.junit.jupiter.api.Order;
49  import org.junit.jupiter.api.extension.RegisterExtension;
50  
51  public abstract class ClassicHttp1SocksProxyCoreTransportTest extends ClassicHttpCoreTransportTest {
52  
53      private static final Timeout TIMEOUT = Timeout.ofMinutes(1);
54  
55      @RegisterExtension
56      @Order(-Integer.MAX_VALUE)
57      private final SocksProxyResource proxyResource;
58      @RegisterExtension
59      private final HttpServerResource serverResource;
60      @RegisterExtension
61      private final HttpRequesterResource clientResource;
62  
63      public ClassicHttp1SocksProxyCoreTransportTest(final URIScheme scheme) {
64          super(scheme);
65          this.proxyResource = new SocksProxyResource();
66          this.serverResource = new HttpServerResource(scheme, bootstrap -> bootstrap
67                  .setSocketConfig(SocketConfig.custom()
68                          .setSoTimeout(TIMEOUT)
69                          .build())
70                  .setRequestRouter(RequestRouter.<HttpRequestHandler>builder()
71                          .addRoute(RequestRouter.LOCAL_AUTHORITY, "*", new EchoHandler())
72                          .resolveAuthority(RequestRouter.LOCAL_AUTHORITY_RESOLVER)
73                          .build())
74                  .addFilterBefore(StandardFilter.MAIN_HANDLER.name(), "no-keep-alive", (request, responseTrigger, context, chain) ->
75                          chain.proceed(request, new HttpFilterChain.ResponseTrigger() {
76  
77                              @Override
78                              public void sendInformation(
79                                      final ClassicHttpResponse response) throws HttpException, IOException {
80                                  responseTrigger.sendInformation(response);
81                              }
82  
83                              @Override
84                              public void submitResponse(
85                                      final ClassicHttpResponse response) throws HttpException, IOException {
86                                  if (request.getPath().startsWith("/no-keep-alive")) {
87                                      response.setHeader(HttpHeaders.CONNECTION, HeaderElements.CLOSE);
88                                  }
89                                  responseTrigger.submitResponse(response);
90                              }
91  
92                          }, context)));
93          this.clientResource = new HttpRequesterResource(bootstrap -> bootstrap
94                  .setSocketConfig(SocketConfig.custom()
95                          .setSocksProxyAddress(proxyResource.proxy().getProxyAddress())
96                          .setSoTimeout(TIMEOUT)
97                          .build()));
98      }
99  
100     @Override
101     HttpServer serverStart() throws IOException {
102         return serverResource.start();
103     }
104 
105     @Override
106     HttpRequester clientStart() throws IOException {
107         return clientResource.start();
108     }
109 
110 }