11 protected function setUp() : void
13 PHPUnit_Framework_Error_Deprecated::$enabled =
false;
17 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
18 ilUnitUtil::performInitialisation();
21 $this->db = $DIC[
'ilDB'];
27 $this->assertInstanceOf(ilStudyProgrammeProgressRepository::class, $repo);
40 $prgs = $repo->createFor($prg, $ass);
41 self::$created[$prgs->getId()] = $prgs;
42 $this->assertEquals($prgs->getNodeId(), 1);
43 $this->assertEquals($prgs->getAssignmentId(), 20);
44 $this->assertEquals($prgs->getUserId(), 30);
45 $this->assertEquals($prgs->getAmountOfPoints(), 123);
46 $this->assertEquals($prgs->getCurrentAmountOfPoints(), 0);
48 $this->assertEquals($prgs->getAssignmentDate()->format(
'Y-m-d'), (
new DateTime())->format(
'Y-m-d'));
49 $this->assertNull($prgs->getCompletionBy());
50 $this->assertNull($prgs->getDeadline());
51 $this->assertNull($prgs->getCompletionDate());
52 $this->assertNull($prgs->getValidityOfQualification());
58 $prgs = $repo->createFor($prg, $ass);
59 self::$created[$prgs->getId()] = $prgs;
65 $prgs = $repo->createFor($prg, $ass);
66 self::$created[$prgs->getId()] = $prgs;
72 $prgs = $repo->createFor($prg, $ass);
73 self::$created[$prgs->getId()] = $prgs;
79 $prgs = $repo->createFor($prg, $ass);
80 self::$created[$prgs->getId()] = $prgs;
89 $prgs = current(self::$created);
90 $prgs = $repo->get($prgs->getId());
91 $this->assertEquals($prgs->getNodeId(), 1);
92 $this->assertEquals($prgs->getAssignmentId(), 20);
93 $this->assertEquals($prgs->getUserId(), 30);
94 $this->assertEquals($prgs->getAmountOfPoints(), 123);
95 $this->assertEquals($prgs->getCurrentAmountOfPoints(), 0);
97 $this->assertNull($prgs->getCompletionBy());
98 $this->assertNull($prgs->getDeadline());
99 $this->assertNull($prgs->getCompletionDate());
100 $this->assertFalse($prgs->isInvalidated());
101 $prgs->setAmountOfPoints(234)
102 ->setCurrentAmountOfPoints(345)
108 $repo->update($prgs);
111 $prgs = $repo->get($prgs->getId());
112 $this->assertEquals($prgs->getNodeId(), 1);
113 $this->assertEquals($prgs->getAssignmentId(), 20);
114 $this->assertEquals($prgs->getUserId(), 30);
115 $this->assertEquals($prgs->getAmountOfPoints(), 234);
116 $this->assertEquals($prgs->getCurrentAmountOfPoints(), 345);
118 $this->assertEquals($prgs->getCompletionBy(), 6);
122 $this->assertFalse($prgs->isInvalidated());
131 $prgs = $repo->getByIds(1, 20, 30);
132 $this->assertEquals($prgs->getNodeId(), 1);
133 $this->assertEquals($prgs->getAssignmentId(), 20);
134 $this->assertEquals($prgs->getUserId(), 30);
135 $this->assertEquals($prgs->getAmountOfPoints(), 234);
136 $this->assertEquals($prgs->getCurrentAmountOfPoints(), 345);
138 $this->assertEquals($prgs->getCompletionBy(), 6);
142 $this->assertFalse($prgs->isInvalidated());
151 $prgss = $repo->getByPrgIdAndUserId(1, 30);
152 $this->assertCount(2, $prgss);
154 foreach ($prgss as $prgs) {
155 $this->assertEquals($prgs->getNodeId(), 1);
156 $this->assertEquals($prgs->getUserId(), 30);
157 $assignments[] = $prgs->getAssignmentId();
159 $this->assertEquals([20,21], $assignments);
168 $prgss = $repo->getByPrgId(1);
169 $this->assertCount(3, $prgss);
171 foreach ($prgss as $prgs) {
172 $this->assertEquals($prgs->getNodeId(), 1);
173 $assignments[] = $prgs->getAssignmentId();
174 if (in_array($prgs->getAssignmentId(), [20,21])) {
175 $this->assertEquals($prgs->getUserId(), 30);
178 if ($prgs->getAssignmentId() === 22) {
179 $this->assertEquals($prgs->getUserId(), 31);
182 $this->assertFalse(
'unexpected assignment id');
184 $this->assertEquals([20,21,22], $assignments);
194 $prgss = $repo->getByPrgId(1);
196 $yesterday =
new DateTime();
197 $yesterday->sub(
new DateInterval(
'P1D'));
199 $prgrs1 = array_shift($prgss);
200 $prgrs1->setValidityOfQualification($yesterday);
202 $repo->update($prgrs1);
204 $prgrs2 = array_shift($prgss);
205 $prgrs2->setValidityOfQualification($yesterday);
207 $prgrs2->invalidate();
208 $repo->update($prgrs2);
210 $prgrs3 = array_shift($prgss);
212 $repo->update($prgrs1);
214 $prgrss = $repo->getExpiredSuccessfull();
218 array_map(
function ($prgrs) {
219 return $prgrs->getId();
226 array_map(
function ($prgrs) {
227 return $prgrs->getId();
238 $prgss = $repo->getByPrgId(1);
240 $yesterday =
new DateTime();
241 $yesterday->sub(
new DateInterval(
'P1D'));
242 $tomorrow =
new DateTime();
243 $tomorrow->add(
new DateInterval(
'P1D'));
245 $prgrs1 = array_shift($prgss);
246 $prgrs1->setValidityOfQualification($yesterday);
248 $repo->update($prgrs1);
250 $prgrs2 = array_shift($prgss);
252 $repo->update($prgrs1);
254 $prgrs3 = array_shift($prgss);
255 $prgrs2->setValidityOfQualification($yesterday);
257 $repo->update($prgrs1);
261 foreach ($repo->getExpiredSuccessfull() as $key => $prgrs) {
267 array_map(
function ($prgrs) {
268 return $prgrs->getId();
275 array_map(
function ($prgrs) {
276 return $prgrs->getId();
286 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
287 ilUnitUtil::performInitialisation();
291 if (count(self::$created) > 0) {
297 array_keys(self::$created),
test_query_ByIds()
test_save_and_load
Represents one assignment of the user to a program tree.
test_query_ByPrgIdUsrId()
test_save_and_load
test_query_ByPrgId()
test_save_and_load
test_query_past_succsessful_1()
test_save_and_load
test_create($repo)
test_init
static tearDownAfterClass()
test_query_past_succsessful_2()
test_save_and_load
test_save_and_load()
test_create