-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExactUrlMatchingIT.java
More file actions
100 lines (81 loc) · 2.93 KB
/
Copy pathExactUrlMatchingIT.java
File metadata and controls
100 lines (81 loc) · 2.93 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
package com.retailsvc.http;
import static java.net.HttpURLConnection.HTTP_NOT_FOUND;
import static java.net.HttpURLConnection.HTTP_OK;
import static org.assertj.core.api.Assertions.assertThat;
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.util.Map;
import org.junit.jupiter.api.Test;
class ExactUrlMatchingIT extends ServerBaseTest {
@Test
void extraRouteRejectsTrailingSuffix() throws Exception {
try (var s =
newBuilder()
.spec(spec)
.handlers(stubAllHandlers(Map.of()))
.port(0)
.extraRoute("/alive", Handlers.aliveHandler())
.build();
var client = httpClient()) {
HttpResponse<String> resp = get(client, s, "/alive232");
assertThat(resp.statusCode()).isEqualTo(HTTP_NOT_FOUND);
}
}
@Test
void extraRouteRejectsSubPath() throws Exception {
try (var s =
newBuilder()
.spec(spec)
.handlers(stubAllHandlers(Map.of()))
.port(0)
.extraRoute("/alive", Handlers.aliveHandler())
.build();
var client = httpClient()) {
HttpResponse<String> resp = get(client, s, "/alive/34");
assertThat(resp.statusCode()).isEqualTo(HTTP_NOT_FOUND);
}
}
@Test
void extraRouteAcceptsExactPath() throws Exception {
try (var s =
newBuilder()
.spec(spec)
.handlers(stubAllHandlers(Map.of()))
.port(0)
.extraRoute("/alive", Handlers.aliveHandler())
.build();
var client = httpClient()) {
HttpResponse<String> resp = get(client, s, "/alive");
assertThat(resp.statusCode()).isEqualTo(204);
}
}
@Test
void specRouteRejectsTrailingSuffix() throws Exception {
Map<String, RequestHandler> handlers = Map.of("get-data", req -> Response.status(HTTP_OK));
try (var s = newBuilder().spec(spec).handlers(stubAllHandlers(handlers)).port(0).build();
var client = httpClient()) {
HttpResponse<String> resp = get(client, s, "/api/v1/data232");
assertThat(resp.statusCode()).isEqualTo(HTTP_NOT_FOUND);
}
}
@Test
void specRouteRejectsBasePathSuffix() throws Exception {
try (var s = newBuilder().spec(spec).handlers(stubAllHandlers(Map.of())).port(0).build();
var client = httpClient()) {
HttpResponse<String> resp = get(client, s, "/api/v1xyz/data");
assertThat(resp.statusCode()).isEqualTo(HTTP_NOT_FOUND);
}
}
private HttpResponse<String> get(HttpClient client, OpenApiServer s, String path)
throws Exception {
var req =
HttpRequest.newBuilder()
.uri(URI.create("http://localhost:" + s.listenPort() + path))
.GET()
.build();
return client.send(req, BodyHandlers.ofString());
}
}