forked from Contezza/drc-tas-restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomUploadTest.java
241 lines (180 loc) · 9.54 KB
/
CustomUploadTest.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
package nl.contezza.drc.tests.custom;
import java.io.File;
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.EIOService;
import nl.contezza.drc.service.UploadService;
import nl.contezza.drc.service.ZTCService;
import nl.contezza.drc.utils.StringDate;
public class CustomUploadTest extends RestTest {
/**
* Create necessary dependencies when creating enkelvoudiginformatieobject.
*/
@BeforeTest(groups = "CustomUpload")
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
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_when_create() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
// jsonObject.put("inhoud", JSONObject.NULL);
jsonObject.remove("inhoud");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 201);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("locked"), true);
Assert.assertEquals(json.getInt("bestandsomvang"), "some content for file".getBytes().length);
Assert.assertNull(res.getBody().path("inhoud"));
}
@Test(groups = "CustomUpload")
public void test_upload_flow_bestandsdelen() {
UploadService uploadService = new UploadService();
EIOService eioService = new EIOService();
// Create file with empty inhoud
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 eioUrl = res.body().path("url");
String uploadUrl = res.body().path("bestandsdelen[0].url");
String lock = res.body().path("lock");
// Upload file part
File file = uploadService.createTextFile("some content for file");
res = uploadService.uploadFile(uploadUrl, lock, file);
Assert.assertEquals(res.getStatusCode(), 200);
// Validate if still is locked
res = eioService.getEIO(eioUrl, null);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("locked"), true);
// Unlock
res = eioService.unlock(eioUrl, lock);
Assert.assertEquals(res.getStatusCode(), 204);
// Validate if all is normal
res = eioService.getEIO(eioUrl, null);
json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 200);
Assert.assertNotNull(res.getBody().path("inhoud"));
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
Assert.assertEquals(json.getBoolean("locked"), false);
}
@Test(groups = "CustomUpload")
public void test_create_empty_string_inhoud() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", "");
jsonObject.put("bestandsomvang", 0);
Response res = eioService.testCreate(jsonObject);
Assert.assertEquals(res.getStatusCode(), 201);
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_with_empty_inhoud_when_create() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", "");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 201);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("locked"), true);
Assert.assertEquals(json.getInt("bestandsomvang"), "some content for file".getBytes().length);
Assert.assertNull(res.getBody().path("inhoud"));
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_with_minimal_data() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject();
jsonObject.put("bronorganisatie", "159351741");
jsonObject.put("creatiedatum", StringDate.toDateString(2023, 6, 9));
jsonObject.put("titel", "Testdocument");
jsonObject.put("auteur", "Testauteur");
jsonObject.put("taal", "eng");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
jsonObject.put("informatieobjecttype", informatieobjecttypeUrl);
Response res = eioService.testCreate(jsonObject);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 201);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("locked"), true);
Assert.assertEquals(json.getInt("bestandsomvang"), "some content for file".getBytes().length);
Assert.assertNull(res.getBody().path("inhoud"));
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_with_lock() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", "");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
JsonPath json = new JsonPath(res.asString());
Assert.assertEquals(res.getStatusCode(), 201);
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("locked"), true);
Assert.assertEquals(json.getInt("bestandsomvang"), "some content for file".getBytes().length);
Assert.assertNull(res.getBody().path("inhoud"));
Assert.assertNotNull(json.getString("bestandsdelen[0].lock"));
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_lock_with_unlock() {
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", "");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
String eioUrl = res.body().path("url");
String lock = res.body().path("lock");
res = eioService.unlock(eioUrl, lock);
Assert.assertEquals(res.getStatusCode(), 204);
res = eioService.getEIO(eioUrl, null);
JsonPath json = new JsonPath(res.asString());
Assert.assertNotNull(json.getString("bestandsdelen[0].lock"));
}
@Test(groups = "CustomUpload")
public void test_bestandsdelen_lock_with_upload_and_unlock() {
UploadService uploadService = new UploadService();
EIOService eioService = new EIOService();
JSONObject jsonObject = new JSONObject(DRCDataProvider.testCreate(informatieobjecttypeUrl));
jsonObject.put("inhoud", "");
jsonObject.put("bestandsomvang", "some content for file".getBytes().length);
Response res = eioService.testCreate(jsonObject);
String eioUrl = res.body().path("url");
res = eioService.getEIO(eioUrl, null);
JsonPath json = new JsonPath(res.asString());
Assert.assertNotNull(json.getString("bestandsdelen[0].lock"));
String uploadUrl = res.body().path("bestandsdelen[0].url");
String lock = res.body().path("bestandsdelen[0].lock");
File file = uploadService.createTextFile("some content for file");
res = uploadService.uploadFile(uploadUrl, lock, file);
Assert.assertEquals(res.getStatusCode(), 200);
res = eioService.getEIO(eioUrl, null);
json = new JsonPath(res.asString());
Assert.assertEquals(json.getList("bestandsdelen").size(), 1);
Assert.assertEquals(json.getBoolean("bestandsdelen[0].voltooid"), true);
res = eioService.unlock(eioUrl, lock);
Assert.assertEquals(res.getStatusCode(), 204);
res = eioService.getEIO(eioUrl, null);
json = new JsonPath(res.asString());
Assert.assertEquals(json.getList("bestandsdelen").size(), 0);
}
}