Skip to content

Commit a78ef27

Browse files
authoredOct 11, 2024··
Convert play-mvc-2.6 groovy to java (#12340)
1 parent 5b94674 commit a78ef27

File tree

9 files changed

+513
-444
lines changed

9 files changed

+513
-444
lines changed
 

‎instrumentation/play/play-mvc/play-mvc-2.6/javaagent/build.gradle.kts

+5-7
Original file line numberDiff line numberDiff line change
@@ -60,19 +60,17 @@ testing {
6060
}
6161
}
6262

63+
val testLatestDeps = findProperty("testLatestDeps") as Boolean
6364
tasks {
64-
if (findProperty("testLatestDeps") as Boolean) {
65+
if (testLatestDeps) {
6566
// disable regular test running and compiling tasks when latest dep test task is run
6667
named("test") {
6768
enabled = false
6869
}
69-
named("compileTestGroovy") {
70-
enabled = false
71-
}
70+
}
7271

73-
check {
74-
dependsOn(testing.suites)
75-
}
72+
check {
73+
dependsOn(testing.suites)
7674
}
7775
}
7876

‎instrumentation/play/play-mvc/play-mvc-2.6/javaagent/src/latestDepTest/groovy/server/PlayAsyncServerTest.groovy

-99
This file was deleted.

‎instrumentation/play/play-mvc/play-mvc-2.6/javaagent/src/latestDepTest/groovy/server/PlayServerTest.groovy

-118
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
/*
2+
* Copyright The OpenTelemetry Authors
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
package io.opentelemetry.javaagent.instrumentation.play.v2_6;
7+
8+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.CAPTURE_HEADERS;
9+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.ERROR;
10+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.EXCEPTION;
11+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.INDEXED_CHILD;
12+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.QUERY_PARAM;
13+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.REDIRECT;
14+
import static io.opentelemetry.instrumentation.testing.junit.http.ServerEndpoint.SUCCESS;
15+
16+
import java.util.concurrent.CompletableFuture;
17+
import java.util.concurrent.ExecutorService;
18+
import java.util.concurrent.Executors;
19+
import play.Mode;
20+
import play.libs.concurrent.HttpExecution;
21+
import play.mvc.Result;
22+
import play.mvc.Results;
23+
import play.routing.RoutingDsl;
24+
import play.server.Server;
25+
import scala.concurrent.ExecutionContextExecutor;
26+
27+
class PlayAsyncServerTest extends PlayServerTest {
28+
29+
private static final ExecutorService executor = Executors.newCachedThreadPool();
30+
31+
@Override
32+
protected Server setupServer() {
33+
ExecutionContextExecutor executionContextExecutor = HttpExecution.fromThread(executor);
34+
return Server.forRouter(
35+
Mode.TEST,
36+
port,
37+
components ->
38+
RoutingDsl.fromComponents(components)
39+
.GET(SUCCESS.getPath())
40+
.routingAsync(
41+
request ->
42+
CompletableFuture.supplyAsync(
43+
() ->
44+
controller(
45+
SUCCESS,
46+
() -> Results.status(SUCCESS.getStatus(), SUCCESS.getBody())),
47+
executionContextExecutor))
48+
.GET(QUERY_PARAM.getPath())
49+
.routingAsync(
50+
request ->
51+
CompletableFuture.supplyAsync(
52+
() ->
53+
controller(
54+
QUERY_PARAM,
55+
() ->
56+
Results.status(
57+
QUERY_PARAM.getStatus(), QUERY_PARAM.getBody())),
58+
executionContextExecutor))
59+
.GET(REDIRECT.getPath())
60+
.routingAsync(
61+
request ->
62+
CompletableFuture.supplyAsync(
63+
() -> controller(REDIRECT, () -> Results.found(REDIRECT.getBody())),
64+
executionContextExecutor))
65+
.GET(ERROR.getPath())
66+
.routingAsync(
67+
request ->
68+
CompletableFuture.supplyAsync(
69+
() ->
70+
controller(
71+
ERROR,
72+
() -> Results.status(ERROR.getStatus(), ERROR.getBody())),
73+
executionContextExecutor))
74+
.GET(EXCEPTION.getPath())
75+
.routingAsync(
76+
request ->
77+
CompletableFuture.supplyAsync(
78+
() ->
79+
controller(
80+
EXCEPTION,
81+
() -> {
82+
throw new IllegalArgumentException(EXCEPTION.getBody());
83+
}),
84+
executionContextExecutor))
85+
.GET(CAPTURE_HEADERS.getPath())
86+
.routingAsync(
87+
request ->
88+
CompletableFuture.supplyAsync(
89+
() ->
90+
controller(
91+
CAPTURE_HEADERS,
92+
() -> {
93+
Result result =
94+
Results.status(
95+
CAPTURE_HEADERS.getStatus(),
96+
CAPTURE_HEADERS.getBody());
97+
return request
98+
.header("X-Test-Request")
99+
.map(value -> result.withHeader("X-Test-Response", value))
100+
.orElse(result);
101+
}),
102+
executionContextExecutor))
103+
.GET(INDEXED_CHILD.getPath())
104+
.routingAsync(
105+
request -> {
106+
String id = request.queryString("id").orElse(null);
107+
return CompletableFuture.supplyAsync(
108+
() ->
109+
controller(
110+
INDEXED_CHILD,
111+
() -> {
112+
INDEXED_CHILD.collectSpanAttributes(
113+
name -> "id".equals(name) ? id : null);
114+
return Results.status(
115+
INDEXED_CHILD.getStatus(), INDEXED_CHILD.getBody());
116+
}),
117+
executionContextExecutor);
118+
})
119+
.build());
120+
}
121+
122+
@Override
123+
protected void stopServer(Server server) {
124+
server.stop();
125+
executor.shutdown();
126+
}
127+
}

0 commit comments

Comments
 (0)