19 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../Base.php");
42 $_SERVER[
'QUERY_STRING'] =
"param=1";
45 $_POST[
"ilfilehash"] =
"";
57 $this->dic[
"tpl"] = $this->
getTemplateFactory()->getTemplate(
"tpl.main.html",
false,
false);
59 $this->dic[
"refinery"] = new \ILIAS\Refinery\Factory(
67 $this->dic[
"ilCtrl"] = $this->getMockBuilder(\ilCtrl::class)->disableOriginalConstructor()->onlyMethods([
68 "getFormActionByClass",
"setParameterByClass",
"saveParameterByClass",
"getLinkTargetByClass",
"isAsynch" 70 $this->dic[
"ilCtrl"]->method(
"getFormActionByClass")->willReturn(
"Testing");
71 $this->dic[
"ilCtrl"]->method(
"getLinkTargetByClass")->willReturn(
"2");
72 $this->dic[
"ilCtrl"]->method(
"isAsynch")->willReturn(
false);
74 $this->dic[
"upload"] = $this->getMockBuilder(FileUpload::class)->getMock();
76 $this->dic[
"tree"] = $this->getMockBuilder(ilTree::class)
77 ->disableOriginalConstructor()
78 ->onlyMethods([
"getNodeData"])->getMock();
80 $this->dic[
"tree"]->method(
"getNodeData")->willReturn([
82 "title" =>
"mock root node",
86 $component_factory = $this->createMock(ilComponentFactory::class);
87 $component_factory->method(
"getActivePluginsInSlot")->willReturn(
new ArrayIterator());
88 $this->dic[
"component.factory"] = $component_factory;
102 if (!$entry->isAbstract()) {
103 $this->assertGreaterThan(
105 count($entry->getExamples()),
106 "Non abstract Component " . $entry->getNamespace()
107 .
" does not provide any example. Please provide at least one in " . $entry->getExamplesNamespace() .
" at " . $entry->getExamplesPath()
121 include_once $example_path;
123 $this->assertIsString($example_function_name(),
" Example $example_function_name does not render a string");
125 $this->assertTrue(
true);
135 return $crawler->crawlFactory($this->path_to_base_factory);
140 $function_names = [];
142 foreach ($entry->getExamples() as
$name => $example_path) {
143 $function_names[$entry->getExamplesNamespace() .
"\\" .
$name] = [
144 $entry->getExamplesNamespace() .
"\\" .
$name,
149 return $function_names;
160 include_once $example_path;
162 $this->assertIsString($example_function_name($DIC),
" Example $example_function_name does not render a string");
164 $this->assertTrue(
true);
171 [
'ILIAS\UI\examples\MainControls\Footer\renderFooterInFullscreenMode',
"src/UI/examples/MainControls/Footer/footer.php"],
172 [
'ILIAS\UI\examples\MainControls\Footer\renderFooterWithModalsInFullscreenMode',
"src/UI/examples/MainControls/Footer/footer_with_modals.php"],
173 [
'ILIAS\UI\examples\MainControls\MetaBar\renderMetaBarInFullscreenMode',
"src/UI/examples/MainControls/MetaBar/base_metabar.php"],
174 [
'ILIAS\UI\examples\Layout\Page\Standard\getUIMainbarExampleCondensed',
"src/UI/examples/Layout/Page/Standard/ui_mainbar.php"],
175 [
'ILIAS\UI\examples\Layout\Page\Standard\getUIMainbarExampleFull',
"src/UI/examples/Layout/Page/Standard/ui_mainbar.php"],
176 [
'ILIAS\UI\examples\Layout\Page\Standard\renderFooterInFullscreenMode',
"src/UI/examples/Layout/Page/Standard/ui.php"]
Class ExamplesTest Checks if all examples are implemented and properly returning strings.
provideListOfFullscreenExamples()
Class ChatMainBarProvider .
setUpMockDependencies()
Some wiring up of dependencies to get all the examples running.
This exception indicates that an UI component was accepted by the JF but is not backed by a real impl...
string $path_to_base_factory
Customizing of pimple-DIC for ILIAS.
Responsible for loading the UI Framework into the dependency injection container of ILIAS...
Provides common functionality for UI tests.
testAllExamplesRenderAString(string $example_function_name, string $example_path)
provideExampleFullFunctionNamesAndPath
testFullscreenModeExamples(string $example_function_name, string $example_path)
provideListOfFullscreenExamples
testAllNonAbstractComponentsShowcaseExamples()
provideExampleFullFunctionNamesAndPath()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...