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.nio.extension;
29  
30  import java.util.function.Consumer;
31  
32  import org.apache.hc.core5.http.impl.bootstrap.AsyncRequesterBootstrap;
33  import org.apache.hc.core5.http.impl.bootstrap.HttpAsyncRequester;
34  import org.apache.hc.core5.http.nio.ssl.BasicClientTlsStrategy;
35  import org.apache.hc.core5.io.CloseMode;
36  import org.apache.hc.core5.testing.SSLTestContexts;
37  import org.apache.hc.core5.testing.classic.LoggingConnPoolListener;
38  import org.apache.hc.core5.testing.nio.LoggingHttp1StreamListener;
39  import org.apache.hc.core5.testing.nio.LoggingIOSessionDecorator;
40  import org.apache.hc.core5.testing.nio.LoggingIOSessionListener;
41  import org.junit.jupiter.api.Assertions;
42  import org.junit.jupiter.api.extension.AfterEachCallback;
43  import org.junit.jupiter.api.extension.BeforeEachCallback;
44  import org.junit.jupiter.api.extension.ExtensionContext;
45  import org.slf4j.Logger;
46  import org.slf4j.LoggerFactory;
47  
48  public class HttpAsyncRequesterResource implements BeforeEachCallback, AfterEachCallback {
49  
50      private static final Logger LOG = LoggerFactory.getLogger(HttpAsyncRequesterResource.class);
51  
52      private final Consumer<AsyncRequesterBootstrap> bootstrapCustomizer;
53  
54      private HttpAsyncRequester requester;
55  
56      public HttpAsyncRequesterResource(final Consumer<AsyncRequesterBootstrap> bootstrapCustomizer) {
57          this.bootstrapCustomizer = bootstrapCustomizer;
58      }
59  
60      @Override
61      public void beforeEach(final ExtensionContext extensionContext) throws Exception {
62          LOG.debug("Starting up test client");
63          final AsyncRequesterBootstrap bootstrap = AsyncRequesterBootstrap.bootstrap()
64                  .setTlsStrategy(new BasicClientTlsStrategy(SSLTestContexts.createClientSSLContext()))
65                  .setMaxTotal(2)
66                  .setDefaultMaxPerRoute(2)
67                  .setIOSessionListener(LoggingIOSessionListener.INSTANCE)
68                  .setStreamListener(LoggingHttp1StreamListener.INSTANCE_CLIENT)
69                  .setConnPoolListener(LoggingConnPoolListener.INSTANCE)
70                  .setIOSessionDecorator(LoggingIOSessionDecorator.INSTANCE);
71          bootstrapCustomizer.accept(bootstrap);
72          requester = bootstrap.create();
73      }
74  
75      @Override
76      public void afterEach(final ExtensionContext extensionContext) throws Exception {
77          LOG.debug("Shutting down test client");
78          if (requester != null) {
79              try {
80                  requester.close(CloseMode.GRACEFUL);
81              } catch (final Exception ignore) {
82              }
83          }
84      }
85  
86      public HttpAsyncRequester start() {
87          Assertions.assertNotNull(requester);
88          requester.start();
89          return requester;
90      }
91  
92  }