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