-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathUnleashConfigTest.java
More file actions
394 lines (331 loc) · 15.4 KB
/
UnleashConfigTest.java
File metadata and controls
394 lines (331 loc) · 15.4 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
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
package io.getunleash.util;
import static io.getunleash.util.UnleashConfig.*;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.mockito.Mockito.when;
import io.getunleash.CustomHttpHeadersProvider;
import io.getunleash.DefaultCustomHttpHeadersProviderImpl;
import io.getunleash.RunOnJavaVersions;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Field;
import java.net.*;
import java.net.Authenticator.RequestorType;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.function.Executable;
import org.mockito.Mockito;
public class UnleashConfigTest {
@Test
public void should_require_unleasAPI_url() {
Executable ex = () -> UnleashConfig.builder().appName("test").build();
assertThrows(IllegalStateException.class, ex);
}
@Test
public void should_require_app_name() {
Executable ex = () -> UnleashConfig.builder().unleashAPI("http://unleash.com").build();
assertThrows(IllegalStateException.class, ex);
}
@Test
public void should_require_valid_uri() {
Executable ex = () -> UnleashConfig.builder().unleashAPI("this is not a uri").build();
assertThrows(IllegalArgumentException.class, ex);
}
@Test
public void should_build_config() {
UnleashConfig config =
UnleashConfig.builder()
.appName("my-app")
.instanceId("my-instance-1")
.unleashAPI("http://unleash.org")
.build();
assertThat(config.getAppName()).isEqualTo("my-app");
assertThat(config.getInstanceId()).isEqualTo("my-instance-1");
assertThat(config.getUnleashAPI()).isEqualTo(URI.create("http://unleash.org"));
}
@Test
public void should_generate_backupfile() {
UnleashConfig config =
UnleashConfig.builder().appName("my-app").unleashAPI("http://unleash.org").build();
assertThat(config.getAppName()).isEqualTo("my-app");
String tmpDir = System.getProperty("java.io.tmpdir");
tmpDir = tmpDir.endsWith(File.separator) ? tmpDir : tmpDir + File.separatorChar;
assertThat(config.getBackupFile()).isEqualTo(tmpDir + "unleash-my-app-repo.json");
}
@Test
public void should_generate_backupfile_app_name_with_slash() {
UnleashConfig config =
UnleashConfig.builder()
.appName("fix/baz-123456")
.unleashAPI("http://unleash.org")
.build();
assertThat(config.getAppName()).isEqualTo("fix/baz-123456");
String tmpDir = System.getProperty("java.io.tmpdir");
tmpDir = tmpDir.endsWith(File.separator) ? tmpDir : tmpDir + File.separatorChar;
assertThat(config.getBackupFile())
.isEqualTo(tmpDir + "unleash-" + "fix-baz-123456" + "-repo.json");
}
@Test
public void should_generate_backupfile_app_name_with_backslash() {
UnleashConfig config =
UnleashConfig.builder()
.appName("fix\\baz-123456")
.unleashAPI("http://unleash.org")
.build();
assertThat(config.getAppName()).isEqualTo("fix\\baz-123456");
String tmpDir = System.getProperty("java.io.tmpdir");
tmpDir = tmpDir.endsWith(File.separator) ? tmpDir : tmpDir + File.separatorChar;
assertThat(config.getBackupFile())
.isEqualTo(tmpDir + "unleash-" + "fix-baz-123456" + "-repo.json");
}
@Test
public void should_use_provided_backupfile() {
UnleashConfig config =
UnleashConfig.builder()
.appName("my-app")
.backupFile("/test/unleash-backup.json")
.unleashAPI("http://unleash.org")
.build();
assertThat(config.getAppName()).isEqualTo("my-app");
assertThat(config.getBackupFile()).isEqualTo("/test/unleash-backup.json");
}
@Test
public void should_set_sdk_version() {
UnleashConfig config =
UnleashConfig.builder().appName("my-app").unleashAPI("http://unleash.org").build();
assertThat(config.getSdkVersion()).isEqualTo("unleash-java-sdk:development");
}
@Test
public void should_set_environment_to_default() {
UnleashConfig config =
UnleashConfig.builder().appName("my-app").unleashAPI("http://unleash.org").build();
assertThat(config.getEnvironment()).isEqualTo("default");
}
@Test
public void should_set_environment() {
String env = "prod";
UnleashConfig config =
UnleashConfig.builder()
.appName("my-app")
.environment(env)
.unleashAPI("http://unleash.org")
.build();
assertThat(config.getEnvironment()).isEqualTo(env);
}
@Test
public void should_add_client_identification_headers_to_connection() throws IOException {
String appName = "my-app";
String instanceId = "my-instance-1";
String unleashAPI = "http://unleash.org";
UnleashConfig unleashConfig =
UnleashConfig.builder()
.appName(appName)
.instanceId(instanceId)
.unleashAPI(unleashAPI)
.build();
URL someUrl = new URL(unleashAPI + "/some/arbitrary/path");
HttpURLConnection connection = (HttpURLConnection) someUrl.openConnection();
UnleashConfig.setRequestProperties(connection, unleashConfig);
assertThat(connection.getRequestProperty(UNLEASH_APP_NAME_HEADER)).isEqualTo(appName);
assertThat(connection.getRequestProperty(UNLEASH_INSTANCE_ID_HEADER)).isEqualTo(instanceId);
assertThat(connection.getRequestProperty(UNLEASH_CONNECTION_ID_HEADER))
.isEqualTo(unleashConfig.getConnectionId());
assertThat(connection.getRequestProperty(UNLEASH_SDK_HEADER))
.isEqualTo("unleash-java-sdk:development");
assertThat(connection.getRequestProperty("User-Agent")).isEqualTo(appName);
}
@Test
public void should_add_custom_headers_to_connection_if_present() throws IOException {
String unleashAPI = "http://unleash.org";
String headerName = "UNLEASH-CUSTOM-TEST-HEADER";
String headerValue = "Some value";
UnleashConfig unleashConfig =
UnleashConfig.builder()
.appName("my-app")
.instanceId("my-instance-1")
.unleashAPI(unleashAPI)
.customHttpHeader(headerName, headerValue)
.build();
URL someUrl = new URL(unleashAPI + "/some/arbitrary/path");
HttpURLConnection connection = (HttpURLConnection) someUrl.openConnection();
UnleashConfig.setRequestProperties(connection, unleashConfig);
assertThat(connection.getRequestProperty(headerName)).isEqualTo(headerValue);
}
@Test
public void should_add_custom_headers_from_provider_to_connection_if_present()
throws IOException {
String unleashAPI = "http://unleash.org";
Map<String, String> result =
new HashMap<String, String>() {
{
put("PROVIDER-HEADER", "Provider Value");
}
};
CustomHttpHeadersProvider provider =
Mockito.mock(DefaultCustomHttpHeadersProviderImpl.class);
when(provider.getCustomHeaders()).thenReturn(result);
UnleashConfig unleashConfig =
UnleashConfig.builder()
.appName("my-app")
.instanceId("my-instance-1")
.unleashAPI(unleashAPI)
.customHttpHeadersProvider(provider)
.build();
URL someUrl = new URL(unleashAPI + "/some/arbitrary/path");
HttpURLConnection connection = (HttpURLConnection) someUrl.openConnection();
UnleashConfig.setRequestProperties(connection, unleashConfig);
for (String key : result.keySet()) {
assertThat(connection.getRequestProperty(key)).isEqualTo(result.get(key));
}
}
@Test
public void should_require_instanceId() {
Executable ex =
() ->
UnleashConfig.builder()
.appName("my-app")
.instanceId(null)
.unleashAPI("http://unleash.org")
.build();
assertThrows(IllegalStateException.class, ex);
}
@Test
@RunOnJavaVersions(javaVersions = {"1.8", "11"})
public void should_enable_proxy_based_on_jvm_settings()
throws IllegalAccessException, NoSuchFieldException {
String proxyHost = "proxy-host";
String proxyPort = "8080";
String proxyUser = "my-proxy-user";
String proxyPassword = "my-secret";
System.setProperty("http.proxyHost", proxyHost);
System.setProperty("http.proxyPort", proxyPort);
System.setProperty("http.proxyUser", proxyUser);
System.setProperty("http.proxyPassword", proxyPassword);
UnleashConfig config =
UnleashConfig.builder()
.appName("my-app")
.unleashAPI("http://unleash.org")
.enableProxyAuthenticationByJvmProperties()
.build();
Field authenticator = Authenticator.class.getDeclaredField("theAuthenticator");
authenticator.setAccessible(true);
UnleashConfig.SystemProxyAuthenticator proxyAuthenticator =
(UnleashConfig.SystemProxyAuthenticator) authenticator.get(null);
Field requestingAuthType =
proxyAuthenticator
.getClass()
.getSuperclass()
.getDeclaredField("requestingAuthType");
requestingAuthType.setAccessible(true);
requestingAuthType.set(proxyAuthenticator, RequestorType.PROXY);
Field requestingProtocol =
proxyAuthenticator
.getClass()
.getSuperclass()
.getDeclaredField("requestingProtocol");
requestingProtocol.setAccessible(true);
requestingProtocol.set(proxyAuthenticator, "http");
Field requestingHost =
proxyAuthenticator.getClass().getSuperclass().getDeclaredField("requestingHost");
requestingHost.setAccessible(true);
requestingHost.set(proxyAuthenticator, proxyHost);
Field requestingPort =
proxyAuthenticator.getClass().getSuperclass().getDeclaredField("requestingPort");
requestingPort.setAccessible(true);
requestingPort.set(proxyAuthenticator, 8080);
PasswordAuthentication passwordAuthentication =
proxyAuthenticator.getPasswordAuthentication();
assertThat(passwordAuthentication.getUserName()).isEqualTo(proxyUser);
assertThat(new String(passwordAuthentication.getPassword())).isEqualTo(proxyPassword);
assertThat(config.isProxyAuthenticationByJvmProperties()).isEqualTo(true);
}
@Test
@RunOnJavaVersions(javaVersions = {"1.8", "11"})
public void should_use_specified_proxy() throws IllegalAccessException, NoSuchFieldException {
String proxyHost = "proxy-host";
int proxyPort = 8080;
String proxyUser = "my-proxy-user";
String proxyPassword = "my-secret";
UnleashConfig config =
UnleashConfig.builder()
.appName("my-app")
.unleashAPI("http://unleash.org")
.proxy(
new Proxy(
Proxy.Type.HTTP,
new InetSocketAddress(proxyHost, proxyPort)),
proxyUser,
proxyPassword)
.build();
Field authenticator = Authenticator.class.getDeclaredField("theAuthenticator");
authenticator.setAccessible(true);
UnleashConfig.CustomProxyAuthenticator proxyAuthenticator =
(UnleashConfig.CustomProxyAuthenticator) authenticator.get(null);
Field requestingAuthType =
proxyAuthenticator
.getClass()
.getSuperclass()
.getDeclaredField("requestingAuthType");
requestingAuthType.setAccessible(true);
requestingAuthType.set(proxyAuthenticator, RequestorType.PROXY);
Field requestingProtocol =
proxyAuthenticator
.getClass()
.getSuperclass()
.getDeclaredField("requestingProtocol");
requestingProtocol.setAccessible(true);
requestingProtocol.set(proxyAuthenticator, "http");
Field requestingHost =
proxyAuthenticator.getClass().getSuperclass().getDeclaredField("requestingHost");
requestingHost.setAccessible(true);
requestingHost.set(proxyAuthenticator, proxyHost);
Field requestingPort =
proxyAuthenticator.getClass().getSuperclass().getDeclaredField("requestingPort");
requestingPort.setAccessible(true);
requestingPort.set(proxyAuthenticator, 8080);
PasswordAuthentication passwordAuthentication =
proxyAuthenticator.getPasswordAuthentication();
assertThat(passwordAuthentication.getUserName()).isEqualTo(proxyUser);
assertThat(new String(passwordAuthentication.getPassword())).isEqualTo(proxyPassword);
assertThat(config.isProxyAuthenticationByJvmProperties()).isEqualTo(false);
}
@Test
public void clientIdentifierIsDeterministic() {
UnleashConfig config =
UnleashConfig.builder()
.apiKey("someapikey")
.appName("test-app")
.instanceId("myinstance")
.unleashAPI("http://localhost:4242")
.build();
assertThat(config.getClientIdentifier()).isEqualTo(config.getClientIdentifier());
}
@Test
public void clientIdentifierWithoutApiKeyShouldNotThrowException() {
UnleashConfig config =
UnleashConfig.builder()
.appName("test-app")
.instanceId("myiunstance")
.unleashAPI("http://localhost:4242")
.build();
assertDoesNotThrow(config::getClientIdentifier);
}
@Test
public void clientIdentifierWithoutInstanceIdStillWorks() {
UnleashConfig config =
UnleashConfig.builder()
.apiKey("someapikey")
.appName("test-app")
.unleashAPI("http://localhost:4242")
.build();
assertDoesNotThrow(config::getClientIdentifier);
}
@Test
public void should_require_unleash_uri() {
Executable ex =
() -> UnleashConfig.builder().apiKey("someapikey").appName("my-app").build();
assertThrows(IllegalStateException.class, ex);
}
}