use of pro.taskana.TaskService in project taskana by Taskana.
the class QueryTasksAccTest method testQueryForCustom9.
@WithAccessId(userName = "teamlead_1", groupNames = { "group_1" })
@Test
public void testQueryForCustom9() throws SQLException, NotAuthorizedException, InvalidArgumentException {
TaskService taskService = taskanaEngine.getTaskService();
List<TaskSummary> results = taskService.createTaskQuery().customAttributeLike("9", "%a%", "%b%", "%c%", "%d%", "%e%", "%f%", "%g%", "%h%", "%i%", "%j%", "%k%", "%l%", "%m%", "%n%", "%o%", "%p%", "%q%", "%r%", "%s%", "%w%").list();
assertThat(results.size(), equalTo(1));
String[] ids = results.stream().map(t -> {
try {
return t.getCustomAttribute("9");
} catch (InvalidArgumentException e) {
e.printStackTrace();
return "";
}
}).collect(Collectors.toList()).toArray(new String[0]);
List<TaskSummary> result2 = taskService.createTaskQuery().customAttributeIn("9", ids).list();
assertThat(result2.size(), equalTo(1));
}
use of pro.taskana.TaskService in project taskana by Taskana.
the class QueryTasksAccTest method testQueryForName.
@WithAccessId(userName = "teamlead_1", groupNames = { "group_1", "group_2" })
@Test
public void testQueryForName() throws SQLException, NotAuthorizedException, InvalidArgumentException {
TaskService taskService = taskanaEngine.getTaskService();
List<TaskSummary> results = taskService.createTaskQuery().nameLike("task%").list();
assertThat(results.size(), equalTo(6));
String[] ids = results.stream().map(TaskSummary::getName).collect(Collectors.toList()).toArray(new String[0]);
List<TaskSummary> result2 = taskService.createTaskQuery().nameIn(ids).list();
assertThat(result2.size(), equalTo(6));
}
use of pro.taskana.TaskService in project taskana by Taskana.
the class QueryTasksAccTest method testQueryForOwnerLike.
@WithAccessId(userName = "teamlead_1", groupNames = { "group_1", "group_2" })
@Test
public void testQueryForOwnerLike() throws SQLException, NotAuthorizedException, InvalidArgumentException {
TaskService taskService = taskanaEngine.getTaskService();
List<TaskSummary> results = taskService.createTaskQuery().ownerLike("%a%", "%u%").orderByCreated(asc).list();
assertThat(results.size(), equalTo(25));
TaskSummary previousSummary = null;
for (TaskSummary taskSummary : results) {
if (previousSummary != null) {
Assert.assertTrue(!previousSummary.getCreated().isAfter(taskSummary.getCreated()));
}
previousSummary = taskSummary;
}
}
use of pro.taskana.TaskService in project taskana by Taskana.
the class QueryTasksAccTest method testQueryTaskValuesForColumnName.
@Test
public void testQueryTaskValuesForColumnName() {
TaskService taskService = taskanaEngine.getTaskService();
List<String> columnValueList = taskService.createTaskQuery().ownerLike("%user%").orderByOwner(desc).listValues("OWNER", null);
assertNotNull(columnValueList);
assertEquals(3, columnValueList.size());
columnValueList = taskService.createTaskQuery().listValues("STATE", null);
assertNotNull(columnValueList);
assertEquals(3, columnValueList.size());
}
use of pro.taskana.TaskService in project taskana by Taskana.
the class QueryTasksAccTest method testQueryForCustom8.
@WithAccessId(userName = "teamlead_1", groupNames = { "group_1" })
@Test
public void testQueryForCustom8() throws SQLException, NotAuthorizedException, InvalidArgumentException {
TaskService taskService = taskanaEngine.getTaskService();
List<TaskSummary> results = taskService.createTaskQuery().customAttributeLike("8", "%a%", "%b%", "%c%", "%d%", "%e%", "%f%", "%g%", "%h%", "%i%", "%j%", "%k%", "%l%", "%m%", "%n%", "%o%", "%p%", "%q%", "%r%", "%s%", "%w%").list();
assertThat(results.size(), equalTo(1));
String[] ids = results.stream().map(t -> {
try {
return t.getCustomAttribute("8");
} catch (InvalidArgumentException e) {
e.printStackTrace();
return "";
}
}).collect(Collectors.toList()).toArray(new String[0]);
List<TaskSummary> result2 = taskService.createTaskQuery().customAttributeIn("8", ids).list();
assertThat(result2.size(), equalTo(1));
}
Aggregations