ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilServicesMainMenuTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
44 
46 {
52  private Services $gs_mock;
57  protected Container $dic_mock;
58 
59  protected function setUp(): void
60  {
61  global $DIC;
62  if (!defined('ILIAS_HTTP_PATH')) {
63  define('ILIAS_HTTP_PATH', 'https://ilias.de/');
64  }
65  if (!defined('CLIENT_ID')) {
66  define('CLIENT_ID', 'client');
67  }
68  if (!defined('SYSTEM_FOLDER_ID')) {
69  define('SYSTEM_FOLDER_ID', 0);
70  }
71  $this->dic_backup = is_object($DIC) ? clone $DIC : $DIC;
72  $this->dic_mock = $DIC = new Container();
73  $this->provider_factory_mock = $this->createMock(ProviderFactory::class);
74  $this->gs_mock = $DIC['global_screen'] = new Services($this->provider_factory_mock);
75  $this->db_mock = $DIC['ilDB'] = $this->createMock(ilDBInterface::class);
76  $this->dic_mock['ilUser'] = $DIC['ilUser'] = $this->createMock(ilObjUser::class);
77  $this->dic_mock['ilSetting'] = $DIC['ilSetting'] = $this->createMock(ilSetting::class);
78  $this->dic_mock['rbacsystem'] = $DIC['rbacsystem'] = $this->createMock(ilRbacSystem::class);
79  $this->dic_mock['lng'] = $DIC['lng'] = $this->createMock(ilLanguage::class);
80  $this->dic_mock['ui.factory'] = $DIC['ui.factory'] = $this->createMock(Factory::class);
81  $this->dic_mock['ui.renderer'] = $DIC['ui.renderer'] = $this->createMock(Renderer::class);
82  $this->dic_mock['objDefinition'] = $DIC['objDefinition'] = $this->createMock(ilObjectDefinition::class);
83  }
84 
85  protected function tearDown(): void
86  {
87  global $DIC;
88  $DIC = $this->dic_backup;
89  }
90 
92  public function testTypeHandlers(): void
93  {
94  $provider = new CustomMainBarProvider($this->dic_mock, $this->createMock(ilMainMenuAccess::class));
95  $type_info = $provider->provideTypeInformation();
96  $this->assertInstanceOf(TypeInformationCollection::class, $type_info);
97 
98  // TopLink Item
99  $item_type_info = $type_info->get(TopParentItem::class);
100  $renderer = $item_type_info->getRenderer();
101  $this->assertInstanceOf(TopParentItemRenderer::class, $renderer);
102  $this->assertInstanceOf(
103  Combined::class,
104  $renderer->getComponentForItem(new TopParentItem(new NullIdentification()))
105  );
106 
107  // Link Item
108  $item_type_info = $type_info->get(Link::class);
109  $renderer = $item_type_info->getRenderer();
110  $this->assertInstanceOf(ilMMLinkItemRenderer::class, $renderer);
111  $this->assertInstanceOf(
112  \ILIAS\UI\Component\Link\Link::class,
113  $renderer->getComponentForItem(new Link(new NullIdentification()))
114  );
115 
116  // LinkList Item
117  $item_type_info = $type_info->get(LinkList::class);
118  $renderer = $item_type_info->getRenderer();
119  $this->assertInstanceOf(LinkListItemRenderer::class, $renderer);
120  $this->assertInstanceOf(
121  Combined::class,
122  $renderer->getComponentForItem(new LinkList(new NullIdentification()))
123  );
124 
125  // Separator Item
126  $item_type_info = $type_info->get(Separator::class);
127  $renderer = $item_type_info->getRenderer();
128  $this->assertInstanceOf(SeparatorItemRenderer::class, $renderer);
129  $this->assertInstanceOf(
130  Horizontal::class,
131  $renderer->getComponentForItem(new Separator(new NullIdentification()))
132  );
133 
134  // RepositoryLink Item
135  $this->dic_mock['ilObjDataCache'] = $this->createMock(ilObjectDataCache::class);
136  $this->dic_mock['static_url'] = $this->createMock(\ILIAS\StaticURL\Services::class);
137  $item_type_info = $type_info->get(RepositoryLink::class);
138  $renderer = $item_type_info->getRenderer();
139  $this->assertInstanceOf(ilMMRepositoryLinkItemRenderer::class, $renderer);
140  // Cannot render this due to missing mocking of ilLink
141  // $this->assertInstanceOf(
142  // \ILIAS\UI\Component\Link\Link::class,
143  // $renderer->getComponentForItem(new RepositoryLink(new NullIdentification()))
144  // );
145  }
146 
147  public function testStandardTopItems(): void
148  {
149  $this->dic_mock['lng'] = $this->createMock(ilLanguage::class);
150  $standard_top_items = new StandardTopItemsProvider($this->dic_mock);
151  $items = $standard_top_items->getStaticTopItems();
152  $item_identifications = array_map(
154  $items
155  );
156 
157  $this->assertEquals(7, count($items)); // this contains Dashboard as well
158  $this->assertEquals(7, count($item_identifications));
159 
160  $repo = $standard_top_items->getRepositoryIdentification();
161  $this->assertTrue(in_array($repo, $item_identifications));
162 
163  $admin = $standard_top_items->getAdministrationIdentification();
164  $this->assertTrue(in_array($admin, $item_identifications));
165 
166  $achievments = $standard_top_items->getAchievementsIdentification();
167  $this->assertTrue(in_array($achievments, $item_identifications));
168 
169  $communication = $standard_top_items->getCommunicationIdentification();
170  $this->assertTrue(in_array($communication, $item_identifications));
171 
172  $organisation = $standard_top_items->getOrganisationIdentification();
173  $this->assertTrue(in_array($communication, $item_identifications));
174 
175  $personal = $standard_top_items->getPersonalWorkspaceIdentification();
176  $this->assertTrue(in_array($personal, $item_identifications));
177  }
178 }
$renderer
Interface Observer Contains several chained tasks and infos about them.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
testTypeHandlers()
PhpArrayIndexImmediatelyRewrittenInspection
$provider
Definition: ltitoken.php:80
global $DIC
Definition: shib_login.php:22
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ProviderFactory MockObject $provider_factory_mock