3 declare(strict_types=1);
29 protected function setUp(): void
36 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
37 ilUnitUtil::performInitialisation();
42 $this->db = $DIC[
'ilDB'];
43 $this->tps = $this->createMock(ilOrgUnitObjectTypePositionSetting::class);
44 $this->tps->method(
'getActivationDefault')
54 $this->assertInstanceOf(ilStudyProgrammeSettingsRepository::class, $repo);
63 $set = $repo->createFor(-1);
68 $this->assertEquals($set->getDeadlinePeriod(), 0);
69 $this->assertNull($set->getDeadlineDate());
71 $this->assertNull($set->getValidityOfQualificationDate());
84 $set = $repo->get(-1);
89 $this->assertEquals($set->getDeadlinePeriod(), 0);
90 $this->assertNull($set->getDeadlineDate());
92 $this->assertNull($set->getValidityOfQualificationDate());
100 $set = $repo->get(-1);
105 $this->assertEquals($set->getDeadlinePeriod(), 0);
106 $this->assertNull($set->getDeadlineDate());
108 $this->assertNull($set->getValidityOfQualificationDate());
111 $set->setSubtypeId(123)
115 ->setDeadlinePeriod(10)
116 ->setValidityOfQualificationPeriod(20)
117 ->setRestartPeriod(30);
120 $set = $repo->get(-1);
121 $this->assertEquals($set->getSubtypeId(), 123);
124 $this->assertEquals($set->getPoints(), 10);
125 $this->assertEquals($set->getDeadlinePeriod(), 10);
126 $this->assertNull($set->getDeadlineDate());
127 $this->assertEquals($set->getValidityOfQualificationPeriod(), 20);
128 $this->assertNull($set->getValidityOfQualificationDate());
129 $this->assertEquals($set->getRestartPeriod(), 30);
131 $set->setSubtypeId(123)
133 ->setValidityOfQualificationDate(DateTime::createFromFormat(
'Ymd',
'20200101'))
137 $set = $repo->get(-1);
138 $this->assertEquals($set->getDeadlinePeriod(), 0);
139 $this->assertEquals($set->getDeadlineDate()->format(
'Ymd'), (
new DateTime())->format(
'Ymd'));
140 $this->assertEquals($set->getValidityOfQualificationDate()->format(
'Ymd'),
'20200101');
149 $set = $repo->get(-1);
150 $this->assertEquals($set->getSubtypeId(), 123);
153 $this->assertEquals($set->getPoints(), 10);
161 $this->expectException(\LogicException::class);
166 $set = $repo->get(-1);
167 $this->assertEquals($set->getSubtypeId(), 123);
170 $this->assertEquals($set->getPoints(), 10);
testPRGRepoDelete()
test_edit_and_update
const NO_VALIDITY_OF_QUALIFICATION_PERIOD
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testPRGRepoCreate($repo)
test_init
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testPRGRepoEditAndUpdate()
test_create