19 declare(strict_types=1);
21 require_once(
'libs/composer/vendor/autoload.php');
22 include_once(
'./tests/UI/UITestHelper.php');
40 protected function setUp(): void
44 $this->entries_data = include
'./tests/UI/Crawler/Fixture/EntriesFixture.php';
45 $this->entries =
new Entries();
46 $this->entries->addEntriesFromArray($this->entries_data);
47 $this->test_uri =
new URI(
'http://ilias.de');
53 $this->assertInstanceOf(
'KSDocumentationTreeRecursion', $this->tree_recursion);
59 [$this->entries->getEntryById(
'Entry2')],
60 $this->tree_recursion->getChildren($this->entries->getEntryById(
'Entry1'))
62 $this->assertEquals([], $this->tree_recursion->getChildren($this->entries->getEntryById(
'Entry2')));
67 $tree_factory = $this->ui_helper->factory()->tree()->node();
68 $built_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry1'));
69 $this->assertInstanceOf(
'ILIAS\UI\Implementation\Component\Tree\Node\Simple', $built_node);
74 $tree_factory = $this->ui_helper->factory()->tree()->node();
75 $built_root_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry1'));
76 $built_child_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry2'));
78 $this->assertEquals(
true, $built_root_node->isExpanded());
79 $this->assertEquals(
false, $built_child_node->isExpanded());
86 $tree_factory = $this->ui_helper->factory()->tree()->node();
87 $built_root_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry1'));
88 $built_child_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry2'));
90 $this->assertEquals(
false, $built_root_node->isHighlighted());
91 $this->assertEquals(
true, $built_child_node->isHighlighted());
98 $tree_factory = $this->ui_helper->factory()->tree()->node();
99 $built_root_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry1'));
100 $built_child_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry2'));
102 $this->assertEquals(
true, $built_root_node->isExpanded());
103 $this->assertEquals(
false, $built_child_node->isExpanded());
110 $tree_factory = $this->ui_helper->factory()->tree()->node();
111 $built_root_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry1'));
112 $built_child_node = $this->tree_recursion->build($tree_factory, $this->entries->getEntryById(
'Entry2'));
114 $this->assertEquals(
false, $built_root_node->isHighlighted());
115 $this->assertEquals(
true, $built_child_node->isHighlighted());
Tree Recursion, putting Entries into a Tree.
Container storing a list of UI Component Entries, can act as Iterator, countable and is serializable...
testIsNodeExpandedByDefault()
KSDocumentationTreeRecursion $tree_recursion
Stores Information of UI Components parsed from YAML, examples and less files.
The scope of this class is split ilias-conform URI's into components.
testIsNodeHighlightedAfterActivatingEntry()
testIsNodeHighlightedByDefault()
Class UITestHelper can be helpful for test cases outside the UI Components, to inject a working facto...
testIsNodeExpandedAfterActivatingEntry2()