Roster tests working

This commit is contained in:
reynisson
2021-11-28 20:33:01 +01:00
parent c446a854ee
commit 09e139cdf8
3 changed files with 4 additions and 7 deletions

View File

@@ -35,14 +35,12 @@ public class AddNewAssignmentToRosterServiceSystemTest {
ResponseEntity response = whenAddNewAssignmentToRoster(rosterItemId, executorType, executorURI);
System.out.println(response.getBody().toString());
response.getBody().
JSONObject responseJson = new JSONObject(response.getBody().toString());
String respRosterItemId = responseJson.getString("rosterItemId");
String respExecutorType = responseJson.getString("executorType");
String respExecutorURI = responseJson.getString("executorURI");
then(response.getStatusCode()).isEqualTo(HttpStatus.CREATED);
then(respRosterItemId).isEqualTo(rosterItemId);
then(respExecutorType).isEqualTo(executorType);
then(respExecutorURI).isEqualTo(executorURI);
then(Roster.getInstance().getRosterMap().size()).isEqualTo(1);

View File

@@ -61,7 +61,6 @@ public class ApplyForTaskWebControllerTest {
.content(jsonPayLoad))
.andExpect(status().is2xxSuccessful());
//TODO: No idea why this does not work yet
then(applyForTaskUseCase).should()
.applyForTask(new ApplyForTaskCommand(new ExecutorType(executorType), new ExecutorURI(executorURI)));