Skip to content

Commit fd32898

Browse files
authored
feat: improve error handling (#1214)
Signed-off-by: Nick Zimmermann <[email protected]>
1 parent 9958432 commit fd32898

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/bean/GoFeatureFlagResponse.java

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public class GoFeatureFlagResponse {
1212
private String version;
1313
private String reason;
1414
private String errorCode;
15+
private String message;
1516
private Object value;
1617
private Boolean cacheable;
1718
private Map<String, Object> metadata;

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/controller/GoFeatureFlagController.java

+12-5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import dev.openfeature.sdk.Reason;
2828
import dev.openfeature.sdk.exceptions.FlagNotFoundError;
2929
import dev.openfeature.sdk.exceptions.GeneralError;
30+
import dev.openfeature.sdk.exceptions.InvalidContextError;
3031
import dev.openfeature.sdk.exceptions.OpenFeatureError;
3132
import dev.openfeature.sdk.exceptions.TypeMismatchError;
3233
import java.io.IOException;
@@ -156,17 +157,23 @@ public <T> EvaluationResponse<T> evaluateFlag(
156157
}
157158

158159
try (Response response = this.httpClient.newCall(reqBuilder.build()).execute()) {
159-
if (response.code() == HttpURLConnection.HTTP_UNAUTHORIZED) {
160-
throw new GeneralError("invalid token used to contact GO Feature Flag relay proxy instance");
161-
}
162-
if (response.code() >= HttpURLConnection.HTTP_BAD_REQUEST) {
163-
throw new GeneralError("impossible to contact GO Feature Flag relay proxy instance");
160+
if (response.code() == HttpURLConnection.HTTP_UNAUTHORIZED
161+
|| response.code() == HttpURLConnection.HTTP_FORBIDDEN) {
162+
throw new GeneralError("authentication/authorization error");
164163
}
165164

166165
ResponseBody responseBody = response.body();
167166
String body = responseBody != null ? responseBody.string() : "";
168167
GoFeatureFlagResponse goffResp = responseMapper.readValue(body, GoFeatureFlagResponse.class);
169168

169+
if (response.code() == HttpURLConnection.HTTP_BAD_REQUEST) {
170+
throw new InvalidContextError("Invalid context " + goffResp.getMessage());
171+
}
172+
173+
if (response.code() == HttpURLConnection.HTTP_INTERNAL_ERROR) {
174+
throw new GeneralError("Unknown error while retrieving flag " + goffResp.getMessage());
175+
}
176+
170177
if (Reason.DISABLED.name().equalsIgnoreCase(goffResp.getReason())) {
171178
// we don't set a variant since we are using the default value, and we are not able to
172179
// know

providers/go-feature-flag/src/test/java/dev/openfeature/contrib/providers/gofeatureflag/GoFeatureFlagProviderTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void should_throw_an_error_if_endpoint_not_available() {
238238
.value(false)
239239
.reason(Reason.ERROR.name())
240240
.errorCode(ErrorCode.GENERAL)
241-
.errorMessage("impossible to contact GO Feature Flag relay proxy instance")
241+
.errorMessage("unknown error while retrieving flag fail_500")
242242
.build();
243243
assertEquals(want, got);
244244
}
@@ -259,7 +259,7 @@ void should_throw_an_error_if_invalid_api_key() {
259259
.value(false)
260260
.reason(Reason.ERROR.name())
261261
.errorCode(ErrorCode.GENERAL)
262-
.errorMessage("invalid token used to contact GO Feature Flag relay proxy instance")
262+
.errorMessage("authentication/authorization error")
263263
.build();
264264
assertEquals(want, got);
265265
}

0 commit comments

Comments
 (0)