3 declare(strict_types=1);
43 protected function setUp(): void
45 $this->items_db = $this->createMock(ilLSItemsDB::class);
46 $this->
access = $this->createMock(ilAccess::class);
47 $this->obj_data_cache = $this->createMock(ilObjectDataCache::class);
54 $this->assertInstanceOf(ilLearnerProgressDB::class, $obj);
60 ->expects($this->once())
61 ->method(
'getLsItems')
67 $result = $obj->getLearnerItems(100, 33);
69 $this->assertIsArray($result);
70 $this->assertEmpty($result);
75 $ls_item = $this->createMock(LSItem::class);
78 ->expects($this->once())
83 ->expects($this->once())
89 ->expects($this->once())
90 ->method(
'checkAccessOfUser')
91 ->with(100,
'visible',
'', 33)
96 ->expects($this->once())
97 ->method(
'getLSItems')
99 ->willReturn([$ls_item])
103 $result = $obj->getLearnerItems(100, 44);
105 $this->assertIsArray($result);
106 $this->assertEmpty($result);
111 $ls_item = $this->createMock(LSItem::class);
114 ->expects($this->exactly(2))
119 ->expects($this->exactly(3))
125 ->expects($this->once())
129 ->expects($this->exactly(2))
130 ->method(
'checkAccessOfUser')
131 ->withConsecutive([100,
'visible',
'', 33], [100,
'read',
'', 33])
136 ->expects($this->once())
137 ->method(
'getLSItems')
139 ->willReturn([$ls_item])
143 $result = $obj->getLearnerItems(100, 44);
145 foreach ($result as $ls_learner_item) {
146 $this->assertInstanceOf(LSLearnerItem::class, $ls_learner_item);
147 $this->assertEquals(33, $ls_learner_item->getRefId());
148 $this->assertEquals(20, $ls_learner_item->getLearningProgressStatus());
149 $this->assertEquals(1, $ls_learner_item->getAvailability());
testGetLearnerItemsWithNonVisibleLSItem()
testGetLearnerItemsWithoutData()
testGetLearnerItemsWithVisibleLSItem()
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...
getLearningProgressFor(int $usr_id, LSItem $ls_item)