forked from auth0/auth0-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClientsEntityTest.java
More file actions
507 lines (408 loc) · 21.6 KB
/
ClientsEntityTest.java
File metadata and controls
507 lines (408 loc) · 21.6 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
package com.auth0.client.mgmt;
import com.auth0.client.mgmt.filter.ClientFilter;
import com.auth0.client.mgmt.filter.FieldsFilter;
import com.auth0.json.mgmt.client.Client;
import com.auth0.json.mgmt.client.ClientsPage;
import com.auth0.json.mgmt.client.Credential;
import com.auth0.json.mgmt.tokenquota.ClientCredentials;
import com.auth0.json.mgmt.tokenquota.TokenQuota;
import com.auth0.net.Request;
import com.auth0.net.client.HttpMethod;
import okhttp3.mockwebserver.RecordedRequest;
import org.junit.jupiter.api.Test;
import java.util.List;
import java.util.Map;
import static com.auth0.AssertsUtil.verifyThrows;
import static com.auth0.client.MockServer.*;
import static com.auth0.client.RecordedRequestMatcher.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
public class ClientsEntityTest extends BaseMgmtEntityTest {
@Test
public void shouldListClientsWithoutFilter() throws Exception {
Request<ClientsPage> request = api.clients().list(null);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
@Test
public void shouldListClientsWithPage() throws Exception {
ClientFilter filter = new ClientFilter().withPage(23, 5);
Request<ClientsPage> request = api.clients().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("page", "23"));
assertThat(recordedRequest, hasQueryParameter("per_page", "5"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
@Test
public void shouldListClientsWithTotals() throws Exception {
ClientFilter filter = new ClientFilter().withTotals(true);
Request<ClientsPage> request = api.clients().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_PAGED_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("include_totals", "true"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
assertThat(response.getStart(), is(0));
assertThat(response.getLength(), is(14));
assertThat(response.getTotal(), is(14));
assertThat(response.getLimit(), is(50));
}
@Test
public void shouldListClientsWithFields() throws Exception {
ClientFilter filter = new ClientFilter().withFields("some,random,fields", true);
Request<ClientsPage> request = api.clients().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_PAGED_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("fields", "some,random,fields"));
assertThat(recordedRequest, hasQueryParameter("include_fields", "true"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
@Test
public void shouldListClientsWithAdditionalProperties() throws Exception {
ClientFilter filter = new ClientFilter()
.withAppType("regular_web,native")
.withIsFirstParty(true)
.withIsGlobal(true);
Request<ClientsPage> request = api.clients().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("app_type", "regular_web,native"));
assertThat(recordedRequest, hasQueryParameter("is_first_party", "true"));
assertThat(recordedRequest, hasQueryParameter("is_global", "true"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
@Test
public void shouldListClientsWithQuery() throws Exception {
ClientFilter filter = new ClientFilter().withQuery("client_grant.organization_id:" + "org_123");
Request<ClientsPage> request = api.clients().list(filter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENTS_PAGED_LIST, 200);
ClientsPage response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("q", "client_grant.organization_id:" + "org_123"));
assertThat(response, is(notNullValue()));
assertThat(response.getItems(), hasSize(2));
}
@Test
public void shouldThrowOnGetClientWithNullId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().get(null),
"'client id' cannot be null!");
}
@Test
public void shouldGetClient() throws Exception {
Request<Client> request = api.clients().get("1");
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients/1"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldGetClientWithFilter() throws Exception {
FieldsFilter fieldsFilter = new FieldsFilter()
.withFields("name,client_id,app_type,tenant", true);
Request<Client> request = api.clients().get("1", fieldsFilter);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients/1"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(recordedRequest, hasQueryParameter("fields", "name,client_id,app_type,tenant"));
assertThat(recordedRequest, hasQueryParameter("include_fields", "true"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldGetClientWithNullFilter() throws Exception {
Request<Client> request = api.clients().get("1", null);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients/1"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnCreateClientWithNullData() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().create(null),
"'client' cannot be null!");
}
@Test
public void shouldCreateClient() throws Exception {
Client clientCreate = new Client("My Application");
ClientCredentials clientCredentials = new ClientCredentials();
clientCredentials.setPerDay(100);
clientCredentials.setPerHour(20);
clientCredentials.setEnforce(true);
TokenQuota tokenQuota = new TokenQuota(clientCredentials);
clientCreate.setTokenQuota(tokenQuota);
Request<Client> request = api.clients().create(clientCreate);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.POST, "/api/v2/clients"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
Map<String, Object> body = bodyFromRequest(recordedRequest);
assertThat(body.size(), is(2));
assertThat(body, hasEntry("name", "My Application"));
// Verify the token_quota structure
Map<String, Object> tokenQuotaMap = (Map<String, Object>) body.get("token_quota");
assertThat(tokenQuotaMap, is(notNullValue()));
Map<String, Object> clientCredentialsMap = (Map<String, Object>) tokenQuotaMap.get("client_credentials");
assertThat(clientCredentialsMap, is(notNullValue()));
assertThat(clientCredentialsMap, hasEntry("per_day", 100));
assertThat(clientCredentialsMap, hasEntry("per_hour", 20));
assertThat(clientCredentialsMap, hasEntry("enforce", true));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnDeleteClientWithNullId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().delete(null),
"'client id' cannot be null!");
}
@Test
public void shouldDeleteClient() throws Exception {
Request<Void> request = api.clients().delete("1");
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.DELETE, "/api/v2/clients/1"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
}
@Test
public void shouldThrowOnUpdateClientWithNullId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().update(null, new Client("name")),
"'client id' cannot be null!");
}
@Test
public void shouldThrowOnUpdateClientWithNullData() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().update("clientId", null),
"'client' cannot be null!");
}
@Test
public void shouldUpdateClient() throws Exception {
Client clientUpdate = new Client( "My Application");
ClientCredentials clientCredentials = new ClientCredentials();
clientCredentials.setPerDay(100);
clientCredentials.setPerHour(20);
clientCredentials.setEnforce(true);
TokenQuota tokenQuota = new TokenQuota(clientCredentials);
clientUpdate.setTokenQuota(tokenQuota);
Request<Client> request = api.clients().update("1", clientUpdate);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.PATCH, "/api/v2/clients/1"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
Map<String, Object> body = bodyFromRequest(recordedRequest);
assertThat(body.size(), is(2));
assertThat(body, hasEntry("name", "My Application"));
Map<String, Object> tokenQuotaMap = (Map<String, Object>) body.get("token_quota");
assertThat(tokenQuotaMap, is(notNullValue()));
Map<String, Object> clientCredentialsMap = (Map<String, Object>) tokenQuotaMap.get("client_credentials");
assertThat(clientCredentialsMap, is(notNullValue()));
assertThat(clientCredentialsMap, hasEntry("per_day", 100));
assertThat(clientCredentialsMap, hasEntry("per_hour", 20));
assertThat(clientCredentialsMap, hasEntry("enforce", true));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnRotateClientSecretWithNullId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().rotateSecret(null),
"'client id' cannot be null!");
}
@Test
public void shouldRotateClientSecret() throws Exception {
Request<Client> request = api.clients().rotateSecret("1");
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT, 200);
Client response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.POST, "/api/v2/clients/1/rotate-secret"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Content-Length", "0"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldListClientCredentials() throws Exception {
Request<List<Credential>> request = api.clients().listCredentials("clientId");
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT_CREDENTIAL_LIST, 200);
List<Credential> response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients/clientId/credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnListCredentialsWithNullClientId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().listCredentials(null),
"'client id' cannot be null!");
}
@Test
public void shouldGetClientCredential() throws Exception {
Request<Credential> request = api.clients().getCredential("clientId", "credId");
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT_CREDENTIAL, 200);
Credential response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.GET, "/api/v2/clients/clientId/credentials/credId"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnGetCredentialsWithNullClientId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().getCredential(null, "credId"),
"'client id' cannot be null!");
}
@Test
public void shouldThrowOnGetCredentialsWithNullCredentialId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().getCredential("clientId", null),
"'credential id' cannot be null!");
}
@Test
public void shouldCreateClientCredential() throws Exception {
Credential credential = new Credential("public_key", "pem");
Request<Credential> request = api.clients().createCredential("clientId", credential);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT_CREDENTIAL, 201);
Credential response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.POST, "/api/v2/clients/clientId/credentials"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
Map<String, Object> body = bodyFromRequest(recordedRequest);
assertThat(body.size(), is(2));
assertThat(body, hasEntry("credential_type", "public_key"));
assertThat(body, hasEntry("pem", "pem"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnCreateCredentialsWithNullClientId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().createCredential(null, new Credential()),
"'client id' cannot be null!");
}
@Test
public void shouldThrowOnCreateCredentialsWithNullCredentialId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().deleteCredential("clientId", null),
"'credential id' cannot be null!");
}
@Test
public void shouldDeleteCredential() throws Exception {
Request<Void> request = api.clients().deleteCredential("clientId", "credId");
assertThat(request, is(notNullValue()));
server.emptyResponse(204);
request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.DELETE, "/api/v2/clients/clientId/credentials/credId"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
}
@Test
public void shouldThrowOnDeleteCredentialsWithNullClientId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().deleteCredential(null, "credId"),
"'client id' cannot be null!");
}
@Test
public void shouldThrowOnDeleteCredentialsWithNullCredentialId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().deleteCredential("clientId", null),
"'credential id' cannot be null!");
}
@Test
public void shouldUpdateClientCredential() throws Exception {
Credential credential = new Credential();
credential.setName("Updated credential name");
Request<Credential> request = api.clients().updateCredential("clientId", "credId", credential);
assertThat(request, is(notNullValue()));
server.jsonResponse(MGMT_CLIENT_CREDENTIAL, 200);
Credential response = request.execute().getBody();
RecordedRequest recordedRequest = server.takeRequest();
assertThat(recordedRequest, hasMethodAndPath(HttpMethod.PATCH, "/api/v2/clients/clientId/credentials/credId"));
assertThat(recordedRequest, hasHeader("Content-Type", "application/json"));
assertThat(recordedRequest, hasHeader("Authorization", "Bearer apiToken"));
Map<String, Object> body = bodyFromRequest(recordedRequest);
assertThat(body.size(), is(1));
assertThat(body, hasEntry("name", "Updated credential name"));
assertThat(response, is(notNullValue()));
}
@Test
public void shouldThrowOnUpdateCredentialWithNullClientId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().updateCredential(null, "credId", new Credential()),
"'client id' cannot be null!");
}
@Test
public void shouldThrowOnUpdateCredentialWithNullCredentialId() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().updateCredential("clientId", null, new Credential()),
"'credential id' cannot be null!");
}
@Test
public void shouldThrowOnUpdateCredentialWithNullCredential() {
verifyThrows(IllegalArgumentException.class,
() -> api.clients().updateCredential("clientId", "credId", null),
"'credential' cannot be null!");
}
}