forked from open-feature/java-sdk-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlagsmithProviderTest.java
413 lines (370 loc) · 18.6 KB
/
FlagsmithProviderTest.java
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
package dev.openfeature.contrib.providers.flagsmith;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.flagsmith.config.FlagsmithConfig;
import dev.openfeature.contrib.providers.flagsmith.exceptions.InvalidCacheOptionsException;
import dev.openfeature.contrib.providers.flagsmith.exceptions.InvalidOptionsException;
import dev.openfeature.sdk.EvaluationContext;
import dev.openfeature.sdk.MutableContext;
import dev.openfeature.sdk.MutableStructure;
import dev.openfeature.sdk.ProviderEvaluation;
import dev.openfeature.sdk.Reason;
import dev.openfeature.sdk.Value;
import dev.openfeature.sdk.exceptions.FlagNotFoundError;
import dev.openfeature.sdk.exceptions.GeneralError;
import java.io.IOException;
import java.lang.reflect.Method;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.stream.Stream;
import lombok.SneakyThrows;
import okhttp3.mockwebserver.MockResponse;
import okhttp3.mockwebserver.MockWebServer;
import okhttp3.mockwebserver.QueueDispatcher;
import okhttp3.mockwebserver.RecordedRequest;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertThrows;
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public class FlagsmithProviderTest {
public static MockWebServer mockFlagsmithServer;
public static MockWebServer mockFlagsmithErrorServer;
public static FlagsmithProvider flagsmithProvider;
final QueueDispatcher dispatcher = new QueueDispatcher() {
@SneakyThrows
@Override
public MockResponse dispatch(RecordedRequest request) {
if (request.getPath().startsWith("/flags/")) {
return new MockResponse()
.setBody(readMockResponse("valid_flags_response.json"))
.addHeader("Content-Type", "application/json");
}
if (request.getPath().startsWith("/identities/")) {
return new MockResponse()
.setBody(readMockResponse("valid_identity_response.json"))
.addHeader("Content-Type", "application/json");
}
if (request.getPath().startsWith("/environment-document/")) {
return new MockResponse()
.setBody(readMockResponse("environment-document.json"))
.addHeader("Content-Type", "application/json");
}
return new MockResponse().setResponseCode(404);
}
};
final QueueDispatcher errorDispatcher = new QueueDispatcher() {
@SneakyThrows
@Override
public MockResponse dispatch(RecordedRequest request) {
return new MockResponse().setResponseCode(500);
}
};
private static Stream<Arguments> provideKeysForFlagResolution() {
return Stream.of(
Arguments.of("true_key", "getBooleanEvaluation", Boolean.class, "true"),
Arguments.of("false_key", "getBooleanEvaluation", Boolean.class, "false"),
Arguments.of("string_key", "getStringEvaluation", String.class, "string_value"),
Arguments.of("int_key", "getIntegerEvaluation", Integer.class, "1"),
Arguments.of("double_key", "getDoubleEvaluation", Double.class, "3.141"),
Arguments.of("object_key", "getObjectEvaluation", Value.class, "{\"name\":\"json\"}")
);
}
private static Stream<Arguments> provideDisabledKeysForFlagResolution() {
return Stream.of(
Arguments.of("true_key_disabled", "getBooleanEvaluation", Boolean.class, "false"),
Arguments.of("false_key_disabled", "getBooleanEvaluation", Boolean.class, "true"),
Arguments
.of("string_key_disabled", "getStringEvaluation", String.class, "no_string_value"),
Arguments.of("int_key_disabled", "getIntegerEvaluation", Integer.class, "2"),
Arguments.of("double_key_disabled", "getDoubleEvaluation", Double.class, "1.47"),
Arguments
.of("object_key_disabled", "getObjectEvaluation", Value.class, "{\"name\":\"not_json\"}")
);
}
private static Stream<Arguments> provideBooleanKeysForEnabledFlagResolution() {
return Stream.of(
Arguments.of("true_key", "true", null),
Arguments.of("false_key", "true", null),
Arguments.of("true_key_disabled", "false", Reason.DISABLED.name()),
Arguments.of("false_key_disabled", "false", Reason.DISABLED.name())
);
}
private static Stream<Arguments> invalidOptions() {
return Stream.of(
null,
Arguments.of(FlagsmithProviderOptions.builder().build()),
Arguments.of(FlagsmithProviderOptions.builder().apiKey("").build())
);
}
private static Stream<Arguments> invalidCacheOptions() {
return Stream.of(
Arguments
.of(FlagsmithProviderOptions.builder().apiKey("API_KEY").expireCacheAfterAccess(1)
.build()),
Arguments
.of(FlagsmithProviderOptions.builder().apiKey("API_KEY").maxCacheSize(1).build()),
Arguments
.of(FlagsmithProviderOptions.builder().apiKey("API_KEY").expireCacheAfterWrite(1)
.build()),
Arguments.of(FlagsmithProviderOptions.builder().apiKey("API_KEY").recordCacheStats(true)
.build())
);
}
@BeforeEach
void setUp() throws IOException {
mockFlagsmithServer = new MockWebServer();
mockFlagsmithServer.setDispatcher(this.dispatcher);
mockFlagsmithServer.start();
// Error server will always result in FlagsmithApiError's used for
// tests that need to handle this type of error
mockFlagsmithErrorServer = new MockWebServer();
mockFlagsmithErrorServer.setDispatcher(this.errorDispatcher);
mockFlagsmithErrorServer.start();
FlagsmithProviderOptions options = FlagsmithProviderOptions.builder()
.apiKey("API_KEY")
.baseUri(String
.format("http://localhost:%s",
mockFlagsmithServer
.getPort()))
.usingBooleanConfigValue(true)
.build();
flagsmithProvider = new FlagsmithProvider(options);
}
@AfterEach
void tearDown() throws IOException {
mockFlagsmithServer.shutdown();
mockFlagsmithErrorServer.shutdown();
}
@Test
void shouldInitializeProviderWhenAllOptionsSet() {
HashMap<String, String> headers =
new HashMap<String, String>() {{
put("header", "string");
}};
FlagsmithProviderOptions options =
FlagsmithProviderOptions.builder()
.apiKey("ser.API_KEY")
.baseUri(String
.format("http://localhost:%s",
mockFlagsmithServer
.getPort()))
.headers(headers)
.envFlagsCacheKey("CACHE_KEY")
.expireCacheAfterWriteTimeUnit(TimeUnit.MINUTES)
.expireCacheAfterWrite(10000)
.expireCacheAfterAccessTimeUnit(TimeUnit.MINUTES)
.expireCacheAfterAccess(10000)
.maxCacheSize(1)
.recordCacheStats(true)
.httpInterceptor(null)
.connectTimeout(10000)
.writeTimeout(10000)
.readTimeout(10000)
.retries(1)
.localEvaluation(true)
.environmentRefreshIntervalSeconds(1)
.enableAnalytics(true)
.usingBooleanConfigValue(false)
.supportedProtocols(Collections.singletonList(FlagsmithConfig.Protocol.HTTP_1_1))
.build();
assertDoesNotThrow(() -> new FlagsmithProvider(options));
}
@Test
void shouldGetMetadataAndValidateName() {
assertEquals("Flagsmith Provider", new FlagsmithProvider(FlagsmithProviderOptions.builder()
.apiKey("API_KEY")
.build())
.getMetadata().getName());
}
@ParameterizedTest
@MethodSource("invalidOptions")
void shouldThrowAnExceptionWhenOptionsInvalid(FlagsmithProviderOptions options) {
assertThrows(InvalidOptionsException.class, () -> new FlagsmithProvider(options));
}
@ParameterizedTest
@MethodSource("invalidCacheOptions")
void shouldThrowAnExceptionWhenCacheOptionsInvalid(FlagsmithProviderOptions options) {
assertThrows(InvalidCacheOptionsException.class, () -> new FlagsmithProvider(options));
}
@SneakyThrows
@ParameterizedTest
@MethodSource("provideKeysForFlagResolution")
void shouldResolveFlagCorrectlyWithCorrectFlagType(
String key, String methodName, Class<?> expectedType, String flagsmithResult) {
// Given
Object result = null;
EvaluationContext evaluationContext = new MutableContext();
// When
Method method = flagsmithProvider.getClass()
.getMethod(methodName, String.class, expectedType, EvaluationContext.class);
result = method.invoke(flagsmithProvider, key, null, evaluationContext);
// Then
ProviderEvaluation<Object> evaluation = (ProviderEvaluation<Object>) result;
String resultString = getResultString(evaluation.getValue(), expectedType);
assertEquals(flagsmithResult, resultString);
assertNull(evaluation.getErrorCode());
assertNull(evaluation.getReason());
}
@SneakyThrows
@ParameterizedTest
@MethodSource("provideKeysForFlagResolution")
void shouldResolveIdentityFlagCorrectlyWithCorrectFlagType(
String key, String methodName, Class<?> expectedType, String flagsmithResult) {
// Given
Object result = null;
MutableContext evaluationContext = new MutableContext();
evaluationContext.setTargetingKey("my-identity");
evaluationContext.add("trait1", "value1");
// When
Method method = flagsmithProvider.getClass()
.getMethod(methodName, String.class, expectedType, EvaluationContext.class);
result = method.invoke(flagsmithProvider, key, null, evaluationContext);
// Then
ProviderEvaluation<Object> evaluation = (ProviderEvaluation<Object>) result;
String resultString = getResultString(evaluation.getValue(), expectedType);
assertEquals(flagsmithResult, resultString);
assertNull(evaluation.getErrorCode());
assertNull(evaluation.getReason());
}
@SneakyThrows
@ParameterizedTest
@MethodSource("provideDisabledKeysForFlagResolution")
void shouldNotResolveFlagIfFlagIsInactiveInFlagsmithInsteadUsingDefaultValue(
String key, String methodName, Class<?> expectedType, String defaultValueString) {
// Given
Object defaultValue;
if (expectedType == String.class) {
defaultValue = defaultValueString;
} else if (expectedType == Value.class) {
Map<String, Value> map = new ObjectMapper()
.readValue(defaultValueString, HashMap.class);
defaultValue = new Value(new MutableStructure(map));
} else {
Method castMethod = expectedType.getMethod("valueOf", String.class);
defaultValue = castMethod.invoke(expectedType, defaultValueString);
}
Object result = null;
EvaluationContext evaluationContext = new MutableContext();
// When
Method method = flagsmithProvider.getClass()
.getMethod(methodName, String.class, expectedType, EvaluationContext.class);
result = method.invoke(flagsmithProvider, key, defaultValue, evaluationContext);
// Then
ProviderEvaluation<Object> evaluation = (ProviderEvaluation<Object>) result;
String resultString = getResultString(evaluation.getValue(), expectedType);
assertEquals(defaultValueString, resultString);
assertNull(evaluation.getErrorCode());
assertEquals(Reason.DISABLED.name(), evaluation.getReason());
}
@Test
void shouldNotResolveFlagIfExceptionThrownInFlagsmithInsteadUsingDefaultValue() {
// Given
String key = "missing_key";
EvaluationContext evaluationContext = new MutableContext();
assertThrows(
FlagNotFoundError.class,
() -> flagsmithProvider
.getBooleanEvaluation(key, true, new MutableContext())
);
}
@SneakyThrows
@ParameterizedTest
@MethodSource("provideBooleanKeysForEnabledFlagResolution")
void shouldResolveBooleanFlagUsingEnabledField(
String key, String flagsmithResult, String reason) {
// Given
FlagsmithProviderOptions options = FlagsmithProviderOptions.builder()
.apiKey("API_KEY")
.baseUri(String
.format("http://localhost:%s",
mockFlagsmithServer
.getPort()))
.build();
FlagsmithProvider booleanFlagsmithProvider = new FlagsmithProvider(options);
// When
ProviderEvaluation<Boolean> result =
booleanFlagsmithProvider.getBooleanEvaluation(key, true, new MutableContext());
// Then
String resultString = getResultString(result.getValue(), Boolean.class);
assertEquals(flagsmithResult, resultString);
assertNull(result.getErrorCode());
assertEquals(reason, result.getReason());
}
@Test
void shouldNotResolveBooleanFlagValueIfFlagsmithErrorThrown() {
// Given
FlagsmithProviderOptions options = FlagsmithProviderOptions.builder()
.apiKey("API_KEY")
.baseUri(String
.format("http://localhost:%s",
mockFlagsmithErrorServer
.getPort()))
.usingBooleanConfigValue(false)
.build();
FlagsmithProvider booleanFlagsmithProvider = new FlagsmithProvider(options);
// When
assertThrows(
GeneralError.class,
() ->
booleanFlagsmithProvider.getBooleanEvaluation(
"true_key", false, new MutableContext()
)
);
}
@Test
void shouldNotResolveFlagValueIfFlagsmithErrorThrown() {
// Given
FlagsmithProviderOptions options = FlagsmithProviderOptions.builder()
.apiKey("API_KEY")
.baseUri(String
.format("http://localhost:%s",
mockFlagsmithErrorServer
.getPort()))
.usingBooleanConfigValue(true)
.build();
FlagsmithProvider booleanFlagsmithProvider = new FlagsmithProvider(options);
// When
assertThrows(
GeneralError.class,
() ->
booleanFlagsmithProvider.getBooleanEvaluation(
"true_key", false, new MutableContext()
)
);
}
private String readMockResponse(String filename) throws IOException {
String file = getClass().getClassLoader().getResource("mock_responses/" + filename)
.getFile();
byte[] bytes = Files.readAllBytes(Paths.get(file));
return new String(bytes);
}
private String getResultString(Object responseValue, Class<?> expectedType)
throws JsonProcessingException {
String resultString = "";
if (expectedType == Value.class) {
Value value = (Value) responseValue;
try {
Map<String, Object> structure = value.asStructure().asObjectMap();
return new ObjectMapper().writeValueAsString(structure);
} catch (ClassCastException cce) {
Map<String, Value> structure = value.asStructure().asMap();
return new ObjectMapper().writeValueAsString(structure);
}
} else {
return responseValue.toString();
}
}
}