19 declare(strict_types=1);
28 $templateRepository = $this->getMockBuilder(ilCertificateTemplateRepository::class)->getMock();
30 $templateRepository->method(
'fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress')
36 '<xml>Some Content</xml>',
37 md5(
'<xml>Some Content</xml>'),
43 '/some/where/background.jpg',
44 '/some/where/thumbnail.svg',
50 '<xml>Some Content</xml>',
51 md5(
'<xml>Some Content</xml>'),
57 '/some/where/background.jpg',
58 '/some/where/thumbnail.svg',
64 $setting = $this->getMockBuilder(ilSetting::class)
65 ->disableOriginalConstructor()
74 ->willReturnOnConsecutiveCalls(
79 $objectHelper = $this->getMockBuilder(ilCertificateObjectHelper::class)
82 $objectHelper->method(
'lookupObjId')
89 ->willReturnOnConsecutiveCalls(100, 200, 100, 500);
91 $statusHelper = $this->getMockBuilder(ilCertificateLPStatusHelper::class)
94 $statusHelper->method(
'lookUpStatus')
101 ->willReturnOnConsecutiveCalls(
108 $trackingHelper = $this->getMockBuilder(ilCertificateObjUserTrackingHelper::class)
110 $trackingHelper->method(
'enabledLearningProgress')->willReturn(
true);
120 $completedCourses = $evaluation->evaluate(10, 200);
122 $this->assertSame(5, $completedCourses[0]->getObjId());
127 $templateRepository = $this->getMockBuilder(ilCertificateTemplateRepository::class)->getMock();
129 $templateRepository->method(
'fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress')
135 '<xml>Some Content</xml>',
136 md5(
'<xml>Some Content</xml>'),
142 '/some/where/background.jpg',
143 '/some/where/thumbnail.svg',
149 '<xml>Some Content</xml>',
150 md5(
'<xml>Some Content</xml>'),
156 '/some/where/background.jpg',
157 '/some/where/thumbnail.svg',
163 $setting = $this->getMockBuilder(ilSetting::class)
164 ->disableOriginalConstructor()
173 ->willReturnOnConsecutiveCalls(
178 $objectHelper = $this->getMockBuilder(ilCertificateObjectHelper::class)
181 $objectHelper->method(
'lookupObjId')
188 ->willReturnOnConsecutiveCalls(100, 200, 100, 500);
190 $statusHelper = $this->getMockBuilder(ilCertificateLPStatusHelper::class)
193 $statusHelper->method(
'lookUpStatus')
200 ->willReturnOnConsecutiveCalls(
207 $trackingHelper = $this->getMockBuilder(ilCertificateObjUserTrackingHelper::class)
209 $trackingHelper->method(
'enabledLearningProgress')->willReturn(
false);
219 $completedCourses = $evaluation->evaluate(10, 200);
221 $this->assertSame(5, $completedCourses[0]->getObjId());
222 $this->assertSame(6, $completedCourses[1]->getObjId());
227 $templateRepository = $this->getMockBuilder(ilCertificateTemplateRepository::class)->getMock();
229 $templateRepository->method(
'fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress')
235 '<xml>Some Content</xml>',
236 md5(
'<xml>Some Content</xml>'),
242 '/some/where/background.jpg',
243 '/some/where/thumbnail.svg',
249 '<xml>Some Content</xml>',
250 md5(
'<xml>Some Content</xml>'),
256 '/some/where/background.jpg',
257 '/some/where/thumbnail.svg',
263 $setting = $this->getMockBuilder(ilSetting::class)
264 ->disableOriginalConstructor()
273 ->willReturnOnConsecutiveCalls(
278 $objectHelper = $this->getMockBuilder(ilCertificateObjectHelper::class)
281 $statusHelper = $this->getMockBuilder(ilCertificateLPStatusHelper::class)
284 $trackingHelper = $this->getMockBuilder(ilCertificateObjUserTrackingHelper::class)
286 $trackingHelper->method(
'enabledLearningProgress')->willReturn(
false);
296 $completedCourses = $evaluation->evaluate(10, 200);
298 $this->assertSame([], $completedCourses);
304 'LP globally enabled' => [
true, []],
305 'LP globally disabled' => [
true, [
310 'certificate_content' =>
'<xml>Some Content</xml>',
311 'certificate_hash' => md5(
'<xml>Some Content</xml>'),
312 'template_values' =>
'[]',
314 'ilias_version' =>
'v5.4.0',
315 'created_timestamp' => 123456789,
316 'currently_active' =>
true,
317 'background_image_path' =>
'/some/where/background.jpg',
318 'thumbnail_image_path' =>
'some/path/test.svg' 324 'certificate_content' =>
'<xml>Some Other Content</xml>',
325 'certificate_hash' => md5(
'<xml>Some Content</xml>'),
326 'template_values' =>
'[]',
328 'ilias_version' =>
'v5.3.0',
329 'created_timestamp' => 123456789,
330 'currently_active' =>
false,
331 'background_image_path' =>
'/some/where/else/background.jpg',
332 'thumbnail_image_path' =>
'some/path/test.svg' 344 bool $isGlobalLpEnabled,
345 array $template_recods
347 $statement = $database = $this->getMockBuilder(ilDBStatement::class)->getMock();
349 $database->method(
'fetch')->willReturnCallback(
static function () use (&
$i, $template_recods) {
350 $result = $template_recods[
$i] ?? null;
356 $database = $this->createMock(ilDBInterface::class);
357 $database->expects($this->once())->method(
'queryF')->with(
360 $this->stringContains(
'LEFT JOIN ut_lp_settings',
false),
361 $this->stringContains(
'uls.u_mode',
false),
362 ) : $this->logicalAnd(
363 $this->logicalNot($this->stringContains(
'LEFT JOIN ut_lp_settings',
false)),
364 $this->logicalNot($this->stringContains(
'uls.u_mode',
false)),
366 )->willReturn($statement);
367 $database->expects($this->exactly(count($template_recods) + 1))
368 ->method(
'fetchAssoc')
370 ->willReturnCallback(
static function (
ilDBStatement $statement) {
371 return $statement->
fetch(PDO::FETCH_ASSOC);
374 $logger = $this->getMockBuilder(ilLogger::class)
375 ->disableOriginalConstructor()
378 $objectDataCache = $this->getMockBuilder(ilObjectDataCache::class)
379 ->disableOriginalConstructor()
388 $templates = $repository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
391 $this->assertCount(count($template_recods), $templates);
396 $wrappedTemplateRepository = $this->getMockBuilder(ilCertificateTemplateRepository::class)->getMock();
397 $wrappedTemplateRepository
398 ->expects($this->exactly(2))
399 ->method(
'fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress')
400 ->willReturnCallback(
static function (
bool $isGlobalLpEnabled): array {
401 if ($isGlobalLpEnabled) {
409 '<xml>Some Content</xml>',
410 md5(
'<xml>Some Content</xml>'),
416 '/some/where/background.jpg',
417 '/some/where/thumbnail.svg',
423 '<xml>Some Content</xml>',
424 md5(
'<xml>Some Content</xml>'),
430 '/some/where/background.jpg',
431 '/some/where/thumbnail.svg',
438 $result1 = $templateRepository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
true);
440 $result2 = $templateRepository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
true);
442 $result3 = $templateRepository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
false);
444 $result4 = $templateRepository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
false);
446 $result5 = $templateRepository->fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(
true);
448 $this->assertSame($result1, $result2);
449 $this->assertSame($result1, $result5);
450 $this->assertCount(0, $result1);
452 $this->assertNotSame($result1, $result3);
453 $this->assertSame($result3, $result4);
454 $this->assertCount(2, $result3);
const LP_STATUS_COMPLETED_NUM
testAllCoursesAreCompletedOnLPChange()
A certicate template repository which caches results of query commands List of cached results (other ...
const LP_STATUS_IN_PROGRESS_NUM
globalLearningProgressStateProvder()
Class ilCertificateBaseTestCase.
testRetrievingCertificateTemplatesForCoursesWorksAsExpectedWhenUsingNonCachingRepository(bool $isGlobalLpEnabled, array $template_recods)
globalLearningProgressStateProvder
fetch(int $fetch_mode=ilDBConstants::FETCHMODE_ASSOC)
testOnlyOneCourseIsCompletedOnLPChange()
testRetrievingCertificateTemplatesForCoursesWillBeCachedWhenCachingRepositoryIsUsed()
testNoSubitemDefinedForEvaluation()