19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"../../../../Base.php");
33 private C\Symbol\Icon\Standard
$icon;
37 $this->node_factory =
new I\Tree\Node\Factory();
38 $icon_factory =
new I\Symbol\Icon\Factory();
39 $this->icon = $icon_factory->standard(
"",
'');
44 $html = str_replace([
"\n",
"\r",
"\t"],
"", $html);
45 $html = preg_replace(
'# {2,}#',
" ", $html);
51 $node = $this->node_factory->simple(
'simple');
52 $this->assertInstanceOf(
53 "ILIAS\\UI\\Component\\Tree\\Node\\Simple",
61 $this->expectException(ArgumentCountError::class);
62 $this->node_factory->simple();
67 $node = $this->node_factory->simple(
'label', $this->icon);
68 $this->assertInstanceOf(
69 "ILIAS\\UI\\Component\\Tree\\Node\\Simple",
76 $this->icon->setLabel(
'Different Icon Label');
77 $node = $this->node_factory->simple(
'label', $this->icon);
78 $this->assertInstanceOf(
79 "ILIAS\\UI\\Component\\Tree\\Node\\Simple",
90 $this->assertNotEquals($this->icon->getLabel(), $node->getLabel());
98 $this->assertEquals(
"label", $node->getLabel());
106 $this->assertEquals($this->icon, $node->getIcon());
115 $this->assertFalse($node->getAsyncLoading());
123 $url =
'something.de';
124 $node = $node->withAsyncURL(
$url);
125 $this->assertTrue($node->getAsyncLoading());
126 $this->assertEquals(
$url, $node->getAsyncURL());
135 $r = $this->getDefaultRenderer();
136 $html =
$r->render($node);
139 <li
class=
"c-tree__node c-tree__node--simple" role=
"treeitem">
140 <span
class=
"c-tree__node__line">
141 <span
class=
"c-tree__node__label">
simple</span>
157 $r = $this->getDefaultRenderer();
158 $html =
$r->render($node);
161 <li
class=
"c-tree__node c-tree__node--simple expandable" 162 role=
"treeitem" aria-expanded=
"false" 163 data-async_url=
"something.de" data-async_loaded=
"false">
164 <span
class=
"c-tree__node__line">
165 <span
class=
"c-tree__node__label">
simple</span>
167 <ul role=
"group"></ul>
182 $r = $this->getDefaultRenderer();
183 $html =
$r->render($node);
186 <li
class=
"c-tree__node c-tree__node--simple" role=
"treeitem">
187 <span
class=
"c-tree__node__line">
188 <span
class=
"c-tree__node__label">
189 <img
class=
"icon small" src=
"./assets/images/standard/icon_default.svg" alt=
""/>
210 $r = $this->getDefaultRenderer();
211 $html =
$r->render($node);
214 <li
class=
"c-tree__node c-tree__node--simple" role=
"treeitem">
215 <span
class=
"c-tree__node__line">
216 <span
class=
"c-tree__node__label">
217 <img
class=
"icon small" src=
"./assets/images/standard/icon_default.svg" alt=
"Different Icon Label"/>
testRendering(C\Tree\Node\Simple $node)
testConstruction
testGetLabel(C\Tree\Node\Simple $node)
testConstructionWithIcon
simple()
description: > This example show how the UI-Elements itself looks like.
testConstructionWithIcon()
testConstructionWithIconAndDifferentLabels()
Tests for the SimpleNode.
I Tree Node Factory $node_factory
testGetDifferentLabels(C\Tree\Node\Simple $node)
testConstructionWithIconAndDifferentLabels
C Symbol Icon Standard $icon
testRenderingWithAsync(C\Tree\Node\Simple $node)
testWithAsyncURL
testWithAsyncURL(C\Tree\Node\Simple $node)
testConstruction
testGetIcon(C\Tree\Node\Simple $node)
testConstructionWithIcon
testDefaultAsyncLoading(C\Tree\Node\Simple $node)
testConstruction
brutallyTrimHTML(string $html)
testRenderingWithIcon(C\Tree\Node\Simple $node)
testConstructionWithIcon
testRenderingWithIconAndAltAttribute(C\Tree\Node\Simple $node)
This test is successfull if the icon label differs from the node label.