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.extension;
29  
30  import java.io.IOException;
31  import java.util.function.Consumer;
32  
33  import org.apache.hc.core5.http.URIScheme;
34  import org.apache.hc.core5.http.impl.bootstrap.HttpServer;
35  import org.apache.hc.core5.http.impl.bootstrap.ServerBootstrap;
36  import org.apache.hc.core5.io.CloseMode;
37  import org.apache.hc.core5.testing.SSLTestContexts;
38  import org.apache.hc.core5.testing.classic.LoggingExceptionListener;
39  import org.apache.hc.core5.testing.classic.LoggingHttp1StreamListener;
40  import org.junit.jupiter.api.Assertions;
41  import org.junit.jupiter.api.extension.AfterEachCallback;
42  import org.junit.jupiter.api.extension.BeforeEachCallback;
43  import org.junit.jupiter.api.extension.ExtensionContext;
44  import org.slf4j.Logger;
45  import org.slf4j.LoggerFactory;
46  
47  public class HttpServerResource implements BeforeEachCallback, AfterEachCallback {
48  
49      private static final Logger LOG = LoggerFactory.getLogger(HttpServerResource.class);
50  
51      private final URIScheme scheme;
52      private final Consumer<ServerBootstrap> bootstrapCustomizer;
53  
54      private HttpServer server;
55  
56      public HttpServerResource(final URIScheme scheme, final Consumer<ServerBootstrap> bootstrapCustomizer) {
57          this.scheme = scheme;
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 ServerBootstrap bootstrap = ServerBootstrap.bootstrap()
66                  .setSslContext(scheme == URIScheme.HTTPS ? SSLTestContexts.createServerSSLContext() : null)
67                  .setExceptionListener(LoggingExceptionListener.INSTANCE)
68                  .setStreamListener(LoggingHttp1StreamListener.INSTANCE);
69          bootstrapCustomizer.accept(bootstrap);
70          server = bootstrap.create();
71      }
72  
73      @Override
74      public void afterEach(final ExtensionContext extensionContext) throws Exception {
75          LOG.debug("Shutting down test server");
76          if (server != null) {
77              try {
78                  server.close(CloseMode.IMMEDIATE);
79              } catch (final Exception ignore) {
80              }
81          }
82      }
83  
84      public HttpServer start() throws IOException {
85          Assertions.assertNotNull(server);
86          server.start();
87          return server;
88      }
89  
90  }