use of org.olat.course.nodes.gta.AssignmentResponse in project OpenOLAT by OpenOLAT.
the class GTAManagerTest method isTaskInProcess.
@Test
public void isTaskInProcess() {
// prepare
Identity participant = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-11");
RepositoryEntry re = deployGTACourse();
GTACourseNode node = getGTACourseNode(re);
node.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks = gtaManager.createIfNotExists(re, node);
File taskFile = new File("solo.txt");
Assert.assertNotNull(tasks);
dbInstance.commit();
// select
AssignmentResponse response = gtaManager.selectTask(participant, tasks, node, taskFile);
dbInstance.commitAndCloseSession();
Assert.assertNotNull(response);
Assert.assertNotNull(response.getTask());
// check
boolean inProcess = gtaManager.isTaskInProcess(re, node, taskFile.getName());
Assert.assertTrue(inProcess);
// check dummy file name which cannot be in process
boolean notInProcess = gtaManager.isTaskInProcess(re, node, "qwertz");
Assert.assertFalse(notInProcess);
}
use of org.olat.course.nodes.gta.AssignmentResponse in project OpenOLAT by OpenOLAT.
the class GTAManagerTest method isTaskAssigned.
@Test
public void isTaskAssigned() {
// create an individual task
Identity participant = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-6");
RepositoryEntry re = deployGTACourse();
GTACourseNode node = getGTACourseNode(re);
node.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks = gtaManager.createIfNotExists(re, node);
dbInstance.commit();
Assert.assertNotNull(tasks);
// select
File taskFile = new File("bg.txt");
AssignmentResponse response = gtaManager.selectTask(participant, tasks, node, taskFile);
Assert.assertNotNull(response);
Assert.assertEquals(Status.ok, response.getStatus());
// check is assigned
boolean assigned = gtaManager.isTaskAssigned(tasks, taskFile.getName());
Assert.assertTrue(assigned);
boolean notAssigned = gtaManager.isTaskAssigned(tasks, "noise.txt");
Assert.assertFalse(notAssigned);
}
use of org.olat.course.nodes.gta.AssignmentResponse in project OpenOLAT by OpenOLAT.
the class GTAManagerTest method isTasksInProcess_yes.
@Test
public void isTasksInProcess_yes() {
// prepare
Identity participant = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-12");
RepositoryEntry re = deployGTACourse();
GTACourseNode node = getGTACourseNode(re);
node.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks = gtaManager.createIfNotExists(re, node);
File taskFile = new File("solo.txt");
Assert.assertNotNull(tasks);
dbInstance.commit();
// select
AssignmentResponse response = gtaManager.selectTask(participant, tasks, node, taskFile);
dbInstance.commitAndCloseSession();
Assert.assertNotNull(response);
Assert.assertNotNull(response.getTask());
// check
boolean inProcess = gtaManager.isTasksInProcess(re, node);
Assert.assertTrue(inProcess);
}
use of org.olat.course.nodes.gta.AssignmentResponse in project OpenOLAT by OpenOLAT.
the class GTAManagerTest method selectTask_identity.
@Test
public void selectTask_identity() {
// prepare
Identity participant = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-1");
RepositoryEntry re = deployGTACourse();
GTACourseNode node = getGTACourseNode(re);
node.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks = gtaManager.createIfNotExists(re, node);
File taskFile = new File("solo.txt");
Assert.assertNotNull(tasks);
dbInstance.commit();
// select
AssignmentResponse response = gtaManager.selectTask(participant, tasks, node, taskFile);
dbInstance.commitAndCloseSession();
// check
Assert.assertNotNull(response);
Assert.assertNotNull(response.getTask());
Assert.assertEquals(AssignmentResponse.Status.ok, response.getStatus());
Task task = response.getTask();
Assert.assertNotNull(task.getKey());
Assert.assertNull(task.getBusinessGroup());
Assert.assertNotNull(task.getCreationDate());
Assert.assertNotNull(task.getLastModified());
Assert.assertEquals(tasks, task.getTaskList());
Assert.assertEquals("solo.txt", task.getTaskName());
Assert.assertEquals(participant, task.getIdentity());
}
use of org.olat.course.nodes.gta.AssignmentResponse in project OpenOLAT by OpenOLAT.
the class GTAManagerTest method deleteAllTaskLists_parano.
/**
* Create 2 pseudo courses in a course, and delete the task of the first course
* and check that the task of second are always there.
*/
@Test
public void deleteAllTaskLists_parano() {
Identity coach = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-20");
Identity participant1 = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-21");
Identity participant2 = JunitTestHelper.createAndPersistIdentityAsRndUser("gta-user-22");
RepositoryEntry re1 = deployGTACourse();
repositoryEntryRelationDao.addRole(coach, re1, GroupRoles.coach.name());
repositoryEntryRelationDao.addRole(participant1, re1, GroupRoles.participant.name());
repositoryEntryRelationDao.addRole(participant2, re1, GroupRoles.participant.name());
// course 1
GTACourseNode node1 = getGTACourseNode(re1);
node1.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks1 = gtaManager.createIfNotExists(re1, node1);
File taskFile = new File("bg.txt");
Assert.assertNotNull(tasks1);
dbInstance.commit();
RepositoryEntry re2 = deployGTACourse();
repositoryEntryRelationDao.addRole(coach, re2, GroupRoles.coach.name());
repositoryEntryRelationDao.addRole(participant1, re2, GroupRoles.participant.name());
// participant 2 course 2
GTACourseNode node2 = getGTACourseNode(re2);
node2.getModuleConfiguration().setStringValue(GTACourseNode.GTASK_TYPE, GTAType.individual.name());
TaskList tasks2 = gtaManager.createIfNotExists(re2, node2);
Assert.assertNotNull(tasks2);
dbInstance.commit();
// participant 1 and 2 select course 1
AssignmentResponse response1_1 = gtaManager.selectTask(participant1, tasks1, node1, taskFile);
AssignmentResponse response1_2 = gtaManager.selectTask(participant2, tasks1, node1, taskFile);
dbInstance.commitAndCloseSession();
Assert.assertNotNull(response1_1);
Assert.assertNotNull(response1_2);
// participant 2 select node 2
AssignmentResponse response2_2 = gtaManager.selectTask(participant2, tasks2, node2, taskFile);
dbInstance.commitAndCloseSession();
Assert.assertNotNull(response2_2);
// check that there is tasks
List<Task> assignedTasks1_1 = gtaManager.getTasks(participant1, re1, node1);
Assert.assertNotNull(assignedTasks1_1);
Assert.assertEquals(1, assignedTasks1_1.size());
List<Task> assignedTasks1_2 = gtaManager.getTasks(participant2, re1, node1);
Assert.assertNotNull(assignedTasks1_2);
Assert.assertEquals(1, assignedTasks1_2.size());
List<Task> assignedTasks2_2 = gtaManager.getTasks(participant2, re2, node2);
Assert.assertNotNull(assignedTasks2_2);
Assert.assertEquals(1, assignedTasks2_2.size());
// delete
int numOfDeletedObjects = gtaManager.deleteAllTaskLists(re1);
Assert.assertEquals(3, numOfDeletedObjects);
dbInstance.commitAndCloseSession();
// check that there isn't any tasks in node 1
List<Task> deletedAssignedTasks1_1 = gtaManager.getTasks(participant1, re1, node1);
Assert.assertNotNull(deletedAssignedTasks1_1);
Assert.assertEquals(0, deletedAssignedTasks1_1.size());
List<Task> deletedAssignedTasks1_2 = gtaManager.getTasks(participant2, re1, node1);
Assert.assertNotNull(deletedAssignedTasks1_2);
Assert.assertEquals(0, deletedAssignedTasks1_2.size());
// but always in node 2
List<Task> notDeletedAssignedTasks2_2 = gtaManager.getTasks(participant2, re2, node2);
Assert.assertNotNull(notDeletedAssignedTasks2_2);
Assert.assertEquals(1, notDeletedAssignedTasks2_2.size());
}
Aggregations