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.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 }