ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
PanelSecondaryListingTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../Base.php");
23 
24 use ILIAS\UI\Component as C;
27 
32 {
33  public function getUIFactory(): NoUIFactory
34  {
35  return new class () extends NoUIFactory {
36  public function panelSecondary(): I\Component\Panel\Secondary\Factory
37  {
38  return new I\Component\Panel\Secondary\Factory();
39  }
40 
41  public function dropdown(): I\Component\Dropdown\Factory
42  {
43  return new I\Component\Dropdown\Factory();
44  }
45 
46  public function viewControl(): I\Component\ViewControl\Factory
47  {
48  return new I\Component\ViewControl\Factory(new SignalGenerator());
49  }
50 
51  public function button(): I\Component\Button\Factory
52  {
53  return new I\Component\Button\Factory();
54  }
55 
56  public function symbol(): I\Component\Symbol\Factory
57  {
58  return new I\Component\Symbol\Factory(
59  new I\Component\Symbol\Icon\Factory(),
60  new I\Component\Symbol\Glyph\Factory(),
61  new I\Component\Symbol\Avatar\Factory()
62  );
63  }
64  };
65  }
66 
67  protected function cleanHTML(string $html): string
68  {
69  $html = str_replace(["\n", "\t"], "", $html);
70 
71  return trim($html);
72  }
73 
74  public function testImplementsFactoryInterface(): void
75  {
76  $secondary_panel = $this->getUIFactory()->panelSecondary()->listing("List Title", array(
77 
78  new I\Component\Item\Group("Subtitle 1", array(
79  new I\Component\Item\Standard("title1"),
80  new I\Component\Item\Standard("title2")
81  )),
82  new I\Component\Item\Group("Subtitle 2", array(
83  new I\Component\Item\Standard("title3")
84  ))
85  ));
86 
87  $this->assertInstanceOf("ILIAS\\UI\\Component\\Panel\\Secondary\\Listing", $secondary_panel);
88  }
89 
90  public function testGetTitle(): void
91  {
92  $groups = array(
93  new I\Component\Item\Group("Subtitle 1", array(
94  new I\Component\Item\Standard("title1"),
95  new I\Component\Item\Standard("title2")
96  )),
97  new I\Component\Item\Group("Subtitle 2", array(
98  new I\Component\Item\Standard("title3")
99  ))
100  );
101 
102  $c = $this->getUIFactory()->panelSecondary()->listing("title", $groups);
103 
104  $this->assertEquals("title", $c->getTitle());
105  }
106 
107  public function testGetItemGroups(): void
108  {
109  $groups = array(
110  new I\Component\Item\Group("Subtitle 1", array(
111  new I\Component\Item\Standard("title1"),
112  new I\Component\Item\Standard("title2")
113  )),
114  new I\Component\Item\Group("Subtitle 2", array(
115  new I\Component\Item\Standard("title3")
116  ))
117  );
118 
119  $c = $this->getUIFactory()->panelSecondary()->listing("title", $groups);
120 
121  $this->assertEquals($c->getItemGroups(), $groups);
122  }
123 
124  public function testWithActions(): void
125  {
126  $actions = new I\Component\Dropdown\Standard(array(
127  new I\Component\Button\Shy("ILIAS", "https://www.ilias.de"),
128  new I\Component\Button\Shy("GitHub", "https://www.github.com")
129  ));
130 
131  $groups = array();
132 
133  $c = $this->getUIFactory()->panelSecondary()->listing("title", $groups)
134  ->withActions($actions);
135 
136  $this->assertEquals($c->getActions(), $actions);
137  }
138 
139  //RENDER
140 
141  public function testRenderWithActions(): void
142  {
143  $actions = $this->getUIFactory()->dropdown()->standard(array(
144  $this->getUIFactory()->button()->shy("ILIAS", "https://www.ilias.de"),
145  $this->getUIFactory()->button()->shy("Github", "https://www.github.com")
146  ));
147 
148  $sec = $this->getUIFactory()->panelSecondary()->listing("Title", array())->withActions($actions);
149 
150  $html = $this->getDefaultRenderer()->render($sec);
151 
152  $expected_html = <<<EOT
153 <div class="panel panel-secondary panel-flex">
154  <div class="panel-heading ilHeader">
155  <div class="panel-title"><h2>Title</h2></div>
156  <div class="panel-controls">
157  <div class="dropdown" id="id_3"><button class="btn btn-default dropdown-toggle" type="button" aria-label="actions" aria-haspopup="true" aria-expanded="false" aria-controls="id_3_menu"><span class="caret"></span></button>
158  <ul id="id_3_menu" class="dropdown-menu">
159  <li><button class="btn btn-link" data-action="https://www.ilias.de" id="id_1">ILIAS</button></li>
160  <li><button class="btn btn-link" data-action="https://www.github.com" id="id_2">Github</button></li>
161  </ul>
162  </div>
163  </div>
164  </div>
165  <div class="panel-body">
166  </div>
167 </div>
168 EOT;
169  $this->assertEquals(
170  $this->brutallyTrimHTML($expected_html),
171  $this->brutallyTrimHTML($html)
172  );
173  }
174 
175  public function testRenderWithSortation(): void
176  {
177  $sort_options = array(
178  'a' => 'A',
179  'b' => 'B'
180  );
181  $sortation = $this->getUIFactory()->viewControl()->sortation($sort_options, 'a');
182  $sec = $this->getUIFactory()->panelSecondary()->listing("Title", array())
183  ->withViewControls([$sortation]);
184 
185  $html = $this->getDefaultRenderer()->render($sec);
186 
187  $expected_html = <<<EOT
188 <div class="panel panel-secondary panel-flex">
189  <div class="panel-heading ilHeader">
190  <div class="panel-title"><h2>Title</h2></div>
191  <div class="panel-viewcontrols l-bar__space-keeper">
192  <div class="dropdown il-viewcontrol il-viewcontrol-sortation l-bar__element" id="id_1">
193  <button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-label="sortation" aria-haspopup="true" aria-expanded="false" aria-controls="id_1_ctrl">
194  <span class="label">vc_sort A</span>
195  <span class="glyphicon-sort"></span>
196  </button>
197  <ul id="id_1_ctrl" class="dropdown-menu">
198  <li class="selected"><button class="btn btn-link" data-action="?sortation=a" id="id_2">A</button></li>
199  <li><button class="btn btn-link" data-action="?sortation=b" id="id_3">B</button></li>
200  </ul>
201  </div>
202  </div>
203  <div class="panel-controls"></div>
204  </div>
205  <div class="panel-body">
206  </div>
207 </div>
208 EOT;
209  $this->assertEquals(
210  $this->brutallyTrimHTML($expected_html),
211  $this->brutallyTrimHTML($html)
212  );
213  }
214 
215  public function testRenderWithPagination(): void
216  {
217  $pagination = $this->getUIFactory()->viewControl()->pagination()
218  ->withTargetURL('http://ilias.de', 'page')
219  ->withTotalEntries(10)
220  ->withPageSize(2)
221  ->withCurrentPage(1);
222 
223  $sec = $this->getUIFactory()->panelSecondary()->listing("Title", array())
224  ->withViewControls([$pagination]);
225 
226  $html = $this->getDefaultRenderer()->render($sec);
227 
228  $expected_html = <<<EOT
229 <div class="panel panel-secondary panel-flex">
230  <div class="panel-heading ilHeader">
231  <div class="panel-title"><h2>Title</h2></div>
232  <div class="panel-viewcontrols l-bar__space-keeper">
233  <div class="il-viewcontrol-pagination l-bar__element">
234  <span class="btn btn-ctrl browse previous">
235  <a tabindex="0" class="glyph" href="http://ilias.de?page=0" aria-label="back">
236  <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
237  </a>
238  </span>
239  <button class="btn btn-link" data-action="http://ilias.de?page=0" id="id_1">1</button>
240  <button class="btn btn-link engaged" aria-pressed="true" data-action="http://ilias.de?page=1" id="id_2">2</button>
241  <button class="btn btn-link" data-action="http://ilias.de?page=2" id="id_3">3</button>
242  <button class="btn btn-link" data-action="http://ilias.de?page=3" id="id_4">4</button>
243  <button class="btn btn-link" data-action="http://ilias.de?page=4" id="id_5">5</button>
244  <span class="btn btn-ctrl browse next">
245  <a tabindex="0" class="glyph" href="http://ilias.de?page=2" aria-label="next">
246  <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
247  </a>
248  </span>
249  </div>
250  </div>
251  <div class="panel-controls"></div>
252  </div>
253  <div class="panel-body">
254  </div>
255 </div>
256 EOT;
257  $this->assertEquals(
258  $this->brutallyTrimHTML($expected_html),
259  $this->brutallyTrimHTML($html)
260  );
261  }
262 
263  public function testRenderWithSection(): void
264  {
265  $back = $this->getUIFactory()->button()->standard("previous", "http://www.ilias.de");
266  $next = $this->getUIFactory()->button()->standard("next", "http://www.github.com");
267  $current = $this->getUIFactory()->button()->standard("current", "");
268  $section = $this->getUIFactory()->viewControl()->section($back, $current, $next);
269 
270  $secondary_panel = $this->getUIFactory()->panelSecondary()->listing("Title", array())
271  ->withViewControls([$section]);
272 
273  $html = $this->getDefaultRenderer()->render($secondary_panel);
274 
275  $expected_html = <<<EOT
276 <div class="panel panel-secondary panel-flex">
277  <div class="panel-heading ilHeader">
278  <div class="panel-title"><h2>Title</h2></div>
279  <div class="panel-viewcontrols l-bar__space-keeper">
280  <div class="il-viewcontrol-section l-bar__element">
281  <a class="btn btn-ctrl browse previous" href="http://www.ilias.de" aria-label="previous" data-action="http://www.ilias.de" id="id_1">
282  <span class="glyphicon glyphicon-chevron-left"></span>
283  </a>
284  <button class="btn btn-default" data-action="">current</button>
285  <a class="btn btn-ctrl browse next" href="http://www.github.com" aria-label="next" data-action="http://www.github.com" id="id_2">
286  <span class="glyphicon glyphicon-chevron-right"></span>
287  </a>
288  </div>
289  </div>
290  <div class="panel-controls"></div>
291  </div>
292  <div class="panel-body">
293  </div>
294 </div>
295 EOT;
296  $this->assertEquals(
297  $this->brutallyTrimHTML($expected_html),
298  $this->brutallyTrimHTML($html)
299  );
300  }
301  public function testRenderWithFooter(): void
302  {
303  $footer_shy_button = $this->getUIFactory()->button()->shy("Action", "");
304  $secondary_panel = $this->getUIFactory()->panelSecondary()->listing("", array())->withFooter($footer_shy_button);
305 
306  $html = $this->getDefaultRenderer()->render($secondary_panel);
307 
308  $expected_html = <<<EOT
309 <div class="panel panel-secondary panel-flex">\n
310 <div class="panel-body"></div>\n
311 <div class="panel-footer ilBlockInfo"><button class="btn btn-link" data-action="">Action</button></div>\n
312 </div>\n
313 
314 EOT;
315  $this->assertHTMLEquals(
316  $this->brutallyTrimHTML($expected_html),
317  $this->brutallyTrimHTML($html)
318  );
319  }
320 
321  public function testRenderWithNoHeaderButContent(): void
322  {
323  $group = new I\Component\Item\Group(
324  "Subtitle 1",
325  array(
326  new I\Component\Item\Standard("title1"),
327  new I\Component\Item\Standard("title2"))
328  );
329 
330  $secondary_panel = $this->getUIFactory()->panelSecondary()->listing("", array($group));
331 
332  $html = $this->getDefaultRenderer()->render($secondary_panel);
333 
334  $expected_html = <<<EOT
335 <div class="panel panel-secondary panel-flex">
336  <div class="panel-body">
337  <div class="il-item-group">
338  <h3>Subtitle 1</h3>
339  <div class="il-item-group-items">
340  <ul>
341  <li class="il-std-item-container">
342  <div class="il-item il-std-item ">
343  <h4 class="il-item-title">title1</h4>
344  </div>
345  </li>
346  <li class="il-std-item-container">
347  <div class="il-item il-std-item ">
348  <h4 class="il-item-title">title2</h4>
349  </div>
350  </li>
351  </ul>
352  </div>
353  </div>
354  </div>
355 </div>
356 EOT;
357  $this->assertHTMLEquals(
358  $this->brutallyTrimHTML($expected_html),
359  $this->brutallyTrimHTML($html)
360  );
361  }
362 
364  {
365  $secondary_panel = $this->getUIFactory()->panelSecondary()->listing("", array());
366 
367  $html = $this->getDefaultRenderer()->render($secondary_panel);
368 
369  $this->assertEquals("", $html);
370  }
371 }
button(string $caption, string $cmd)
Interface Observer Contains several chained tasks and infos about them.
Title class.
Definition: Title.php:41
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Bulky.php:21
$c
Definition: deliver.php:25
Test secondary listing panels.