forked from Contezza/drc-tas-restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UploadTest.java
460 lines (354 loc) · 16 KB
/
UploadTest.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
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
package nl.contezza.drc.tests;
import java.io.File;
import java.util.Base64;
import org.json.JSONArray;
import org.json.JSONObject;
import org.testng.Assert;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import io.restassured.path.json.JsonPath;
import io.restassured.response.Response;
import nl.contezza.drc.dataprovider.DRCDataProvider;
import nl.contezza.drc.rest.RestTest;
import nl.contezza.drc.service.AuthService;
import nl.contezza.drc.service.DRCRequestSpecification;
import nl.contezza.drc.service.EIOService;
import nl.contezza.drc.service.UploadService;
import nl.contezza.drc.service.ZTCService;
//@Log4j2
public class UploadTest extends RestTest {
/**
* Create necessary dependencies when creating enkelvoudiginformatieobject.
*/
@BeforeTest(groups = "Upload")
public void init() {
// Create random catalogi
ZTCService ztcService = new ZTCService();
JsonPath json = new JsonPath(ztcService.createCatalogus().asString());
// Create informatieobjecttype
String catalogusUrl = json.getString("url").replace(ZTC_BASE_URI, ZTC_DOCKER_URI);
json = new JsonPath(ztcService.createInformatieObjectType(catalogusUrl).asString());
informatieobjecttypeUrl = json.getString("url").replace(ZTC_BASE_URI, ZTC_DOCKER_URI);
// @formatter:off
Response res = ztcService.publishInformatieObjectType(informatieobjecttypeUrl.substring(informatieobjecttypeUrl.lastIndexOf('/') + 1).trim());
Assert.assertEquals(res.getStatusCode(), 200);
// @formatter:on
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L43">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_create_eio() {
EIOService eioService = new EIOService();
Response res = eioService.testCreate(informatieobjecttypeUrl);
Assert.assertEquals(res.getStatusCode(), 201);
JsonPath json = new JsonPath(res.asString());
String data = eioService.downloadAsString(json.getString("inhoud"));
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
Assert.assertEquals(data, "some file content");
Assert.assertEquals(json.getBoolean("locked"), false);
Assert.assertEquals(json.getString("titel"), "detailed summary");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L92">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_create_without_file() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", JSONObject.NULL);
Response res = eioService.testCreate(jsonObject);
Assert.assertEquals(res.getStatusCode(), 201);
JsonPath json = new JsonPath(res.asString());
Assert.assertNull(json.getString("inhoud"));
Assert.assertNull(json.getString("bestandsomvang"));
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L132">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_create_empty_file() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", 0);
Response res = eioService.testCreate(jsonObject);
Assert.assertEquals(res.getStatusCode(), 201);
JsonPath json = new JsonPath(res.asString());
String data = eioService.downloadAsString(json.getString("inhoud"));
Assert.assertEquals(data, "");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L180">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_create_without_size() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.remove("bestandsomvang");
Response res = eioService.testCreate(jsonObject);
Assert.assertEquals(res.getStatusCode(), 400);
Assert.assertEquals(res.body().path("invalidParams[0].code"), "file-size");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L217">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_eio_metadata() {
EIOService eioService = new EIOService();
String eioUrl = new JsonPath(eioService.testCreate(informatieobjecttypeUrl).asString()).getString("url");
String lock = new JsonPath(eioService.lock(eioUrl).asString()).getString("lock");
JSONObject body = new JSONObject();
body.put("titel", "another summary");
body.put("lock", lock);
Response res = eioService.partialUpdate(eioUrl, body);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(json.getString("titel"), "another summary");
Assert.assertEquals(json.getString("versie"), "2");
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L258">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_eio_file() {
EIOService eioService = new EIOService();
String eioUrl = new JsonPath(eioService.testCreate(informatieobjecttypeUrl).asString()).getString("url");
String lock = new JsonPath(eioService.lock(eioUrl).asString()).getString("lock");
JSONObject body = new JSONObject();
body.put("inhoud", Base64.getEncoder().encodeToString("some other file content".getBytes()));
body.put("bestandsomvang", "some other file content".getBytes().length);
body.put("lock", lock);
Response res = eioService.partialUpdate(eioUrl, body);
JsonPath json = new JsonPath(res.asString());
String data = eioService.downloadAsString(json.getString("inhoud"));
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(data, "some other file content");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L304">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_eio_file_set_empty() {
EIOService eioService = new EIOService();
String eioUrl = new JsonPath(eioService.testCreate(informatieobjecttypeUrl).asString()).getString("url");
String lock = new JsonPath(eioService.lock(eioUrl).asString()).getString("lock");
JSONObject body = new JSONObject();
body.put("inhoud", JSONObject.NULL);
body.put("bestandsomvang", JSONObject.NULL);
body.put("lock", lock);
Response res = eioService.partialUpdate(eioUrl, body);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertNull(json.getString("inhoud"));
Assert.assertNull(json.getString("bestandsomvang"));
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L341">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_eio_only_size() {
EIOService eioService = new EIOService();
String eioUrl = new JsonPath(eioService.testCreate(informatieobjecttypeUrl).asString()).getString("url");
String lock = new JsonPath(eioService.lock(eioUrl).asString()).getString("lock");
JSONObject body = new JSONObject();
body.put("bestandsomvang", 20);
body.put("lock", lock);
Response res = eioService.partialUpdate(eioUrl, body);
Assert.assertEquals(res.getStatusCode(), 400);
Assert.assertEquals(res.body().path("invalidParams[0].name"), "nonFieldErrors");
Assert.assertEquals(res.body().path("invalidParams[0].code"), "file-size");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L371">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_eio_only_file_without_size() {
EIOService eioService = new EIOService();
String eioUrl = new JsonPath(eioService.testCreate(informatieobjecttypeUrl).asString()).getString("url");
String lock = new JsonPath(eioService.lock(eioUrl).asString()).getString("lock");
JSONObject body = new JSONObject();
body.put("inhoud", Base64.getEncoder().encodeToString("some other file content".getBytes()));
body.put("lock", lock);
Response res = eioService.partialUpdate(eioUrl, body);
Assert.assertEquals(res.getStatusCode(), 400);
Assert.assertEquals(res.body().path("invalidParams[0].name"), "nonFieldErrors");
Assert.assertEquals(res.body().path("invalidParams[0].code"), "file-size");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L606">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_upload_part_wrong_size() {
UploadService uploadService = new UploadService();
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length + 1);
Response res = eioService.testCreate(jsonObject);
String uploadUrl = res.body().path("bestandsdelen[0].url");
String lock = res.body().path("lock");
File file = uploadService.createTextFile("some content for file");
res = uploadService.uploadFile(uploadUrl, lock, file);
Assert.assertEquals(res.getStatusCode(), 400);
Assert.assertEquals(res.body().path("invalidParams[0].name"), "nonFieldErrors");
Assert.assertEquals(res.body().path("invalidParams[0].code"), "file-size");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L672">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_unlock_without_uploading() {
AuthService authService = new AuthService();
JSONArray scopes = new JSONArray().put("documenten.lezen").put("documenten.aanmaken")
.put("documenten.bijwerken").put("documenten.lock");
String maxVertrouwelijkheid = "zeer_geheim";
JSONObject comp = new JSONObject();
comp.put("component", "drc");
comp.put("scopes", scopes);
comp.put("informatieobjecttype", informatieobjecttypeUrl);
comp.put("maxVertrouwelijkheidaanduiding", maxVertrouwelijkheid);
authService.updateReadOnlyClientScope(scopes, new JSONArray().put(comp), false);
wait(2000);
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(DRCRequestSpecification.getReadonly(), jsonObject);
String eioUrl = res.body().path("url");
String uploadUrl = res.body().path("bestandsdelen[0].url");
String lock = res.body().path("lock");
Assert.assertNotNull(uploadUrl);
Assert.assertNotNull(lock);
res = eioService.unlock(DRCRequestSpecification.getReadonly(), eioUrl, lock);
Assert.assertEquals(res.getStatusCode(), 400);
Assert.assertEquals(res.body().path("invalidParams[0].name"), "nonFieldErrors");
Assert.assertEquals(res.body().path("invalidParams[0].code"), "file-size");
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L735">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_unlock_not_finish_upload_force() {
AuthService authService = new AuthService();
JSONArray scopes = new JSONArray().put("documenten.lezen").put("documenten.aanmaken")
.put("documenten.bijwerken").put("documenten.lock").put("documenten.geforceerd-unlock");
String maxVertrouwelijkheid = "zeer_geheim";
JSONObject comp = new JSONObject();
comp.put("component", "drc");
comp.put("scopes", scopes);
comp.put("informatieobjecttype", informatieobjecttypeUrl);
comp.put("maxVertrouwelijkheidaanduiding", maxVertrouwelijkheid);
authService.updateReadOnlyClientScope(scopes, new JSONArray().put(comp), false);
wait(2000);
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(DRCRequestSpecification.getReadonly(), jsonObject);
String eioUrl = res.body().path("url");
String uploadUrl = res.body().path("bestandsdelen[0].url");
String lock = res.body().path("lock");
Assert.assertNotNull(uploadUrl);
Assert.assertNotNull(lock);
res = eioService.unlock(DRCRequestSpecification.getReadonly(), eioUrl, lock);
JsonPath json = new JsonPath(eioService.getEIO(DRCRequestSpecification.getReadonly(), eioUrl, null).asString());
// When no parts are uploaded, apparently bestandsdelen will be present
Assert.assertEquals(res.getStatusCode(), 204);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertNull(json.get("inhoud"));
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L782">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_metadata_without_upload() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length + 1);
Response res = eioService.testCreate(jsonObject);
JSONObject body = new JSONObject();
body.put("beschrijving", "beschrijving2");
body.put("lock", res.body().path("lock").toString());
res = eioService.partialUpdate(res.body().path("url"), body);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getString("beschrijving"), "beschrijving2");
Assert.assertNull(res.getBody().path("inhoud"));
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L889">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_metadata_set_size_zero() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
String lock = res.body().path("lock");
JSONObject body = new JSONObject();
body.put("bestandsomvang", 0);
body.put("lock", lock);
res = eioService.partialUpdate(res.body().path("url"), body);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
}
/**
* See {@link <a href=
* "https://github.com/VNG-Realisatie/documenten-api/blob/1.3.0/src/drc/tests/test_upload.py#L924">python
* code</a>}.
*/
@Test(groups = "Upload")
public void test_update_metadata_set_size_null() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
String lock = res.body().path("lock");
JSONObject body = new JSONObject();
body.put("bestandsomvang", JSONObject.NULL);
body.put("lock", lock);
res = eioService.partialUpdate(res.body().path("url"), body);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
Assert.assertNull(json.get("bestandsomvang"));
Assert.assertNull(json.get("inhoud"));
}
}