47 return new Map($this->factory);
53 protected function setUp(): void
64 return $this->identification->core($this->provider)->identifier($id);
71 $p1 = $this->
getId(
'parent_1');
72 $p2 = $this->
getId(
'parent_2');
73 $p3 = $this->
getId(
'parent_3');
75 $this->factory->topParentItem($p1),
76 $this->factory->topParentItem($p2),
77 $this->factory->topParentItem($p3)
80 $p4 = $this->
getId(
'parent_4');
81 $map->add($this->factory->topParentItem($p4));
83 $this->assertTrue($map->has());
84 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
85 $this->assertTrue($map->existsInFilter($p1));
86 $this->assertTrue($map->existsInFilter($p2));
87 $this->assertTrue($map->existsInFilter($p3));
88 $this->assertTrue($map->existsInFilter($p4));
95 $p1 = $this->
getId(
'parent_1');
96 $p2 = $this->
getId(
'parent_2');
97 $p3 = $this->
getId(
'parent_3');
98 $p4 = $this->
getId(
'parent_4');
100 $this->factory->topParentItem($p1),
101 $this->factory->topParentItem($p2),
102 $this->factory->topParentItem($p3),
103 $this->factory->topParentItem($p4)
106 $this->assertTrue($map->has());
107 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
109 $map->filter(
static function ():
bool {
113 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
115 $map->filter(
static function (
isItem $i):
bool {
119 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 3);
120 $this->assertFalse($map->existsInFilter($p1));
121 $this->assertTrue($map->existsInFilter($p2));
122 $this->assertTrue($map->existsInFilter($p3));
123 $this->assertTrue($map->existsInFilter($p4));
125 $map->filter(
static function ():
bool {
128 $this->assertFalse($map->existsInFilter($p1));
129 $this->assertFalse($map->existsInFilter($p2));
130 $this->assertFalse($map->existsInFilter($p3));
131 $this->assertFalse($map->existsInFilter($p4));
138 for ($x = 1; $x <= 10; $x++) {
139 $map->add($this->factory->topParentItem($this->getId((
string) $x))->withPosition(11 - $x));
143 foreach ($map->getAllFromFilter() as
$i) {
144 $this->assertSame(
$i->getPosition(), $x);
150 $generator = $map->getAllFromFilter();
152 $one =
static function () use ($generator):
isItem {
153 $i = $generator->current();
159 $this->assertSame(
'10',
$i->getProviderIdentification()->getInternalIdentifier());
160 $this->assertSame(1,
$i->getPosition());
163 $this->assertSame(
'9', $i->getProviderIdentification()->getInternalIdentifier());
164 $this->assertSame(2, $i->getPosition());
167 $this->assertSame(
'8', $i->getProviderIdentification()->getInternalIdentifier());
168 $this->assertSame(3, $i->getPosition());
171 $this->assertSame(
'7', $i->getProviderIdentification()->getInternalIdentifier());
172 $this->assertSame(4, $i->getPosition());
175 $this->assertSame(
'6', $i->getProviderIdentification()->getInternalIdentifier());
176 $this->assertSame(5, $i->getPosition());
179 $this->assertSame(
'5', $i->getProviderIdentification()->getInternalIdentifier());
180 $this->assertSame(6, $i->getPosition());
183 $this->assertSame(
'4', $i->getProviderIdentification()->getInternalIdentifier());
184 $this->assertSame(7, $i->getPosition());
187 $this->assertSame(
'3', $i->getProviderIdentification()->getInternalIdentifier());
188 $this->assertSame(8, $i->getPosition());
191 $this->assertSame(
'2', $i->getProviderIdentification()->getInternalIdentifier());
192 $this->assertSame(9, $i->getPosition());
195 $this->assertSame(
'1', $i->getProviderIdentification()->getInternalIdentifier());
196 $this->assertSame(10, $i->getPosition());
199 public function testSortingNestedItems():
void 203 $tp_1 = $this->factory->topParentItem($this->
getId(
'tp_1'))
205 $tp_1_1 = $this->factory->link($this->
getId(
'tp_1_1'))
206 ->withParent($tp_1->getProviderIdentification())
208 $tp_1_2 = $this->factory->link($this->
getId(
'tp_1_2'))
209 ->withParent($tp_1->getProviderIdentification())
211 $tp_1 = $tp_1->withChildren([
219 $tp_2 = $this->factory->topParentItem($this->
getId(
'tp_2'))
221 $tp_2_1 = $this->factory->link($this->
getId(
'tp_2_1'))
222 ->withParent($tp_2->getProviderIdentification())
224 $tp_2_2 = $this->factory->link($this->
getId(
'tp_2_2'))
225 ->withParent($tp_2->getProviderIdentification())
227 $tp_2 = $tp_2->withChildren([
237 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_1'))->getPosition());
238 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_1_1'))->getPosition());
239 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_1_2'))->getPosition());
240 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_2'))->getPosition());
241 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_2_1'))->getPosition());
242 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_2_2'))->getPosition());
245 $get_tp_1 = $map->getSingleItemFromFilter($this->
getId(
'tp_1'));
246 $children_of_tp_1 = $get_tp_1->getChildren();
247 $first = reset($children_of_tp_1);
248 $this->assertEquals($tp_1_1, $first);
249 $this->assertEquals(1, $first->getPosition());
251 $get_tp_2 = $map->getSingleItemFromFilter($this->
getId(
'tp_2'));
252 $children_of_tp_2 = $get_tp_2->getChildren();
253 $first = reset($children_of_tp_2);
254 $this->assertEquals($tp_2_1, $first);
255 $this->assertEquals(1, $first->getPosition());
258 public function testSamePositionResolution():
void 262 $tp_1 = $this->factory->topParentItem($this->
getId(
'tp_1'))
264 $tp_1_1 = $this->factory->link($this->
getId(
'tp_1_1'))
265 ->withParent($tp_1->getProviderIdentification())
267 $tp_1_2 = $this->factory->link($this->
getId(
'tp_1_2'))
268 ->withParent($tp_1->getProviderIdentification())
270 $tp_1 = $tp_1->withChildren([
278 $item = $map->getSingleItemFromFilter($this->
getId(
'tp_1'));
279 $this->assertCount(2, $item->getChildren());
285 public function getAllIdentifications(): array
290 public function getFullyQualifiedClassName():
string 300 public function getStaticTopItems(): array
305 public function getStaticSubItems(): array
IdentificationFactory $identification
StaticMainMenuProvider $provider
Interface IdentificationInterface.
Class MainMenuItemFactory This factory provides you all available types for MainMenu GlobalScreen Ite...
Class TypeInformationCollection.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getProviderNameForPresentation()
Class NullProviderFactory.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class IdentificationFactory All elements in the GlobalScreen service must be identifiable for the sup...
Interface StaticMainMenuProvider.
getProviderIdentification()
MainMenuItemFactory $factory