ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SimpleNodeTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once("vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ . "../../../../Base.php");
23 
24 use ILIAS\UI\Component as C;
26 
31 {
32  private I\Tree\Node\Factory $node_factory;
33  private C\Symbol\Icon\Standard $icon;
34 
35  public function setUp(): void
36  {
37  $this->node_factory = new I\Tree\Node\Factory();
38  $icon_factory = new I\Symbol\Icon\Factory();
39  $this->icon = $icon_factory->standard("", '');
40  }
41 
42  public function brutallyTrimHTML(string $html): string
43  {
44  $html = str_replace(["\n", "\r", "\t"], "", $html);
45  $html = preg_replace('# {2,}#', " ", $html);
46  return trim($html);
47  }
48 
49  public function testConstruction(): C\Tree\Node\Simple
50  {
51  $node = $this->node_factory->simple('simple');
52  $this->assertInstanceOf(
53  "ILIAS\\UI\\Component\\Tree\\Node\\Simple",
54  $node
55  );
56  return $node;
57  }
58 
59  public function testWrongConstruction(): void
60  {
61  $this->expectException(ArgumentCountError::class);
62  $this->node_factory->simple();
63  }
64 
65  public function testConstructionWithIcon(): C\Tree\Node\Simple
66  {
67  $node = $this->node_factory->simple('label', $this->icon);
68  $this->assertInstanceOf(
69  "ILIAS\\UI\\Component\\Tree\\Node\\Simple",
70  $node
71  );
72  return $node;
73  }
74  public function testConstructionWithIconAndDifferentLabels(): C\Tree\Node\Simple
75  {
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",
80  $node
81  );
82  return $node;
83  }
84 
88  public function testGetDifferentLabels(C\Tree\Node\Simple $node): void
89  {
90  $this->assertNotEquals($this->icon->getLabel(), $node->getLabel());
91  }
92 
96  public function testGetLabel(C\Tree\Node\Simple $node): void
97  {
98  $this->assertEquals("label", $node->getLabel());
99  }
100 
104  public function testGetIcon(C\Tree\Node\Simple $node): C\Tree\Node\Simple
105  {
106  $this->assertEquals($this->icon, $node->getIcon());
107  return $node;
108  }
109 
113  public function testDefaultAsyncLoading(C\Tree\Node\Simple $node): void
114  {
115  $this->assertFalse($node->getAsyncLoading());
116  }
117 
121  public function testWithAsyncURL(C\Tree\Node\Simple $node): C\Tree\Node\Simple
122  {
123  $url = 'something.de';
124  $node = $node->withAsyncURL($url);
125  $this->assertTrue($node->getAsyncLoading());
126  $this->assertEquals($url, $node->getAsyncURL());
127  return $node;
128  }
129 
133  public function testRendering(C\Tree\Node\Simple $node): void
134  {
135  $r = $this->getDefaultRenderer();
136  $html = $r->render($node);
137 
138  $expected = <<<EOT
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>
142  </span>
143  </li>
144 EOT;
145 
146  $this->assertEquals(
147  $this->brutallyTrimHTML($expected),
148  $this->brutallyTrimHTML($html)
149  );
150  }
151 
155  public function testRenderingWithAsync(C\Tree\Node\Simple $node): void
156  {
157  $r = $this->getDefaultRenderer();
158  $html = $r->render($node);
159 
160  $expected = <<<EOT
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>
166  </span>
167  <ul role="group"></ul>
168  </li>
169 EOT;
170 
171  $this->assertEquals(
172  $this->brutallyTrimHTML($expected),
173  $this->brutallyTrimHTML($html)
174  );
175  }
176 
180  public function testRenderingWithIcon(C\Tree\Node\Simple $node): void
181  {
182  $r = $this->getDefaultRenderer();
183  $html = $r->render($node);
184 
185  $expected = <<<EOT
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=""/>
190  label
191  </span>
192  </span>
193  </li>
194 EOT;
195 
196  $this->assertEquals(
197  $this->brutallyTrimHTML($expected),
198  $this->brutallyTrimHTML($html)
199  );
200  }
208  public function testRenderingWithIconAndAltAttribute(C\Tree\Node\Simple $node): void
209  {
210  $r = $this->getDefaultRenderer();
211  $html = $r->render($node);
212 
213  $expected = <<<EOT
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"/>
218  label
219  </span>
220  </span>
221  </li>
222 EOT;
223 
224  $this->assertEquals(
225  $this->brutallyTrimHTML($expected),
226  $this->brutallyTrimHTML($html)
227  );
228  }
229 }
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.
Definition: simple.php:37
testConstructionWithIconAndDifferentLabels()
Tests for the SimpleNode.
I Tree Node Factory $node_factory
testGetDifferentLabels(C\Tree\Node\Simple $node)
testConstructionWithIconAndDifferentLabels
$url
Definition: shib_logout.php:66
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.
$r