ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ExamplesTest Class Reference

Class ExamplesTest Checks if all examples are implemented and properly returning strings. More...

+ Inheritance diagram for ExamplesTest:
+ Collaboration diagram for ExamplesTest:

Public Member Functions

 setUp ()
 
 testAllNonAbstractComponentsShowcaseExamples ()
 
 testAllExamplesRenderAString (string $example_function_name, string $example_path)
 getFullFunctionNamesAndPathExample More...
 
 testAllExamplesHaveExpectedOutcomeInDocs (string $example_function_name, string $example_path)
 getFullFunctionNamesAndPathExample More...
 
 testFullscreenModeExamples (string $example_function_name, string $example_path)
 getListOfFullscreenExamples More...
 

Static Public Member Functions

static getFullFunctionNamesAndPathExample ()
 
static getListOfFullscreenExamples ()
 

Protected Member Functions

 setUpMockDependencies ()
 Some wiring up of dependencies to get all the examples running. More...
 

Static Protected Member Functions

static getEntriesFromCrawler ()
 

Protected Attributes

const MAY_NOT_HAVE_EXAMPLES
 
Container $dic
 
Crawler ExamplesYamlParser $example_parser
 

Static Protected Attributes

static string $path_to_base_factory = "components/ILIAS/UI/src/Factory.php"
 

Detailed Description

Class ExamplesTest Checks if all examples are implemented and properly returning strings.

Definition at line 32 of file ExamplesTest.php.

Member Function Documentation

◆ getEntriesFromCrawler()

static ExamplesTest::getEntriesFromCrawler ( )
staticprotected
Exceptions
Crawler

Definition at line 161 of file ExamplesTest.php.

Referenced by testAllNonAbstractComponentsShowcaseExamples().

161  : Crawler\Entry\ComponentEntries
162  {
163  $crawler = new Crawler\FactoriesCrawler();
164  return $crawler->crawlFactory(self::$path_to_base_factory);
165  }
+ Here is the caller graph for this function:

◆ getFullFunctionNamesAndPathExample()

static ExamplesTest::getFullFunctionNamesAndPathExample ( )
static

Definition at line 167 of file ExamplesTest.php.

167  : array
168  {
169  $function_names = [];
170  foreach (static::getEntriesFromCrawler() as $entry) {
171  foreach ($entry->getExamples() as $name => $example_path) {
172  $function_names[$entry->getExamplesNamespace() . "\\" . $name] = [
173  $entry->getExamplesNamespace() . "\\" . $name,
174  $example_path
175  ];
176  }
177  }
178  return $function_names;
179  }

◆ getListOfFullscreenExamples()

static ExamplesTest::getListOfFullscreenExamples ( )
static

Definition at line 197 of file ExamplesTest.php.

197  : array
198  {
199  return [
200  ['ILIAS\UI\examples\MainControls\Footer\base', "components/ILIAS/UI/src/examples/MainControls/Footer/base.php"],
201  ['ILIAS\UI\examples\MainControls\MetaBar\renderMetaBarInFullscreenMode', "components/ILIAS/UI/src/examples/MainControls/MetaBar/base_metabar.php"],
202  ['ILIAS\UI\examples\Layout\Page\Standard\getUIMainbarExampleCondensed', "components/ILIAS/UI/src/examples/Layout/Page/Standard/ui_mainbar.php"],
203  ['ILIAS\UI\examples\Layout\Page\Standard\getUIMainbarExampleFull', "components/ILIAS/UI/src/examples/Layout/Page/Standard/ui_mainbar.php"],
204  ['ILIAS\UI\examples\Layout\Page\Standard\ui', "components/ILIAS/UI/src/examples/Layout/Page/Standard/ui.php"],
205  ['ILIAS\UI\examples\MainControls\ModeInfo\renderModeInfoFullscreenMode', "components/ILIAS/UI/src/examples/MainControls/ModeInfo/modeinfo.php"]
206  ];
207  }

◆ setUp()

ExamplesTest::setUp ( )

Definition at line 47 of file ExamplesTest.php.

References $_SERVER, and setUpMockDependencies().

47  : void
48  {
49  //This avoids various index not set warnings, which are only relevant in test context.
50  $_SERVER["REQUEST_SCHEME"] = "http";
51  $_SERVER["SERVER_NAME"] = "localhost";
52  $_SERVER["SERVER_PORT"] = "80";
53  $_SERVER["REQUEST_URI"] = "";
54  $_SERVER['SCRIPT_NAME'] = "";
55  $_SERVER['QUERY_STRING'] = "param=1";
56 
57  //This avoids Undefined index: ilfilehash for the moment
58  $_POST["ilfilehash"] = "";
59  $this->setUpMockDependencies();
60  $this->example_parser = new Crawler\ExamplesYamlParser();
61  }
setUpMockDependencies()
Some wiring up of dependencies to get all the examples running.
$_SERVER['HTTP_HOST']
Definition: raiseError.php:26
+ Here is the call graph for this function:

◆ setUpMockDependencies()

ExamplesTest::setUpMockDependencies ( )
protected

Some wiring up of dependencies to get all the examples running.

If you examples needs additional dependencies, please add them here. However, please check carefully if those deps are really needed. Even if the examples, we try to keep them minimal. Note the most deps are wired up here as mocks only.

Definition at line 68 of file ExamplesTest.php.

References getLanguage(), and init().

Referenced by setUp().

68  : void
69  {
70  $this->dic = new Container();
71  $this->dic["tpl"] = $this->getTemplateFactory()->getTemplate("tpl.main.html", false, false);
72  $this->dic["lng"] = $this->getLanguage();
73  $this->dic["refinery"] = new \ILIAS\Refinery\Factory(
74  new ILIAS\Data\Factory(),
75  $this->getLanguage()
76  );
77 
78  (new InitUIFramework())->init($this->dic);
79 
80  $this->dic["ui.template_factory"] = $this->getTemplateFactory();
81 
82  $this->dic["ilCtrl"] = $this->getMockBuilder(\ilCtrl::class)->disableOriginalConstructor()->onlyMethods([
83  "getFormActionByClass","setParameterByClass","saveParameterByClass","getLinkTargetByClass", "isAsynch"
84  ])->getMock();
85  $this->dic["ilCtrl"]->method("getFormActionByClass")->willReturn("Testing");
86  $this->dic["ilCtrl"]->method("getLinkTargetByClass")->willReturn("2");
87  $this->dic["ilCtrl"]->method("isAsynch")->willReturn(false);
88 
89  $this->dic["upload"] = $this->getMockBuilder(FileUpload::class)->getMock();
90 
91  $this->dic["tree"] = $this->getMockBuilder(ilTree::class)
92  ->disableOriginalConstructor()
93  ->onlyMethods(["getNodeData"])->getMock();
94 
95  $this->dic["tree"]->method("getNodeData")->willReturn([
96  "ref_id" => "1",
97  "title" => "mock root node",
98  "type" => "crs"
99  ]);
100 
101  $component_factory = $this->createMock(ilComponentFactory::class);
102  $component_factory->method("getActivePluginsInSlot")->willReturn(new ArrayIterator());
103  $this->dic["component.factory"] = $component_factory;
104 
105  $this->dic["help.text_retriever"] = new ILIAS\UI\Help\TextRetriever\Echoing();
106 
107  (new InitHttpServices())->init($this->dic);
108  }
Interface Observer Contains several chained tasks and infos about them.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
This is more or less a copy of the removed InitUIFramework file inside the Init component.
getLanguage()
Responsible for loading the HTTP Service into the dependency injection container of ILIAS...
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ testAllExamplesHaveExpectedOutcomeInDocs()

ExamplesTest::testAllExamplesHaveExpectedOutcomeInDocs ( string  $example_function_name,
string  $example_path 
)

getFullFunctionNamesAndPathExample

Definition at line 152 of file ExamplesTest.php.

153  {
154  $docs = $this->example_parser->parseYamlStringArrayFromFile($example_path);
155  $this->assertArrayHasKey('expected output', $docs);
156  }

◆ testAllExamplesRenderAString()

ExamplesTest::testAllExamplesRenderAString ( string  $example_function_name,
string  $example_path 
)

getFullFunctionNamesAndPathExample

Definition at line 136 of file ExamplesTest.php.

References $DIC, $dic, and Vendor\Package\$e.

136  : void
137  {
138  global $DIC;
139  $DIC = $this->dic;
140 
141  include_once $example_path;
142  try {
143  $this->assertIsString($example_function_name(), " Example $example_function_name does not render a string");
144  } catch (NotImplementedException $e) {
145  $this->assertTrue(true);
146  }
147  }
This exception indicates that an UI component was accepted by the JF but is not backed by a real impl...
global $DIC
Definition: shib_login.php:22
Container $dic

◆ testAllNonAbstractComponentsShowcaseExamples()

ExamplesTest::testAllNonAbstractComponentsShowcaseExamples ( )
Exceptions
Crawler

Definition at line 113 of file ExamplesTest.php.

References $DIC, $dic, and getEntriesFromCrawler().

113  : void
114  {
115  global $DIC;
116  $DIC = $this->dic;
117 
118  foreach ($this->getEntriesFromCrawler() as $entry) {
119  if (in_array(trim($entry->getNamespace(), '\\'), self::MAY_NOT_HAVE_EXAMPLES, true)) {
120  continue;
121  }
122  if (!$entry->isAbstract()) {
123  $this->assertGreaterThan(
124  0,
125  count($entry->getExamples()),
126  "Non abstract Component " . $entry->getNamespace()
127  . " does not provide any example. Please provide at least one in " . $entry->getExamplesNamespace() . " at " . $entry->getExamplesPath()
128  );
129  }
130  }
131  }
static getEntriesFromCrawler()
global $DIC
Definition: shib_login.php:22
Container $dic
+ Here is the call graph for this function:

◆ testFullscreenModeExamples()

ExamplesTest::testFullscreenModeExamples ( string  $example_function_name,
string  $example_path 
)

getListOfFullscreenExamples

Definition at line 184 of file ExamplesTest.php.

References $DIC, $dic, and Vendor\Package\$e.

184  : void
185  {
186  global $DIC;
187  $DIC = $this->dic;
188 
189  include_once $example_path;
190  try {
191  $this->assertIsString($example_function_name($DIC), " Example $example_function_name does not render a string");
192  } catch (NotImplementedException $e) {
193  $this->assertTrue(true);
194  }
195  }
This exception indicates that an UI component was accepted by the JF but is not backed by a real impl...
global $DIC
Definition: shib_login.php:22
Container $dic

Field Documentation

◆ $dic

◆ $example_parser

Crawler ExamplesYamlParser ExamplesTest::$example_parser
protected

Definition at line 45 of file ExamplesTest.php.

◆ $path_to_base_factory

string ExamplesTest::$path_to_base_factory = "components/ILIAS/UI/src/Factory.php"
staticprotected

Definition at line 43 of file ExamplesTest.php.

◆ MAY_NOT_HAVE_EXAMPLES

const ExamplesTest::MAY_NOT_HAVE_EXAMPLES
protected
Initial value:
= [
\ILIAS\UI\Help\Topic::class,
\ILIAS\UI\Component\Progress\State\Bar\State::class,
]

Definition at line 38 of file ExamplesTest.php.


The documentation for this class was generated from the following file: