ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BylineNodeTest.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 testCreateBylineNode(): void
43  {
44  $node = $this->node_factory->bylined('My Label', 'This is my byline', $this->icon);
45  $this->assertEquals('My Label', $node->getLabel());
46  $this->assertEquals('This is my byline', $node->getByline());
47  $this->assertEquals($this->icon, $node->getIcon());
48  }
49 
50  public function testRendering(): void
51  {
52  $node = $this->node_factory->bylined('My Label', 'This is my byline');
53 
54  $r = $this->getDefaultRenderer();
55  $html = $r->render($node);
56 
57  $expected = <<<EOT
58  <li class="c-tree__node c-tree__node--simple" role="treeitem">
59  <span class="c-tree__node__line">
60  <span class="c-tree__node__label">My Label</span>
61  <span class="c-tree__node__byline">This is my byline</span>
62  </span>
63  </li>
64 EOT;
65 
66  $this->assertEquals(
67  $this->brutallyTrimHTML($expected),
68  $this->brutallyTrimHTML($html)
69  );
70  }
71 
72  public function testRenderingWithIcon(): void
73  {
74  $node = $this->node_factory->bylined('My Label', 'This is my byline', $this->icon);
75 
76  $r = $this->getDefaultRenderer();
77  $html = $r->render($node);
78 
79  $expected = <<<EOT
80  <li class="c-tree__node c-tree__node--simple" role="treeitem">
81  <span class="c-tree__node__line">
82  <span class="c-tree__node__label">
83  <img class="icon small" src="./assets/images/standard/icon_default.svg" alt=""/>
84  My Label
85  </span>
86  <span class="c-tree__node__byline">This is my byline</span>
87  </span>
88  </li>
89 EOT;
90 
91  $this->assertEquals(
92  $this->brutallyTrimHTML($expected),
93  $this->brutallyTrimHTML($html)
94  );
95  }
96 
97  public function testRenderingWithAsync(): void
98  {
99  $node = $this->node_factory->bylined('My Label', 'This is my byline');
100  $node = $node->withAsyncURL('something.de');
101 
102  $r = $this->getDefaultRenderer();
103  $html = $r->render($node);
104 
105  $expected = <<<EOT
106  <li class="c-tree__node c-tree__node--simple expandable"
107  role="treeitem" aria-expanded="false"
108  data-async_url="something.de" data-async_loaded="false">
109  <span class="c-tree__node__line">
110  <span class="c-tree__node__label">My Label</span>
111  <span class="c-tree__node__byline">This is my byline</span>
112  </span>
113  <ul role="group"></ul>
114  </li>
115 EOT;
116 
117  $this->assertEquals(
118  $this->brutallyTrimHTML($expected),
119  $this->brutallyTrimHTML($html)
120  );
121  }
122 
123  public function testRenderingExpanded(): void
124  {
125  $node = $this->node_factory->bylined('My Label', 'This is my byline');
126  $node = $node->withAsyncURL('something.de')->withExpanded(true);
127 
128  $r = $this->getDefaultRenderer();
129  $html = $r->render($node);
130 
131  $expected = <<<EOT
132  <li class="c-tree__node c-tree__node--simple expandable"
133  role="treeitem" aria-expanded="true"
134  data-async_url="something.de" data-async_loaded="false">
135  <span class="c-tree__node__line">
136  <span class="c-tree__node__label">My Label</span>
137  <span class="c-tree__node__byline">This is my byline</span>
138  </span>
139  <ul role="group"></ul>
140  </li>
141 EOT;
142 
143  $this->assertEquals(
144  $this->brutallyTrimHTML($expected),
145  $this->brutallyTrimHTML($html)
146  );
147  }
148 }
I Tree Node Factory $node_factory
C Symbol Icon Standard $icon
Tests for the SimpleNode.
$r