use of org.olat.modules.lecture.model.LecturesBlockSearchParameters in project OpenOLAT by OpenOLAT.
the class AbstractTeacherOverviewController method doSearch.
private void doSearch(SearchLecturesBlockEvent event) {
LecturesBlockSearchParameters searchParams = new LecturesBlockSearchParameters();
searchParams.setSearchString(event.getSearchString());
searchParams.setStartDate(event.getStartDate());
searchParams.setEndDate(event.getEndDate());
loadModel(searchParams);
}
use of org.olat.modules.lecture.model.LecturesBlockSearchParameters in project OpenOLAT by OpenOLAT.
the class LectureBlockDAOTest method loadByTeachers_endDate.
@Test
public void loadByTeachers_endDate() {
Identity teacher = JunitTestHelper.createAndPersistIdentityAsRndUser("teacher-3");
RepositoryEntry entry = JunitTestHelper.createAndPersistRepositoryEntry();
LectureBlock lectureBlock = createMinimalLectureBlock(entry);
dbInstance.commitAndCloseSession();
lectureService.addTeacher(lectureBlock, teacher);
dbInstance.commitAndCloseSession();
// search lectures with the string
LecturesBlockSearchParameters searchNowParams = new LecturesBlockSearchParameters();
Calendar now = Calendar.getInstance();
now.add(Calendar.DATE, -1);
searchNowParams.setEndDate(now.getTime());
List<LectureBlock> blocks = lectureBlockDao.loadByTeacher(teacher, searchNowParams);
Assert.assertNotNull(blocks);
Assert.assertEquals(0, blocks.size());
// search in future
LecturesBlockSearchParameters searchFutureParams = new LecturesBlockSearchParameters();
now.add(Calendar.DATE, 2);
searchFutureParams.setEndDate(now.getTime());
List<LectureBlock> futureBlocks = lectureBlockDao.loadByTeacher(teacher, searchFutureParams);
Assert.assertNotNull(futureBlocks);
Assert.assertEquals(1, futureBlocks.size());
Assert.assertEquals(lectureBlock, futureBlocks.get(0));
}
use of org.olat.modules.lecture.model.LecturesBlockSearchParameters in project OpenOLAT by OpenOLAT.
the class LectureBlockDAOTest method loadByTeachers_startEndDates.
@Test
public void loadByTeachers_startEndDates() {
Identity teacher = JunitTestHelper.createAndPersistIdentityAsRndUser("teacher-1");
RepositoryEntry entry = JunitTestHelper.createAndPersistRepositoryEntry();
LectureBlock lectureBlock = createMinimalLectureBlock(entry);
dbInstance.commitAndCloseSession();
lectureService.addTeacher(lectureBlock, teacher);
dbInstance.commitAndCloseSession();
// search lectures with the string
LecturesBlockSearchParameters searchNowParams = new LecturesBlockSearchParameters();
Calendar now = Calendar.getInstance();
now.add(Calendar.DATE, -1);
searchNowParams.setStartDate(now.getTime());
now.add(Calendar.DATE, 2);
searchNowParams.setEndDate(now.getTime());
List<LectureBlock> blocks = lectureBlockDao.loadByTeacher(teacher, searchNowParams);
Assert.assertNotNull(blocks);
Assert.assertEquals(1, blocks.size());
Assert.assertEquals(lectureBlock, blocks.get(0));
// search in future
LecturesBlockSearchParameters searchFutureParams = new LecturesBlockSearchParameters();
now.add(Calendar.DATE, 2);
searchFutureParams.setStartDate(now.getTime());
now.add(Calendar.DATE, 2);
searchFutureParams.setEndDate(now.getTime());
List<LectureBlock> futureBlocks = lectureBlockDao.loadByTeacher(teacher, searchFutureParams);
Assert.assertNotNull(futureBlocks);
Assert.assertEquals(0, futureBlocks.size());
}
use of org.olat.modules.lecture.model.LecturesBlockSearchParameters in project OpenOLAT by OpenOLAT.
the class LectureBlockDAOTest method loadByTeachers.
@Test
public void loadByTeachers() {
Identity teacher = JunitTestHelper.createAndPersistIdentityAsRndUser("teacher-1");
RepositoryEntry entry = JunitTestHelper.createAndPersistRepositoryEntry();
LectureBlock lectureBlock = createMinimalLectureBlock(entry);
dbInstance.commitAndCloseSession();
lectureService.addTeacher(lectureBlock, teacher);
dbInstance.commitAndCloseSession();
// search all
LecturesBlockSearchParameters searchParams = new LecturesBlockSearchParameters();
List<LectureBlock> blocks = lectureBlockDao.loadByTeacher(teacher, searchParams);
Assert.assertNotNull(blocks);
Assert.assertEquals(1, blocks.size());
Assert.assertEquals(lectureBlock, blocks.get(0));
}
use of org.olat.modules.lecture.model.LecturesBlockSearchParameters in project openolat by klemens.
the class LectureBlockDAOTest method loadByTeachers_startEndDates.
@Test
public void loadByTeachers_startEndDates() {
Identity teacher = JunitTestHelper.createAndPersistIdentityAsRndUser("teacher-1");
RepositoryEntry entry = JunitTestHelper.createAndPersistRepositoryEntry();
LectureBlock lectureBlock = createMinimalLectureBlock(entry);
dbInstance.commitAndCloseSession();
lectureService.addTeacher(lectureBlock, teacher);
dbInstance.commitAndCloseSession();
// search lectures with the string
LecturesBlockSearchParameters searchNowParams = new LecturesBlockSearchParameters();
Calendar now = Calendar.getInstance();
now.add(Calendar.DATE, -1);
searchNowParams.setStartDate(now.getTime());
now.add(Calendar.DATE, 2);
searchNowParams.setEndDate(now.getTime());
List<LectureBlock> blocks = lectureBlockDao.loadByTeacher(teacher, searchNowParams);
Assert.assertNotNull(blocks);
Assert.assertEquals(1, blocks.size());
Assert.assertEquals(lectureBlock, blocks.get(0));
// search in future
LecturesBlockSearchParameters searchFutureParams = new LecturesBlockSearchParameters();
now.add(Calendar.DATE, 2);
searchFutureParams.setStartDate(now.getTime());
now.add(Calendar.DATE, 2);
searchFutureParams.setEndDate(now.getTime());
List<LectureBlock> futureBlocks = lectureBlockDao.loadByTeacher(teacher, searchFutureParams);
Assert.assertNotNull(futureBlocks);
Assert.assertEquals(0, futureBlocks.size());
}
Aggregations