ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TestDIC.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Test;
22 
24 use ILIAS\Test\Results\Data\Repository as TestResultRepository;
31 use ILIAS\Test\Settings\GlobalSettings\Repository as GlobalSettingsRepository;
37 use ILIAS\Test\Logging\Factory as InteractionFactory;
40 use ILIAS\Test\Questions\Properties\Repository as TestQuestionsRepository;
41 use ILIAS\Test\Questions\Properties\DatabaseRepository as TestQuestionsDatabaseRepository;
42 use ILIAS\Test\Results\Data\Factory as ResultsDataFactory;
50 
51 class TestDIC extends PimpleContainer
52 {
53  protected static ?self $dic = null;
54 
55  public static function dic(): self
56  {
57  if (!self::$dic) {
58  global $DIC;
59  self::$dic = self::buildDIC($DIC);
60  }
61  return self::$dic;
62  }
63 
64  protected static function buildDIC(ILIASContainer $DIC): self
65  {
66  $dic = new self();
67  $dic['shuffler'] = static fn($c): \ilTestShuffler =>
68  new \ilTestShuffler($DIC['refinery']);
69 
70  $dic['title_columns_builder'] = static fn($c): TitleColumnsBuilder =>
72  $c['question.general_properties.repository'],
73  $DIC['ilCtrl'],
74  $DIC['ilAccess'],
75  $DIC['lng'],
76  $DIC['static_url'],
77  $DIC['ui.factory'],
78  $DIC['refinery']
79  );
80 
81  $dic['results.data.factory'] = static fn($c): ResultsDataFactory =>
82  new ResultsDataFactory(
83  $c['shuffler'],
84  $DIC['ui.factory'],
85  $DIC['ui.renderer']
86  );
87 
88  $dic['results.presentation.factory'] = static fn($c): ResultsPresentationFactory =>
90  $DIC['ui.factory'],
91  $DIC['ui.renderer'],
92  $DIC['refinery'],
93  new DataFactory(),
94  $DIC['http'],
95  $DIC['lng']
96  );
97 
98  $dic['results.toplist.repository'] = static fn($c): TestTopListRepository =>
99  new TestTopListRepository($DIC['ilDB']);
100 
101  $dic['results.data.test_result_repository'] = static fn($c): TestResultRepository =>
102  new TestResultRepository($DIC['ilDB']);
103 
104  $dic['settings.main.repository'] = static fn($c): MainSettingsRepository =>
105  new MainSettingsDatabaseRepository($DIC['ilDB']);
106 
107  $dic['participant.access_filter.factory'] = static fn($c): \ilTestParticipantAccessFilterFactory =>
108  new \ilTestParticipantAccessFilterFactory($DIC['ilAccess']);
109 
110  $dic['scoring.manual.done_helper'] = static fn($c): TestManScoringDoneHelper =>
112 
113  $dic['marks.repository'] = static fn($c): MarksRepository =>
114  new MarksDatabaseRepository($DIC['ilDB']);
115 
116  $dic['request_data_collector'] = static fn($c): RequestDataCollector =>
118  $DIC['http'],
119  $DIC['refinery']
120  );
121 
122  $dic['response_handler'] = static fn($c): ResponseHandler =>
123  new ResponseHandler($DIC['http'], );
124 
125  $dic['settings.global.repository'] = static fn($c): GlobalSettingsRepository =>
126  new GlobalSettingsRepository($DIC['ilSetting'], new \ilSetting('assessment'));
127 
128  $dic['logging.settings'] = static fn($c): TestLoggingSettings =>
129  $c['settings.global.repository']->getLoggingSettings();
130 
131  $dic['logging.factory'] = static fn($c): InteractionFactory =>
132  new InteractionFactory();
133 
134  $dic['logging.repository'] = static fn($c): TestLoggingRepository =>
136  $c['logging.factory'],
137  $DIC['ilDB']
138  );
139 
140  $dic['logging.logger'] = static fn($c): TestLogger =>
141  new TestLogger(
142  $c['logging.settings'],
143  $c['logging.repository'],
144  $c['logging.factory'],
145  new Logging\AdditionalInformationGenerator(
146  (new \ilMustacheFactory())->getBasicEngine(),
147  $DIC['lng'],
148  $DIC['ui.factory'],
149  $DIC['refinery'],
150  $c['question.general_properties.repository']
151  ),
153  );
154 
155  $dic['logging.viewer'] = static fn($c): TestLogViewer =>
156  new TestLogViewer(
157  $c['logging.repository'],
158  $c['logging.logger'],
159  $c['title_columns_builder'],
160  $c['question.general_properties.repository'],
161  $DIC['http']->request(),
162  $DIC['http']->wrapper()->query(),
163  $DIC->uiService(),
164  $DIC['ui.factory'],
165  $DIC['ui.renderer'],
166  $DIC['refinery'],
167  $DIC['lng'],
168  $DIC['tpl'],
169  $DIC['file_delivery']->delivery(),
170  $DIC['ilUser']
171  );
172 
173  $dic['exportimport.factory'] = static fn($c): ExportImportFactory =>
175  $DIC['lng'],
176  $DIC['ilDB'],
177  $DIC['ilBench'],
178  $DIC['tpl'],
179  $c['logging.logger'],
180  $DIC['tree'],
181  $DIC['component.repository'],
182  $DIC['component.factory'],
183  $DIC['file_delivery'],
184  $DIC['ilUser'],
185  $c['question.general_properties.repository']
186  );
187 
188  $dic['exportimport.repository'] = static fn($c): ExportImportRepository =>
190  $DIC['ilDB']
191  );
192 
193  $dic['questions.properties.repository'] = static fn($c): TestQuestionsRepository =>
194  new TestQuestionsDatabaseRepository(
195  $DIC['ilDB'],
196  $c['question.general_properties.repository']
197  );
198 
199  $dic['question.general_properties.repository'] = static fn($c): GeneralQuestionPropertiesRepository =>
201  $DIC['ilDB'],
202  $DIC['component.factory'],
203  $DIC['component.repository']
204  );
205 
206  $dic['question.request_data_wrapper'] = static fn($c): QPLRequestDataCollector =>
208  $DIC->http(),
209  $DIC['refinery'],
210  $DIC['upload']
211  );
212 
213  $dic['participant.repository'] = static fn($c): ParticipantRepository =>
214  new ParticipantRepository($DIC['ilDB']);
215 
216  return $dic;
217  }
218 }
static getLogger(string $a_component_id)
Get component logger.
static self $dic
Definition: TestDIC.php:53
$c
Definition: deliver.php:25
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static dic()
Definition: TestDIC.php:55
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
$dic
Definition: result.php:31
static buildDIC(ILIASContainer $DIC)
Definition: TestDIC.php:64