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.io.HttpFilterChain;
41  import org.apache.hc.core5.http.io.SocketConfig;
42  import org.apache.hc.core5.testing.classic.extension.HttpRequesterResource;
43  import org.apache.hc.core5.testing.classic.extension.HttpServerResource;
44  import org.apache.hc.core5.util.Timeout;
45  import org.junit.jupiter.api.extension.RegisterExtension;
46  
47  public abstract class ClassicHttp1CoreTransportTest extends ClassicHttpCoreTransportTest {
48  
49      private static final Timeout TIMEOUT = Timeout.ofMinutes(1);
50  
51      @RegisterExtension
52      private final HttpServerResource serverResource;
53      @RegisterExtension
54      private final HttpRequesterResource clientResource;
55  
56      public ClassicHttp1CoreTransportTest(final URIScheme scheme) {
57          super(scheme);
58          this.serverResource = new HttpServerResource(scheme, bootstrap -> bootstrap
59                  .setSocketConfig(SocketConfig.custom()
60                          .setSoTimeout(TIMEOUT)
61                          .build())
62                  .register("*", new EchoHandler())
63                  .addFilterBefore(StandardFilter.MAIN_HANDLER.name(), "no-keep-alive", (request, responseTrigger, context, chain) ->
64                          chain.proceed(request, new HttpFilterChain.ResponseTrigger() {
65  
66                              @Override
67                              public void sendInformation(
68                                      final ClassicHttpResponse response) throws HttpException, IOException {
69                                  responseTrigger.sendInformation(response);
70                              }
71  
72                              @Override
73                              public void submitResponse(
74                                      final ClassicHttpResponse response) throws HttpException, IOException {
75                                  if (request.getPath().startsWith("/no-keep-alive")) {
76                                      response.setHeader(HttpHeaders.CONNECTION, HeaderElements.CLOSE);
77                                  }
78                                  responseTrigger.submitResponse(response);
79                              }
80  
81                          }, context)));
82          this.clientResource = new HttpRequesterResource(bootstrap -> bootstrap
83                  .setSocketConfig(SocketConfig.custom()
84                          .setSoTimeout(TIMEOUT)
85                          .build()));
86      }
87  
88      @Override
89      HttpServer serverStart() throws IOException {
90          return serverResource.start();
91      }
92  
93      @Override
94      HttpRequester clientStart() throws IOException {
95          return clientResource.start();
96      }
97  
98  }