fixed new sonarqube code smells and bugs

This commit is contained in:
Mustapha Zorgati 2020-06-28 21:55:22 +02:00
parent 969d3eeff6
commit b3add569ff
8 changed files with 54 additions and 59 deletions

View File

@ -77,7 +77,8 @@ public class TaskHistoryEventResourceAssemblerTest {
.isEqualTo(taskHistoryEventResource.getWorkbasketKey());
assertThat(historyEvent.getAttachmentClassificationKey())
.isEqualTo(taskHistoryEventResource.getAttachmentClassificationKey());
assertThat(historyEvent.getCreated()).isEqualTo(taskHistoryEventResource.getCreated());
assertThat(historyEvent.getCreated())
.isEqualTo(Instant.parse(taskHistoryEventResource.getCreated()));
assertThat(historyEvent.getOldValue()).isEqualTo(taskHistoryEventResource.getOldValue());
assertThat(historyEvent.getNewValue()).isEqualTo(taskHistoryEventResource.getNewValue());
assertThat(historyEvent.getPorCompany()).isEqualTo(taskHistoryEventResource.getPorCompany());

View File

@ -152,10 +152,7 @@ class UpdateClassificationAccTest extends AbstractAccTest {
classification.setName("NOW IT´S MY TURN");
classification.setDescription("IT SHOULD BE TO LATE...");
ThrowingCallable call = () -> classificationService.updateClassification(classification);
assertThatThrownBy(call)
.isInstanceOf(ConcurrencyException.class)
.describedAs(
"The Classification should not be updated, because it was modified while editing.");
assertThatThrownBy(call).isInstanceOf(ConcurrencyException.class);
}
@WithAccessId(user = "businessadmin")

View File

@ -5,7 +5,6 @@ import static org.assertj.core.api.Assertions.assertThat;
import acceptance.AbstractAccTest;
import java.util.List;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
@ -24,14 +23,8 @@ import pro.taskana.workbasket.internal.jobs.WorkbasketCleanupJob;
@ExtendWith(JaasExtension.class)
class WorkbasketCleanupJobAccTest extends AbstractAccTest {
WorkbasketService workbasketService;
TaskService taskService;
@BeforeEach
void before() {
workbasketService = taskanaEngine.getWorkbasketService();
taskService = taskanaEngine.getTaskService();
}
WorkbasketService workbasketService = taskanaEngine.getWorkbasketService();
TaskService taskService = taskanaEngine.getTaskService();
@AfterEach
void after() throws Exception {
@ -50,8 +43,8 @@ class WorkbasketCleanupJobAccTest extends AbstractAccTest {
.orderByKey(BaseQuery.SortDirection.ASCENDING)
.list();
assertThat(0).isEqualTo(getNumberTaskNotCompleted(workbaskets.get(0).getId()));
assertThat(1).isEqualTo(getNumberTaskCompleted(workbaskets.get(0).getId()));
assertThat(getNumberTaskNotCompleted(workbaskets.get(0).getId())).isZero();
assertThat(getNumberTaskCompleted(workbaskets.get(0).getId())).isOne();
// Workbasket with completed task will be marked for deletion.
workbasketService.deleteWorkbasket(workbaskets.get(0).getId());
@ -60,7 +53,7 @@ class WorkbasketCleanupJobAccTest extends AbstractAccTest {
TaskCleanupJob taskCleanupJob = new TaskCleanupJob(taskanaEngine, null, null);
taskCleanupJob.run();
assertThat(0).isEqualTo(getNumberTaskCompleted(workbaskets.get(0).getId()));
assertThat(getNumberTaskCompleted(workbaskets.get(0).getId())).isZero();
WorkbasketCleanupJob workbasketCleanupJob = new WorkbasketCleanupJob(taskanaEngine, null, null);
workbasketCleanupJob.run();
@ -81,7 +74,7 @@ class WorkbasketCleanupJobAccTest extends AbstractAccTest {
.orderByKey(BaseQuery.SortDirection.ASCENDING)
.list();
assertThat(0).isNotEqualTo(getNumberTaskCompleted(workbaskets.get(0).getId()));
assertThat(getNumberTaskCompleted(workbaskets.get(0).getId())).isPositive();
// Workbasket with completed task will be marked for deletion.
workbasketService.deleteWorkbasket(workbaskets.get(0).getId());

View File

@ -217,8 +217,9 @@ class CompleteTaskAccTest extends AbstractAccTest {
Task taskAfterClaim = TASK_SERVICE.forceClaim(createdTask.getId());
assertThat(taskAfterClaim.getOwner()).isEqualTo(CurrentUserContext.getUserid());
assertThat(beforeForceClaim).isBeforeOrEqualTo(taskAfterClaim.getModified());
assertThat(beforeForceClaim).isBeforeOrEqualTo(taskAfterClaim.getClaimed());
assertThat(beforeForceClaim)
.isBeforeOrEqualTo(taskAfterClaim.getModified())
.isBeforeOrEqualTo(taskAfterClaim.getClaimed());
assertThat(taskAfterClaim.getCreated()).isBeforeOrEqualTo(taskAfterClaim.getModified());
assertThat(taskAfterClaim.getState()).isEqualTo(TaskState.CLAIMED);

View File

@ -40,12 +40,10 @@ class QueryWorkbasketAccessItemsAccTest extends AbstractAccTest {
columnValueList =
workbasketService.createWorkbasketAccessItemQuery().listValues(ACCESS_ID, null);
assertThat(columnValueList).isNotNull();
assertThat(columnValueList).hasSize(10);
columnValueList =
workbasketService.createWorkbasketAccessItemQuery().listValues(WORKBASKET_KEY, null);
assertThat(columnValueList).isNotNull();
assertThat(columnValueList).hasSize(24);
long countEntries = workbasketService.createWorkbasketAccessItemQuery().count();

View File

@ -49,9 +49,9 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
ParameterizedTypeReference.forType(ClassificationRepresentationModel.class));
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
assertThat(response.getHeaders().getContentType().toString())
.isEqualTo(MediaTypes.HAL_JSON_VALUE);
assertThat(response.getHeaders().getContentType()).isEqualTo(MediaTypes.HAL_JSON);
}
@Test
@ -62,6 +62,7 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
CLASSIFICATION_SUMMARY_PAGE_MODEL_TYPE);
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
}
@ -73,6 +74,8 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
CLASSIFICATION_SUMMARY_PAGE_MODEL_TYPE);
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
assertThat(response.getBody().getContent()).hasSize(13);
}
@ -86,14 +89,10 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
CLASSIFICATION_SUMMARY_PAGE_MODEL_TYPE);
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
assertThat(
response
.getBody()
.getRequiredLink(IanaLinkRelations.SELF)
.getHref()
.endsWith("/api/v1/classifications?domain=DOMAIN_A&sort-by=key&order=asc"))
.isTrue();
assertThat(response.getBody().getRequiredLink(IanaLinkRelations.SELF).getHref())
.endsWith("/api/v1/classifications?domain=DOMAIN_A&sort-by=key&order=asc");
assertThat(response.getBody().getContent()).hasSize(17);
assertThat(response.getBody().getContent().iterator().next().getKey()).isEqualTo("A12");
}
@ -107,6 +106,7 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
CLASSIFICATION_SUMMARY_PAGE_MODEL_TYPE);
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getContent()).hasSize(5);
assertThat(response.getBody().getContent().iterator().next().getKey()).isEqualTo("L1050");
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
@ -219,6 +219,8 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
restHelper.defaultRequest(),
CLASSIFICATION_SUMMARY_PAGE_MODEL_TYPE);
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getLink(IanaLinkRelations.SELF)).isNotNull();
boolean foundClassificationCreated = false;
for (ClassificationSummaryRepresentationModel classification :
@ -290,6 +292,7 @@ class ClassificationControllerIntTest {
HttpMethod.GET,
request,
ParameterizedTypeReference.forType(ClassificationSummaryRepresentationModel.class));
assertThat(response.getBody()).isNotNull();
assertThat(response.getBody().getName()).isEqualTo("Zustimmungserklärung");
}

View File

@ -2,11 +2,11 @@ package pro.taskana.common.rest;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static pro.taskana.common.rest.RestHelper.TEMPLATE;
import java.util.ArrayList;
import java.util.List;
import org.assertj.core.api.ThrowableAssert.ThrowingCallable;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.ParameterizedTypeReference;
@ -15,7 +15,6 @@ import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.client.RestTemplate;
import pro.taskana.common.rest.models.AccessIdRepresentationModel;
@ -23,55 +22,55 @@ import pro.taskana.common.rest.models.AccessIdRepresentationModel;
@ActiveProfiles({"test"})
class AccessIdControllerIntTest {
private static RestTemplate template;
private final RestHelper restHelper;
@Autowired RestHelper restHelper;
@BeforeAll
static void init() {
template = RestHelper.TEMPLATE;
@Autowired
AccessIdControllerIntTest(RestHelper restHelper) {
this.restHelper = restHelper;
}
@Test
void testQueryGroupsByDn() {
ResponseEntity<AccessIdListResource> response =
template.exchange(
TEMPLATE.exchange(
restHelper.toUrl(Mapping.URL_ACCESSID)
+ "?search-for=cn=ksc-users,cn=groups,OU=Test,O=TASKANA",
HttpMethod.GET,
restHelper.defaultRequest(),
ParameterizedTypeReference.forType(AccessIdListResource.class));
assertThat(response.getBody()).hasSize(1);
assertThat(response.getBody().get(0).getAccessId())
.isEqualToIgnoringCase("cn=ksc-users,cn=groups,OU=Test,O=TASKANA");
assertThat(response.getBody())
.isNotNull()
.extracting(AccessIdRepresentationModel::getAccessId)
.usingElementComparator(String.CASE_INSENSITIVE_ORDER)
.containsExactly("cn=ksc-users,cn=groups,OU=Test,O=TASKANA");
}
@Test
void testQueryGroupsByCn() {
ResponseEntity<AccessIdListResource> response =
template.exchange(
TEMPLATE.exchange(
restHelper.toUrl(Mapping.URL_ACCESSID) + "?search-for=ksc-use",
HttpMethod.GET,
restHelper.defaultRequest(),
ParameterizedTypeReference.forType(AccessIdListResource.class));
assertThat(response.getBody()).hasSize(1);
assertThat(response.getBody().get(0).getAccessId())
.isEqualToIgnoringCase("cn=ksc-users,cn=groups,OU=Test,O=TASKANA");
assertThat(response.getBody())
.isNotNull()
.extracting(AccessIdRepresentationModel::getAccessId)
.usingElementComparator(String.CASE_INSENSITIVE_ORDER)
.containsExactly("cn=ksc-users,cn=groups,OU=Test,O=TASKANA");
}
@Test
void testGetMatches() {
ResponseEntity<List<AccessIdRepresentationModel>> response =
template.exchange(
TEMPLATE.exchange(
restHelper.toUrl(Mapping.URL_ACCESSID) + "?search-for=rig",
HttpMethod.GET,
restHelper.defaultRequest(),
ParameterizedTypeReference.forType(AccessIdListResource.class));
List<AccessIdRepresentationModel> body = response.getBody();
assertThat(body).isNotNull();
assertThat(body).hasSize(2);
assertThat(body)
assertThat(response.getBody())
.isNotNull()
.extracting(AccessIdRepresentationModel::getName)
.containsExactlyInAnyOrder("Schläfrig, Tim", "Eifrig, Elena");
}
@ -79,16 +78,14 @@ class AccessIdControllerIntTest {
@Test
void should_returnAccessIdWithUmlauten_ifBased64EncodedUserIsLookedUp() {
ResponseEntity<List<AccessIdRepresentationModel>> response =
template.exchange(
TEMPLATE.exchange(
restHelper.toUrl(Mapping.URL_ACCESSID) + "?search-for=läf",
HttpMethod.GET,
restHelper.defaultRequest(),
ParameterizedTypeReference.forType(AccessIdListResource.class));
List<AccessIdRepresentationModel> body = response.getBody();
assertThat(body).isNotNull();
assertThat(body).hasSize(1);
assertThat(body)
assertThat(response.getBody())
.isNotNull()
.extracting(AccessIdRepresentationModel::getName)
.containsExactlyInAnyOrder("Schläfrig, Tim");
}
@ -97,7 +94,7 @@ class AccessIdControllerIntTest {
void testBadRequestWhenSearchForIsTooShort() {
ThrowingCallable httpCall =
() -> {
template.exchange(
TEMPLATE.exchange(
restHelper.toUrl(Mapping.URL_ACCESSID) + "?search-for=al",
HttpMethod.GET,
restHelper.defaultRequest(),

View File

@ -31,7 +31,12 @@ public class RestHelper {
public static final RestTemplate TEMPLATE = getRestTemplate();
@Autowired Environment environment;
private final Environment environment;
@Autowired
public RestHelper(Environment environment) {
this.environment = environment;
}
public String toUrl(String relativeUrl, Object... uriVariables) {
return UriComponentsBuilder.fromPath(relativeUrl)