@@ -30,22 +30,21 @@ This method allows to retrieve all projects available for your account. You can
30
30
31
31
``` java
32
32
ProjectsApi projectsApi = new ProjectsApi (qaseApi);
33
+
33
34
List<Project > projects = projectsApi. getProjects(100 , 0 ). getResult(). getEntities();
34
35
```
35
36
36
37
#### Get All Projects ####
37
38
This method allows to retrieve a specific project.
38
39
39
40
``` java
40
- ProjectsApi projectsApi = new ProjectsApi (qaseApi);
41
41
Project project = projectsApi. getProject(" PROJ" ). getResult();
42
42
```
43
43
44
44
#### Create a new project ####
45
45
This method is used to create a new project through API.
46
46
47
47
``` java
48
- ProjectsApi projectsApi = new ProjectsApi (qaseApi);
49
48
ProjectCreate project = new ProjectCreate ()
50
49
.code(" PROJ" )
51
50
.title(" Project title" )
@@ -59,6 +58,8 @@ String code = projectsApi.createProject(project).getResult().getCode()
59
58
This method allows to retrieve all test cases stored in selected project. You can you limit and offset params to paginate.
60
59
61
60
``` java
61
+ CasesApi casesApi = new CasesApi (qaseApi);
62
+
62
63
GetCasesFiltersParameter filters = new GetCasesFiltersParameter ()
63
64
.automation(" is-not-automated,to-be-automated" )
64
65
.behavior(" positive" )
@@ -133,6 +134,8 @@ suitesApi.deleteSuite("PRJCODE", 18, null);
133
134
This method allows to retrieve all milestones stored in selected project. You can you limit and offset params to paginate.
134
135
135
136
``` java
137
+ MilestonesApi milestonesApi = new MilestonesApi (qaseApi);
138
+
136
139
GetMilestonesFiltersParameter filters = new GetMilestonesFiltersParameter (). search(" title" );
137
140
List<Milestone > milestones = milestonesApi. getMilestones(" PRJCODE" , filters, 100 , 0 )
138
141
.getResult(). getEntities();
@@ -173,6 +176,7 @@ milestonesApi.deleteMilestone("PRJCODE", 6);
173
176
This method allows to retrieve all shared steps stored in selected project. You can you limit and offset params to paginate.
174
177
``` java
175
178
SharedStepsApi sharedStepsApi = new SharedStepsApi (qaseApi);
179
+
176
180
GetMilestonesFiltersParameter filters = new GetMilestonesFiltersParameter ()
177
181
.search(" title" );
178
182
List<SharedStep > sharedSteps = sharedStepsApi. getSharedSteps(" PRJCODE" , filters, 100 , 0 )
@@ -214,6 +218,7 @@ This method allows to retrieve all test plans stored in selected project. You ca
214
218
215
219
``` java
216
220
PlansApi plansApi = new PlansApi (qaseApi);
221
+
217
222
List<Plan > plans = plansApi. getPlans(" PRJCODE" , 100 , 0 ). getResult(). getEntities();
218
223
```
219
224
@@ -253,30 +258,36 @@ plansApi.deletePlan("PRJCODE", 1);
253
258
This method allows to retrieve all test runs stored in selected project. You can you limit and offset params to paginate.
254
259
255
260
``` java
256
- TestRunService . Filter filter = qaseApi. testRuns(). filter(). status(active, complete);
257
- TestRuns testRuns = qaseApi. testRuns(). getAll(" PRJCODE" , 50 , 0 , filter, true );
258
- List<TestRun > testRunList = testRuns. getTestRunList();
261
+ RunsApi runsApi = new RunsApi (qaseApi);
262
+
263
+ GetRunsFiltersParameter filters = new GetRunsFiltersParameter (). status(" complete" );
264
+ List<Run > runs = runsApi. getRuns(" PRJCODE" , filters, 50 , 0 , " cases" )
265
+ .getResult(). getEntities();
259
266
```
260
267
261
268
#### Get a specific test run ####
262
269
This method allows to retrieve a specific test run.
263
270
264
271
``` java
265
- TestRun testRun = qaseApi . testRuns() . get( " PRJCODE " , 1 , false );
272
+ Run run = runsApi . getRun( " PRJ " , 1 , null ) . getResult( );
266
273
```
267
274
268
275
#### Create a new test run ####
269
276
This method is used to create a new test run through API.
270
277
271
278
``` java
272
- qaseApi. testRuns(). create(" PRJCODE" , " title" , 1 , 2 , 3 , 4 );
279
+ RunCreate newTestRun = new RunCreate ()
280
+ .title(" New test run" )
281
+ .cases(Arrays . asList(1L , 2L , 3L , 55L ));
282
+ Long id = runsApi. createRun(" PRJCODE" , newTestRun)
283
+ .getResult(). getId();
273
284
```
274
285
275
286
#### Delete test run ####
276
287
This method completely deletes a test run from repository
277
288
278
289
``` java
279
- boolean isDeleted = qaseApi . testRuns() . delete (" PRJCODE" , 1 );
290
+ runsApi . deleteRun (" PRJCODE" , 1 );
280
291
```
281
292
282
293
### Test run results ###
@@ -285,76 +296,89 @@ boolean isDeleted = qaseApi.testRuns().delete("PRJCODE", 1);
285
296
This method allows to retrieve all test run results stored in selected project. You can you limit and offset params to paginate. Also you can use various filters to get specific results.
286
297
287
298
``` java
288
- TestRunResultService . Filter filter = qaseApi. testRunResults(). filter(). status(passed);
289
- TestRunResults runResultsResponse = qaseApi. testRunResults(). getAll(" PRJCODE" , 50 , 0 , filter);
290
- List<TestRunResult > testRunResultList = runResultsResponse. getTestRunResultList();
299
+ ResultsApi resultsApi = new ResultsApi (qaseApi);
300
+
301
+ GetResultsFiltersParameter filters = new GetResultsFiltersParameter ()
302
+ .status(" in_progress" );
303
+ List<Result > results = resultsApi. getResults(" PRJ" , filters, 33 , 3 )
304
+ .getResult(). getEntities();
291
305
```
292
306
293
307
#### Get a specific test run result ####
294
308
This method allows to retrieve a specific test run result by hash.
295
309
``` java
296
- TestRunResult testRunResult = qaseApi. testRunResults(). get(" PRJCODE" , " 6676b8815da03124dc039d89cc111586a4f45dc9" );
310
+ Result result = resultsApi. getResult(" PRJCODE" , " 6676b8815da03124dc039d89cc111586a4f45dc9" )
311
+ .getResult();
297
312
```
298
313
299
314
#### Add a new test run result ####
300
315
This method allows to add a new test run result through API.
301
316
``` java
302
- String hash = qaseApi. testRunResults(). create(" PRJCODE" , 1 , 58 , RunResultStatus . passed);
317
+ ResultCreate resultCreate = new ResultCreate ()
318
+ .caseId(1L )
319
+ .status(ResultCreate . StatusEnum . PASSED );
320
+ String hash = resultsApi. createResult(" PRJCODE" , 1 , resultCreate)
321
+ .getResult(). getHash();
303
322
```
304
323
305
324
#### Update test run result ####
306
325
This method allows to update test run result through API.
307
326
``` java
308
- String hash = qaseApi. testRunResults(). update(" PRJCODE" , 1 , " 6676b8815da03124dc039d89cc111586a4f45dc9" , passed, Duration . ofHours(2 ));
327
+ ResultUpdate resultUpdate = new ResultUpdate (). status(ResultUpdate . StatusEnum . FAILED );
328
+ resultsApi. updateResult(" PRJCODE" , 1 , " 6676b8815da03124dc039d89cc111586a4f45dc9" ,
329
+ resultUpdate);
309
330
```
310
331
311
332
#### Delete test run result ####
312
333
This method completely deletes a test run result from repository
313
334
``` java
314
- boolean isDeleted = qaseApi . testRunResults() . delete (" PRJCODE" , 1 , " 6676b8815da03124dc039d89cc111586a4f45dc9" );
335
+ resultsApi . deleteResult (" PRJCODE" , 1 , " 6676b8815da03124dc039d89cc111586a4f45dc9" );
315
336
```
316
337
317
338
### Defects ###
318
339
319
340
#### Get all defects ####
320
341
This method allows to retrieve all defects stored in selected project. You can you limit and offset params to paginate.
321
342
``` java
322
- DefectService . Filter filter = qaseApi. defects(). filter(). status(open);
323
- Defects defects = qaseApi. defects(). getAll(" PRJCODE" , 50 , 0 , filter);
324
- List<Defect > defectList = defects. getDefectList();
343
+ DefectsApi defectsApi = new DefectsApi (qaseApi);
344
+
345
+ GetDefectsFiltersParameter filters = new GetDefectsFiltersParameter ()
346
+ .status(GetDefectsFiltersParameter . StatusEnum . OPEN );
347
+ List<Defect > defects = defectsApi. getDefects(" PROJ" , filters, 88 , 12 ). getResult(). getEntities();
325
348
```
326
349
327
350
#### Get a specific defect ####
328
351
This method allows to retrieve a specific defect.
329
352
``` java
330
- Defect defect = qaseApi . defects() . get( " PRJCODE" , 1 );
353
+ Defect defect = defectsApi . getDefect( " PRJCODE" , 1 ) . getResult( );
331
354
```
332
355
333
356
#### Resolve ####
334
357
This method is used to resolve defect through API.
335
358
``` java
336
- boolean isResolved = qaseApi . defects() . resolve( " PRJCODE" , 1 );
359
+ defectsApi . resolveDefect( " PRJCODE" , 1 )
337
360
```
338
361
339
362
#### Delete defect ####
340
363
This method completely deletes a defect from repository
341
364
``` java
342
- boolean isDeleted = qaseApi . defects() . delete (" PRJCODE" , 1 );
365
+ defectsApi . deleteDefect (" PRJCODE" , 1 );
343
366
```
344
367
345
368
### Custom Fields ###
346
369
347
370
#### Get all custom fields ####
348
371
This method allows to retrieve all custom fields for a specific project. You can you limit and offset params to paginate.
349
372
``` java
350
- CustomFields customFields = qaseApi. customFields(). getAll(" PRJCODE" );
351
- List<CustomField > customFieldList = customFields. getCustomFieldList();
373
+ CustomFieldsApi customFieldsApi = new CustomFieldsApi (qaseApi);
374
+
375
+ List<CustomField > customFields = customFieldsApi. getCustomFields(null , 100 , 0 ). getResult(). getEntities();
352
376
```
353
377
354
378
#### Get a specific custom field ####
355
379
This method allows to retrieve one custom fields for specific project by id
356
380
``` java
357
- CustomField customField = qaseApi . customFields() . get( " PRJCODE " , 1 );
381
+ CustomField customField = customFieldsApi . getCustomField( 1 ) . getResult( );
358
382
```
359
383
360
384
### Attachments ###
@@ -363,28 +387,31 @@ CustomField customField = qaseApi.customFields().get("PRJCODE", 1);
363
387
This method allows to retrieve all attachments uploaded into your projects. You can you limit and offset params to paginate.
364
388
365
389
``` java
366
- Attachments attachments = qaseApi. attachments(). getAll();
367
- List<Attachment > attachmentList = attachments. getAttachmentList();
390
+ AttachmentsApi attachmentsApi = new AttachmentsApi (qaseApi);
391
+
392
+ List<AttachmentGet > attachments = attachmentsApi. getAttachments(100 , 0 ). getResult(). getEntities();
368
393
```
369
394
370
395
#### Get a specific attachment ####
371
396
This method allows to retrieve a specific attachment by hash.
372
397
373
398
``` java
374
- Attachment attachment = qaseApi . attachments() . get( " 6676b8815da03124dc039d89cc111586a4f45dc9" );
399
+ AttachmentGet attachment = attachmentsApi . getAttachment( " 6676b8815da03124dc039d89cc111586a4f45dc9" ) . getResult( );
375
400
```
376
401
377
402
#### Upload attachment ####
378
403
This method allows to upload attachment to Qase. Max upload size: * Up to 32 Mb per file.
379
404
``` java
380
405
File file = new File (" 1.png" );
381
- List<Attachment > attachment = qaseApi. attachments(). add(" PRJCODE" , file);
406
+ List<AttachmentGet > attachments = attachmentsApi. uploadAttachment(" PRJCODE" ,
407
+ Collections . singletonList(file))
408
+ .getResult();
382
409
```
383
410
384
411
#### Delete attachment ####
385
412
This method completely deletes an attachment.
386
413
``` java
387
- boolean isDeleted = qaseApi . attachments() . delete (" 6676b8815da03124dc039d89cc111586a4f45dc9" );
414
+ attachmentsApi . deleteAttachment (" 6676b8815da03124dc039d89cc111586a4f45dc9" );
388
415
```
389
416
390
417
#### Associate an attachment with a test case or step ####
@@ -463,20 +490,3 @@ Afterward, the running test (of id 3) case will have the step and the id of uplo
463
490
In its turn, the step will have the id of uploaded ` stepScreenshot.jpg ` associated with it.
464
491
465
492
Note, ` caseScreenshot.jpg ` will be associated only with the test case and ` stepScreenshot.jpg ` will be associated only with the step.
466
-
467
- ### Team ###
468
-
469
- #### Get all team members ####
470
- This method allows to retrieve all users in your team. You can you limit and offset params to paginate.
471
-
472
- ``` java
473
- Users users = qaseApi. team(). getAll();
474
- List<User > userList = users. getUserList();
475
- ```
476
-
477
- #### Get a specific team member
478
- This method allows to retrieve a specific team member by id.
479
-
480
- ``` java
481
- User user = qaseApi. team(). get(1 );
482
- ```
0 commit comments