-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBenchmarkIntegrationTest.java
More file actions
222 lines (192 loc) · 8.45 KB
/
BenchmarkIntegrationTest.java
File metadata and controls
222 lines (192 loc) · 8.45 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* Copyright 2026 The Netty VirtualThread Scheduler Project
*
* The Netty VirtualThread Scheduler Project licenses this file to you under the Apache License,
* version 2.0 (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at:
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package io.netty.loom.benchmark.runner;
import io.restassured.http.ContentType;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.stream.Stream;
import static io.restassured.RestAssured.given;
import static org.awaitility.Awaitility.await;
import static org.hamcrest.Matchers.*;
import static org.junit.jupiter.api.Assertions.*;
/**
* Integration test that verifies MockHttpServer and HandoffHttpServer work
* correctly together with different configurations.
* <p>
* Tests cover:
* <ul>
* <li>NIO I/O with virtual Netty mode (mock server)</li>
* <li>NIO I/O with non-virtual Netty mode (mock server)</li>
* <li>NIO I/O with virtual Netty mode (mockless)</li>
* <li>NIO I/O with non-virtual Netty mode (mockless)</li>
* </ul>
* <p>
* Note: NETTY_SCHEDULER mode requires
* {@code -Djdk.virtualThreadScheduler.implClass=io.netty.loom.NettyScheduler}
* and is therefore not covered here.
*/
class BenchmarkIntegrationTest {
private static final AtomicInteger PORT_COUNTER = new AtomicInteger(19000);
private MockHttpServer mockServer;
private HandoffHttpServer handoffServer;
private int mockPort;
private int handoffPort;
static Stream<Arguments> serverConfigurations() {
return Stream.of(
// IO type, mode, mockless, description
Arguments.of(HandoffHttpServer.IO.NIO, HandoffHttpServer.Mode.VIRTUAL_NETTY, false,
"NIO with Netty on FJ"),
Arguments.of(HandoffHttpServer.IO.NIO, HandoffHttpServer.Mode.NON_VIRTUAL_NETTY, false,
"NIO with platform IO + VT blocking"),
Arguments.of(HandoffHttpServer.IO.NIO, HandoffHttpServer.Mode.VIRTUAL_NETTY, true,
"NIO with Netty on FJ (mockless)"),
Arguments.of(HandoffHttpServer.IO.NIO, HandoffHttpServer.Mode.NON_VIRTUAL_NETTY, true,
"NIO with platform IO + VT blocking (mockless)"));
}
void startServers(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless) throws Exception {
// Use unique ports for each test to avoid conflicts
mockPort = PORT_COUNTER.getAndIncrement();
handoffPort = PORT_COUNTER.getAndIncrement();
// Start mock server with minimal think time for fast tests
mockServer = new MockHttpServer(mockPort, 0, 1);
mockServer.start();
// Wait for mock server to be ready
await().atMost(5, TimeUnit.SECONDS).until(() -> {
try {
return given().port(mockPort).when().get("/health").statusCode() == 200;
} catch (Exception e) {
return false;
}
});
// Start handoff server with specified configuration
handoffServer = new HandoffHttpServer(handoffPort, "http://localhost:" + mockPort + "/fruits", 1, ioType, true,
mockless, mode);
handoffServer.start();
// Wait for handoff server to be ready
await().atMost(5, TimeUnit.SECONDS).until(() -> {
try {
return given().port(handoffPort).when().get("/health").statusCode() == 200;
} catch (Exception e) {
return false;
}
});
}
@AfterEach
void stopServers() {
if (handoffServer != null) {
handoffServer.stop();
handoffServer = null;
}
if (mockServer != null) {
mockServer.stop();
mockServer = null;
}
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void mockServerHealthEndpoint(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(mockPort).when().get("/health").then().statusCode(200).body(equalTo("OK"));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void mockServerFruitsEndpoint(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(mockPort).when().get("/fruits").then().statusCode(200).contentType(ContentType.JSON)
.body("fruits", hasSize(10)).body("fruits[0].name", equalTo("Apple"))
.body("fruits[0].color", equalTo("Red")).body("fruits[0].price", equalTo(1.20f));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServerHealthEndpoint(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(handoffPort).when().get("/health").then().statusCode(200).body(equalTo("OK"));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServerFruitsEndpoint(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(handoffPort).when().get("/fruits").then().statusCode(200).contentType(ContentType.JSON)
.body("fruits", hasSize(10)).body("fruits[0].name", equalTo("Apple"))
.body("fruits[0].color", equalTo("Red"));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServerRootEndpoint(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(handoffPort).when().get("/").then().statusCode(200).contentType(ContentType.JSON).body("fruits",
hasSize(10));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServer404ForUnknownPath(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
given().port(handoffPort).when().get("/unknown").then().statusCode(404);
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServerReturnsAllFruits(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
List<String> fruitNames = given().port(handoffPort).when().get("/fruits").then().statusCode(200).extract()
.jsonPath().getList("fruits.name", String.class);
assertEquals(10, fruitNames.size());
assertTrue(fruitNames.contains("Apple"));
assertTrue(fruitNames.contains("Banana"));
assertTrue(fruitNames.contains("Kiwi"));
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void handoffServerHandlesMultipleRequests(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode,
boolean mockless, String description) throws Exception {
startServers(ioType, mode, mockless);
// Send multiple requests to verify server handles concurrent load
for (int i = 0; i < 10; i++) {
given().port(handoffPort).when().get("/fruits").then().statusCode(200).body("fruits", hasSize(10));
}
}
@ParameterizedTest(name = "{3}")
@MethodSource("serverConfigurations")
void verifyEndToEndJsonParsing(HandoffHttpServer.IO ioType, HandoffHttpServer.Mode mode, boolean mockless,
String description) throws Exception {
startServers(ioType, mode, mockless);
// This test verifies the complete flow:
// 1. HandoffHttpServer receives request
// 2. In non-mockless mode: makes blocking call to MockHttpServer
// In mockless mode: uses cached JSON bytes directly
// 3. Parses JSON with Jackson into Fruit objects
// 4. Re-encodes and returns
FruitsResponse response = given().port(handoffPort).when().get("/fruits").then().statusCode(200).extract()
.as(FruitsResponse.class);
assertNotNull(response);
assertNotNull(response.fruits());
assertEquals(10, response.fruits().size());
Fruit apple = response.fruits().stream().filter(f -> "Apple".equals(f.name())).findFirst().orElse(null);
assertNotNull(apple);
assertEquals("Red", apple.color());
assertEquals(1.20, apple.price(), 0.01);
}
}