1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 }