3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../prg_mocks.php");
34 $this->settings_repo =
new SettingsRepoMock();
35 foreach ([1, 11, 12, 13, 111, 112] as $pgs_id) {
42 $this->events =
new ProgrammeEventsMock();
44 $udf = $this->getMockBuilder(ilUserDefinedData::class)
45 ->disableOriginalConstructor()
54 'f.lastname@example.com',
60 ->withUserInformation($user_info)
78 $pgs112 = (
new ilPRGProgress(112, $status))->withAmountOfPoints(4);
79 $pgs111 = (
new ilPRGProgress(111, $status))->withAmountOfPoints(5);
83 $pgs1 = (
new ilPRGProgress(1, $status))->setSubnodes([$pgs11, $pgs12, $pgs13]);
90 $today = (new \DateTimeImmutable())->format(
'Ymd');
91 $ass = $this->ass->initAssignmentDates();
92 foreach ([1, 11, 12, 13, 111, 112] as $pgs_id) {
102 $ass = $this->ass->markRelevant($this->settings_repo, 111, 7, $this->messages);
119 ->markNotRelevant($this->settings_repo, 12, 7, $messages)
120 ->markNotRelevant($this->settings_repo, 111, 7, $messages);
122 $this->assertTrue($messages->hasErrors());
140 ->markAccredited($this->settings_repo, $this->events, 111, 7, $this->messages)
141 ->markAccredited($this->settings_repo, $this->events, 112, 7, $this->messages)
142 ->markAccredited($this->settings_repo, $this->events, 13, 7, $this->messages);
162 ->unmarkAccredited($this->settings_repo, 112, 7, $this->messages)
163 ->unmarkAccredited($this->settings_repo, 111, 7, $this->messages)
164 ->unmarkAccredited($this->settings_repo, 13, 7, $this->messages);
168 $ass->getProgressForNode(112)->getStatus()
170 $this->assertEquals(0, $ass->getProgressForNode(11)->getCurrentAmountOfPoints());
173 $ass->getProgressForNode(13)->getStatus()
177 $ass->getProgressForNode(11)->getStatus()
184 $yesterday = $today->sub(
new DateInterval(
'P1D'));
187 $pgs12 = $pgss->getSubnode(
'13')->withDeadline($today);
188 $pgs13 = $pgss->getSubnode(
'13')->withDeadline($yesterday);
190 ->withSubnode($pgs12)
191 ->withSubnode($pgs13);
195 ->succeed($this->settings_repo, 12, 777)
196 ->succeed($this->settings_repo, 13, 777);
208 ->changeProgressDeadline(
209 $this->settings_repo,
215 ->changeProgressDeadline(
216 $this->settings_repo,
225 $ass->getProgressForNode(11)->getStatus()
229 $ass->getProgressForNode(13)->getStatus()
235 $ass = $this->ass->changeAmountOfPoints(
236 $this->settings_repo,
245 ->markRelevant($this->settings_repo, 111, 7, $this->messages)
246 ->changeAmountOfPoints(
247 $this->settings_repo,
253 $this->assertEquals(1987, $ass->getProgressForNode(111)->getAmountOfPoints());
ilPRGMessageCollection $messages
testPRGAssignmentActionsChangePoints()
getProgressesWithDefaultStatus(int $status)
ilStudyProgrammeSettingsRepository $settings_repo
withAmountOfPoints(int $points)
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
testPRGAssignmentActionsSucceedAndDeadline()
ilStudyProgrammeEvents $events
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testPRGAssignmentActionsMarkAccredited()
const STATUS_NOT_RELEVANT
withProgressTree(ilPRGProgress $progress)
testPRGAssignmentActionsMarkRelevant()
testPRGAssignmentActionsInitDates()
getProgressForNode(int $node_id)
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...