43 protected function setUp() : void
54 return $this->identification->core($this->provider)->identifier($id);
59 $map =
new Map($this->factory);
61 $p1 = $this->
getId(
'parent_1');
62 $p2 = $this->
getId(
'parent_2');
63 $p3 = $this->
getId(
'parent_3');
66 $this->factory->topParentItem($p1),
67 $this->factory->topParentItem($p2),
68 $this->factory->topParentItem($p3),
72 $p4 = $this->
getId(
'parent_4');
73 $map->add($this->factory->topParentItem($p4));
75 $this->assertTrue($map->has());
76 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
77 $this->assertTrue($map->existsInFilter($p1));
78 $this->assertTrue($map->existsInFilter($p2));
79 $this->assertTrue($map->existsInFilter($p3));
80 $this->assertTrue($map->existsInFilter($p4));
85 $map =
new Map($this->factory);
87 $p1 = $this->
getId(
'parent_1');
88 $p2 = $this->
getId(
'parent_2');
89 $p3 = $this->
getId(
'parent_3');
90 $p4 = $this->
getId(
'parent_4');
93 $this->factory->topParentItem($p1),
94 $this->factory->topParentItem($p2),
95 $this->factory->topParentItem($p3),
96 $this->factory->topParentItem($p4)
100 $this->assertTrue($map->has());
101 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
103 $map->filter(
static function () {
107 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 4);
109 $map->filter(
static function (
isItem $i) {
113 $this->assertSame(count(iterator_to_array($map->getAllFromFilter())), 3);
114 $this->assertFalse($map->existsInFilter($p1));
115 $this->assertTrue($map->existsInFilter($p2));
116 $this->assertTrue($map->existsInFilter($p3));
117 $this->assertTrue($map->existsInFilter($p4));
119 $map->filter(
static function () {
122 $this->assertFalse($map->existsInFilter($p1));
123 $this->assertFalse($map->existsInFilter($p2));
124 $this->assertFalse($map->existsInFilter($p3));
125 $this->assertFalse($map->existsInFilter($p4));
131 $map =
new Map($this->factory);
133 for ($x = 1; $x <= 10; $x++) {
134 $map->add($this->factory->topParentItem($this->getId((
string) $x))->withPosition(11 - $x));
138 foreach ($map->getAllFromFilter() as
$i) {
139 $this->assertSame(
$i->getPosition(), $x);
145 $generator = $map->getAllFromFilter();
147 $one =
static function () use ($generator):
isItem {
148 $i = $generator->current();
154 $this->assertSame(
'10',
$i->getProviderIdentification()->getInternalIdentifier());
155 $this->assertSame(1,
$i->getPosition());
158 $this->assertSame(
'9', $i->getProviderIdentification()->getInternalIdentifier());
159 $this->assertSame(2, $i->getPosition());
162 $this->assertSame(
'8', $i->getProviderIdentification()->getInternalIdentifier());
163 $this->assertSame(3, $i->getPosition());
166 $this->assertSame(
'7', $i->getProviderIdentification()->getInternalIdentifier());
167 $this->assertSame(4, $i->getPosition());
170 $this->assertSame(
'6', $i->getProviderIdentification()->getInternalIdentifier());
171 $this->assertSame(5, $i->getPosition());
174 $this->assertSame(
'5', $i->getProviderIdentification()->getInternalIdentifier());
175 $this->assertSame(6, $i->getPosition());
178 $this->assertSame(
'4', $i->getProviderIdentification()->getInternalIdentifier());
179 $this->assertSame(7, $i->getPosition());
182 $this->assertSame(
'3', $i->getProviderIdentification()->getInternalIdentifier());
183 $this->assertSame(8, $i->getPosition());
186 $this->assertSame(
'2', $i->getProviderIdentification()->getInternalIdentifier());
187 $this->assertSame(9, $i->getPosition());
190 $this->assertSame(
'1', $i->getProviderIdentification()->getInternalIdentifier());
191 $this->assertSame(10, $i->getPosition());
195 public function testSortingNestedItems()
197 $map =
new Map($this->factory);
199 $tp_1 = $this->factory->topParentItem($this->
getId(
'tp_1'))
201 $tp_1_1 = $this->factory->link($this->
getId(
'tp_1_1'))
202 ->withParent($tp_1->getProviderIdentification())
204 $tp_1_2 = $this->factory->link($this->
getId(
'tp_1_2'))
205 ->withParent($tp_1->getProviderIdentification())
207 $tp_1 = $tp_1->withChildren([
215 $tp_2 = $this->factory->topParentItem($this->
getId(
'tp_2'))
217 $tp_2_1 = $this->factory->link($this->
getId(
'tp_2_1'))
218 ->withParent($tp_2->getProviderIdentification())
220 $tp_2_2 = $this->factory->link($this->
getId(
'tp_2_2'))
221 ->withParent($tp_2->getProviderIdentification())
223 $tp_2 = $tp_2->withChildren([
233 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_1'))->getPosition());
234 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_1_1'))->getPosition());
235 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_1_2'))->getPosition());
236 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_2'))->getPosition());
237 $this->assertEquals(1, $map->getSingleItemFromRaw($this->getId(
'tp_2_1'))->getPosition());
238 $this->assertEquals(2, $map->getSingleItemFromRaw($this->getId(
'tp_2_2'))->getPosition());
241 $get_tp_1 = $map->getSingleItemFromFilter($this->
getId(
'tp_1'));
242 $children_of_tp_1 = $get_tp_1->getChildren();
243 $first = reset($children_of_tp_1);
244 $this->assertEquals($tp_1_1, $first);
245 $this->assertEquals(1, $first->getPosition());
247 $get_tp_2 = $map->getSingleItemFromFilter($this->
getId(
'tp_2'));
248 $children_of_tp_2 = $get_tp_2->getChildren();
249 $first = reset($children_of_tp_2);
250 $this->assertEquals($tp_2_1, $first);
251 $this->assertEquals(1, $first->getPosition());
254 public function testSamePositionResolution()
256 $map =
new Map($this->factory);
258 $tp_1 = $this->factory->topParentItem($this->
getId(
'tp_1'))
260 $tp_1_1 = $this->factory->link($this->
getId(
'tp_1_1'))
261 ->withParent($tp_1->getProviderIdentification())
263 $tp_1_2 = $this->factory->link($this->
getId(
'tp_1_2'))
264 ->withParent($tp_1->getProviderIdentification())
266 $tp_1 = $tp_1->withChildren([
274 $item = $map->getSingleItemFromFilter($this->
getId(
'tp_1'));
275 $this->assertEquals(2, count($item->getChildren()));
280 return new class implements StaticMainMenuProvider {
281 public function getAllIdentifications() : array
286 public function getFullyQualifiedClassName() :
string 296 public function getStaticTopItems() : array
301 public function getStaticSubItems() : array
Interface IdentificationInterface.
getProviderIdentification()
Class MainMenuItemFactory.
Class TypeInformationCollection.
getProviderNameForPresentation()
Class NullProviderFactory.
Class IdentificationFactory.