Search in sources :

Example 76 with WithAccessId

use of pro.taskana.security.WithAccessId in project taskana by Taskana.

the class QueryTasksWithSortingAccTest method testSortByPorCompanyAndClaimed.

@WithAccessId(userName = "teamlead_1", groupNames = { "group_1", "group_2" })
@Test
public void testSortByPorCompanyAndClaimed() throws SQLException, NotAuthorizedException, InvalidArgumentException {
    TaskService taskService = taskanaEngine.getTaskService();
    List<TaskSummary> results = taskService.createTaskQuery().workbasketKeyDomainIn(new KeyDomain("USER_3_2", "DOMAIN_B")).orderByPrimaryObjectReferenceCompany(desc).orderByClaimed(asc).list();
    assertThat(results.size(), equalTo(25));
    TaskSummary previousSummary = null;
    for (TaskSummary taskSummary : results) {
        // + taskSummary.getClaimed());
        if (previousSummary != null) {
            Assert.assertTrue(taskSummary.getPrimaryObjRef().getCompany().compareToIgnoreCase(previousSummary.getPrimaryObjRef().getCompany()) <= 0);
        }
        previousSummary = taskSummary;
    }
}
Also used : TaskService(pro.taskana.TaskService) TaskSummary(pro.taskana.TaskSummary) KeyDomain(pro.taskana.KeyDomain) AbstractAccTest(acceptance.AbstractAccTest) Test(org.junit.Test) WithAccessId(pro.taskana.security.WithAccessId)

Example 77 with WithAccessId

use of pro.taskana.security.WithAccessId in project taskana by Taskana.

the class UpdateTaskAccTest method testUpdatePrimaryObjectReferenceOfTask.

@WithAccessId(userName = "user_1_1", groupNames = { "group_1" })
@Test
public void testUpdatePrimaryObjectReferenceOfTask() throws SQLException, NotAuthorizedException, InvalidArgumentException, ClassificationNotFoundException, WorkbasketNotFoundException, TaskAlreadyExistException, InvalidWorkbasketException, TaskNotFoundException, ConcurrencyException, AttachmentPersistenceException {
    TaskService taskService = taskanaEngine.getTaskService();
    Task task = taskService.getTask("TKI:000000000000000000000000000000000000");
    Instant modifiedOriginal = task.getModified();
    task.setPrimaryObjRef(createObjectReference("COMPANY_A", "SYSTEM_A", "INSTANCE_A", "VNR", "7654321"));
    Task updatedTask = taskService.updateTask(task);
    updatedTask = taskService.getTask(updatedTask.getId());
    Assert.assertNotNull(updatedTask);
    Assert.assertEquals("7654321", updatedTask.getPrimaryObjRef().getValue());
    Assert.assertNotNull(updatedTask.getCreated());
    Assert.assertNotNull(updatedTask.getModified());
    Assert.assertFalse(modifiedOriginal.isAfter(updatedTask.getModified()));
    Assert.assertNotEquals(updatedTask.getCreated(), updatedTask.getModified());
    Assert.assertEquals(task.getCreated(), updatedTask.getCreated());
    Assert.assertEquals(task.isRead(), updatedTask.isRead());
}
Also used : Task(pro.taskana.Task) TaskService(pro.taskana.TaskService) Instant(java.time.Instant) AbstractAccTest(acceptance.AbstractAccTest) Test(org.junit.Test) WithAccessId(pro.taskana.security.WithAccessId)

Example 78 with WithAccessId

use of pro.taskana.security.WithAccessId in project taskana by Taskana.

the class UpdateTaskAccTest method testUpdateOfWorkbasketKeyWhatIsNotAllowed.

@WithAccessId(userName = "user_1_1", groupNames = { "group_1" })
@Test(expected = InvalidArgumentException.class)
public void testUpdateOfWorkbasketKeyWhatIsNotAllowed() throws SQLException, NotAuthorizedException, InvalidArgumentException, ClassificationNotFoundException, WorkbasketNotFoundException, TaskAlreadyExistException, InvalidWorkbasketException, TaskNotFoundException, ConcurrencyException, AttachmentPersistenceException {
    TaskService taskService = taskanaEngine.getTaskService();
    Task task = taskService.getTask("TKI:000000000000000000000000000000000000");
    ((TaskImpl) task).setWorkbasketKey("USER_2_2");
    taskService.updateTask(task);
}
Also used : Task(pro.taskana.Task) TaskService(pro.taskana.TaskService) TaskImpl(pro.taskana.impl.TaskImpl) AbstractAccTest(acceptance.AbstractAccTest) Test(org.junit.Test) WithAccessId(pro.taskana.security.WithAccessId)

Example 79 with WithAccessId

use of pro.taskana.security.WithAccessId in project taskana by Taskana.

the class UpdateTaskAccTest method testUpdateClassificationOfTask.

@WithAccessId(userName = "user_1_1", groupNames = { "group_1" })
@Test
public void testUpdateClassificationOfTask() throws TaskNotFoundException, WorkbasketNotFoundException, ClassificationNotFoundException, InvalidArgumentException, ConcurrencyException, InvalidWorkbasketException, NotAuthorizedException, AttachmentPersistenceException {
    TaskService taskService = taskanaEngine.getTaskService();
    Task task = taskService.getTask("TKI:000000000000000000000000000000000000");
    ClassificationSummary classificationSummary = task.getClassificationSummary();
    task.setClassificationKey("T2100");
    Task updatedTask = taskService.updateTask(task);
    updatedTask = taskService.getTask(updatedTask.getId());
    assertNotNull(updatedTask);
    assertEquals("T2100", updatedTask.getClassificationSummary().getKey());
    assertThat(updatedTask.getClassificationSummary(), not(equalTo(classificationSummary)));
    assertNotEquals(updatedTask.getCreated(), updatedTask.getModified());
    assertEquals(task.getPlanned(), updatedTask.getPlanned());
    assertEquals(task.getName(), updatedTask.getName());
    assertEquals(task.getDescription(), updatedTask.getDescription());
}
Also used : Task(pro.taskana.Task) ClassificationSummary(pro.taskana.ClassificationSummary) TaskService(pro.taskana.TaskService) AbstractAccTest(acceptance.AbstractAccTest) Test(org.junit.Test) WithAccessId(pro.taskana.security.WithAccessId)

Example 80 with WithAccessId

use of pro.taskana.security.WithAccessId in project taskana by Taskana.

the class WorkOnTaskAccTest method testClaimAlreadyClaimedByCallerTask.

@WithAccessId(userName = "user_1_2", groupNames = { "group_1" })
@Test
public void testClaimAlreadyClaimedByCallerTask() throws SQLException, NotAuthorizedException, InvalidArgumentException, ClassificationNotFoundException, WorkbasketNotFoundException, TaskAlreadyExistException, InvalidWorkbasketException, TaskNotFoundException, InvalidStateException, InvalidOwnerException {
    TaskService taskService = taskanaEngine.getTaskService();
    Task task = taskService.getTask("TKI:000000000000000000000000000000000027");
    taskService.claim(task.getId());
}
Also used : Task(pro.taskana.Task) TaskService(pro.taskana.TaskService) AbstractAccTest(acceptance.AbstractAccTest) Test(org.junit.Test) WithAccessId(pro.taskana.security.WithAccessId)

Aggregations

Test (org.junit.Test)216 WithAccessId (pro.taskana.security.WithAccessId)216 AbstractAccTest (acceptance.AbstractAccTest)201 TaskService (pro.taskana.TaskService)100 WorkbasketService (pro.taskana.WorkbasketService)78 Task (pro.taskana.Task)57 WorkbasketSummary (pro.taskana.WorkbasketSummary)51 TaskSummary (pro.taskana.TaskSummary)47 TaskanaEngineProxyForTest (pro.taskana.impl.TaskanaEngineProxyForTest)34 Workbasket (pro.taskana.Workbasket)23 Classification (pro.taskana.Classification)21 KeyDomain (pro.taskana.KeyDomain)19 InvalidArgumentException (pro.taskana.exceptions.InvalidArgumentException)19 ArrayList (java.util.ArrayList)17 Instant (java.time.Instant)16 WorkbasketAccessItem (pro.taskana.WorkbasketAccessItem)16 TaskanaEngineConfigurationTest (pro.taskana.impl.configuration.TaskanaEngineConfigurationTest)15 Connection (java.sql.Connection)10 NotAuthorizedException (pro.taskana.exceptions.NotAuthorizedException)9 TimeInterval (pro.taskana.TimeInterval)8