|
| 1 | +/* |
| 2 | + * Copyright The OpenTelemetry Authors |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + */ |
| 5 | + |
1 | 6 | package io.opentelemetry.instrumentation.httpserver;
|
2 | 7 |
|
3 | 8 | import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.CAPTURE_HEADERS;
|
|
9 | 14 | import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.REDIRECT;
|
10 | 15 | import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.SUCCESS;
|
11 | 16 |
|
12 |
| -import java.io.IOException; |
13 |
| -import java.io.OutputStream; |
14 |
| -import java.net.InetSocketAddress; |
15 |
| -import java.nio.charset.Charset; |
16 |
| -import java.util.ArrayList; |
17 |
| -import java.util.Collections; |
18 |
| -import java.util.List; |
19 |
| -import java.util.Map; |
20 |
| - |
21 | 17 | import com.sun.net.httpserver.Filter;
|
22 | 18 | import com.sun.net.httpserver.HttpContext;
|
23 | 19 | import com.sun.net.httpserver.HttpExchange;
|
24 | 20 | import com.sun.net.httpserver.HttpServer;
|
25 |
| - |
26 | 21 | import io.opentelemetry.api.trace.Span;
|
27 | 22 | import io.opentelemetry.instrumentation.testing.junit.http.AbstractHttpServerTest;
|
28 | 23 | import io.opentelemetry.instrumentation.testing.junit.http.HttpServerTestOptions;
|
29 | 24 | import io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint;
|
30 | 25 | import io.opentelemetry.testing.internal.armeria.common.QueryParams;
|
| 26 | +import java.io.IOException; |
| 27 | +import java.io.OutputStream; |
| 28 | +import java.net.InetSocketAddress; |
| 29 | +import java.nio.charset.Charset; |
| 30 | +import java.util.ArrayList; |
| 31 | +import java.util.Collections; |
| 32 | +import java.util.List; |
| 33 | +import java.util.Map; |
31 | 34 |
|
32 | 35 | public abstract class AbstractJdkHttpServerTest extends AbstractHttpServerTest<HttpServer> {
|
33 | 36 |
|
|
0 commit comments