3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"../../../Base.php");
32 public function __construct(
string $label, array $children = [])
49 public function getChildren($record, $environment = null): array
51 return $record->getChildren();
59 return $factory->simple($record->getLabel());
73 public function tree(): C\Tree\Factory
75 return new I\Tree\Factory();
84 $n1 =
new DataNode(
'1', [$n11, $n12]);
90 $f = $this->getUIFactory();
91 $this->tree =
$f->tree()->expandable(
$label, $recursion)
97 $html = str_replace([
"\n",
"\r",
"\t"],
"", $html);
98 $html = preg_replace(
'# {2,}#',
" ", $html);
104 $r = $this->getDefaultRenderer();
105 $html = $r->render($this->tree);
107 $expected =
'<ul id="id_1" class="il-tree" role="tree" aria-label="label">' . $this->getInnerTreePart() .
'</ul>';
110 $this->brutallyTrimHTML($expected),
111 $this->brutallyTrimHTML($html)
117 $r = $this->getDefaultRenderer();
118 $html = $r->render($this->tree->withIsSubTree(
true));
120 $expected = $this->getInnerTreePart();
123 $this->brutallyTrimHTML($expected),
124 $this->brutallyTrimHTML($html)
130 return '<li id="" class="il-tree-node node-simple expandable" role="treeitem" aria-expanded="false"> 131 <span class="node-line"><span class="node-label">1</span></span> 134 <li id="" class="il-tree-node node-simple" role="treeitem"> 135 <span class="node-line"><span class="node-label">1.1</span></span> 137 <li id="" class="il-tree-node node-simple expandable" role="treeitem" aria-expanded="false"> 138 <span class="node-line"><span class="node-label">1.2</span></span> 141 <li id="" class="il-tree-node node-simple" role="treeitem"> 142 <span class="node-line"><span class="node-label">1.2.1</span></span> 148 <li id="" class="il-tree-node node-simple" role="treeitem"> 149 <span class="node-line"><span class="node-label">2</span></span>
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...
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...
Provides common functionality for UI tests.
brutallyTrimHTML(string $html)
getChildren($record, $environment=null)
__construct(string $label, array $children=[])
Tests for the Expandable Tree.
build(C\Tree\Node\Factory $factory, $record, $environment=null)