Skip to content

Commit 4001cd9

Browse files
committed
feature: Exclude graphql paths by default
1 parent 8f428c0 commit 4001cd9

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

openapi-validation-api/src/main/java/com/getyourguide/openapi/validation/api/selector/DefaultTrafficSelector.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public class DefaultTrafficSelector implements TrafficSelector {
1212

1313
private final double sampleRate;
1414
private final Set<String> excludedPaths;
15+
private final Set<String> defaultExcludedPaths;
1516
private final List<ExcludedHeader> excludedHeaders;
1617
private final Boolean shouldFailOnRequestViolation;
1718
private final Boolean shouldFailOnResponseViolation;
@@ -28,6 +29,7 @@ public DefaultTrafficSelector(
2829
Boolean shouldFailOnResponseViolation
2930
) {
3031
this.sampleRate = sampleRate;
32+
this.defaultExcludedPaths = Set.of("/graphql", "/graphiql");
3133
this.excludedPaths = excludedPaths != null ? excludedPaths : Set.of();
3234
this.excludedHeaders = excludedHeaders != null ? excludedHeaders : Collections.emptyList();
3335
this.shouldFailOnRequestViolation = shouldFailOnRequestViolation != null ? shouldFailOnRequestViolation : false;
@@ -82,7 +84,8 @@ private boolean isRequestExcludedByHeader(RequestMetaData request) {
8284
}
8385

8486
private boolean isRequestExcludedByPath(RequestMetaData request) {
85-
return excludedPaths.contains(request.getUri().getPath());
87+
var path = request.getUri().getPath();
88+
return defaultExcludedPaths.contains(path) || excludedPaths.contains(path);
8689
}
8790

8891
private static boolean methodEquals(String method, String expectedMethod) {

openapi-validation-api/src/test/java/com/getyourguide/openapi/validation/api/selector/DefaultTrafficSelectorTest.java

+17-1
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,18 @@ public void testIsExcludedByHeaderPattern() {
3131

3232
assertHeaderIsExcluded(true, "x-is-bot", "true");
3333
assertHeaderIsExcluded(false, "x-is-bot", "truebot");
34+
}
35+
36+
@Test
37+
public void testIsExcludedByPath() {
38+
// Default exclusions
39+
assertPathIsExcluded(true, "/graphql");
40+
assertPathIsExcluded(true, "/graphiql");
3441

42+
assertPathIsExcluded(false, "/v1/path");
3543
}
3644

3745
private void assertHeaderIsExcluded(boolean expectedExclusion, String headerName, String headerValue) {
38-
3946
var request = new RequestMetaData(
4047
"GET",
4148
URI.create("https://api.example.com/v1/path"),
@@ -48,6 +55,15 @@ private void assertHeaderIsExcluded(boolean expectedExclusion, String headerName
4855
assertEquals(!expectedExclusion, trafficSelector.shouldRequestBeValidated(request));
4956
}
5057

58+
private void assertPathIsExcluded(boolean expectedExclusion, String path) {
59+
var request = new RequestMetaData(
60+
"GET",
61+
URI.create("https://api.example.com" + path),
62+
Map.of("Content-Type", "application/json")
63+
);
64+
assertEquals(!expectedExclusion, trafficSelector.shouldRequestBeValidated(request));
65+
}
66+
5167
private Map<String, String> toCaseInsensitiveMap(Map<String, String> map) {
5268
var newMap = new TreeMap<String, String>(String.CASE_INSENSITIVE_ORDER);
5369
newMap.putAll(map);

0 commit comments

Comments
 (0)