19 declare(strict_types=1);
59 protected function setUp(): void
62 if (!defined(
'ILIAS_HTTP_PATH')) {
63 define(
'ILIAS_HTTP_PATH',
'https://ilias.de/');
65 if (!defined(
'CLIENT_ID')) {
66 define(
'CLIENT_ID',
'client');
68 if (!defined(
'SYSTEM_FOLDER_ID')) {
69 define(
'SYSTEM_FOLDER_ID', 0);
71 $this->dic_backup = is_object($DIC) ? clone
$DIC :
$DIC;
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);
95 $type_info =
$provider->provideTypeInformation();
96 $this->assertInstanceOf(TypeInformationCollection::class, $type_info);
99 $item_type_info = $type_info->get(TopParentItem::class);
100 $renderer = $item_type_info->getRenderer();
101 $this->assertInstanceOf(TopParentItemRenderer::class,
$renderer);
102 $this->assertInstanceOf(
108 $item_type_info = $type_info->get(Link::class);
109 $renderer = $item_type_info->getRenderer();
110 $this->assertInstanceOf(ilMMLinkItemRenderer::class,
$renderer);
111 $this->assertInstanceOf(
117 $item_type_info = $type_info->get(LinkList::class);
118 $renderer = $item_type_info->getRenderer();
119 $this->assertInstanceOf(LinkListItemRenderer::class,
$renderer);
120 $this->assertInstanceOf(
126 $item_type_info = $type_info->get(Separator::class);
127 $renderer = $item_type_info->getRenderer();
128 $this->assertInstanceOf(SeparatorItemRenderer::class,
$renderer);
129 $this->assertInstanceOf(
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);
149 $this->dic_mock[
'lng'] = $this->createMock(ilLanguage::class);
151 $items = $standard_top_items->getStaticTopItems();
157 $this->assertEquals(7, count($items));
158 $this->assertEquals(7, count($item_identifications));
160 $repo = $standard_top_items->getRepositoryIdentification();
161 $this->assertTrue(in_array($repo, $item_identifications));
163 $admin = $standard_top_items->getAdministrationIdentification();
164 $this->assertTrue(in_array($admin, $item_identifications));
166 $achievments = $standard_top_items->getAchievementsIdentification();
167 $this->assertTrue(in_array($achievments, $item_identifications));
169 $communication = $standard_top_items->getCommunicationIdentification();
170 $this->assertTrue(in_array($communication, $item_identifications));
172 $organisation = $standard_top_items->getOrganisationIdentification();
173 $this->assertTrue(in_array($communication, $item_identifications));
175 $personal = $standard_top_items->getPersonalWorkspaceIdentification();
176 $this->assertTrue(in_array($personal, $item_identifications));
Interface Observer Contains several chained tasks and infos about them.
Interface IdentificationInterface.
Class NullIdentification.
Customizing of pimple-DIC for ILIAS.
testTypeHandlers()
PhpArrayIndexImmediatelyRewrittenInspection
Class CustomMainBarProvider.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class StandardTopItemsProvider.
ProviderFactory MockObject $provider_factory_mock
getProviderIdentification()