19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
31 "ILIAS" =>
"http://www.ilias.de",
32 "Github" =>
"http://www.github.com" 36 protected string $role =
"group";
48 $back =
new I\Component\Button\Standard(
"",
"http://www.ilias.de");
49 $next =
new I\Component\Button\Standard(
"",
"http://www.github.com");
50 $button =
new I\Component\Button\Standard(
"Today",
"");
52 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Button", $back);
53 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Button", $next);
54 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Button", $button);
55 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\ViewControl\\Factory", $view_control_f);
57 $section = $view_control_f->section($back, $button, $next);
58 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\ViewControl\\Section", $section);
65 $back = $button_f->standard(
"",
"http://www.ilias.de");
66 $next = $button_f->standard(
"",
"http://www.github.com");
67 $button = $button_f->standard(
"Today",
"");
71 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Button", $action);
78 $back = $button_f->standard(
"",
"http://www.ilias.de");
79 $next = $button_f->standard(
"",
"http://www.github.com");
80 $button = $button_f->standard(
"Today",
"");
84 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Button", $action);
92 $r = $this->getDefaultRenderer();
94 $back = $button_f->standard(
"",
"http://www.ilias.de");
95 $next = $button_f->standard(
"",
"http://www.github.com");
96 $button = $button_f->standard(
"Today",
"");
98 $section = $view_control_f->section($back, $button, $next);
100 $html =
$r->render($section);
101 $this->assertStringContainsString(
"glyphicon-chevron-left", $html);
102 $this->assertStringContainsString(
"glyphicon-chevron-right", $html);
103 $this->assertStringContainsString(
"il-viewcontrol-section", $html);
104 $this->assertStringContainsString(
"btn", $html);
107 $this->assertEquals($this->brutallyTrimHTML($expected), $this->brutallyTrimHTML($html));
110 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\ViewControl\\Factory",
$f);
117 $this->assertEquals($this->active,
$f->mode($this->actions, $this->aria_label)->withActive($this->active)->getActive());
118 $this->assertNotEquals($this->active,
$f->mode($this->actions, $this->aria_label)->withActive(
"Dummy text")->getActive());
125 $this->assertIsArray(
$f->mode($this->actions, $this->aria_label)->getLabelledActions());
131 $r = $this->getDefaultRenderer();
132 $mode =
$f->mode($this->actions, $this->aria_label);
134 $html = $this->normalizeHTML(
$r->render($mode));
136 $activate_first_item =
false;
137 $active = $mode->getActive();
139 $activate_first_item =
true;
142 $expected =
"<div class=\"il-viewcontrol-mode l-bar__element\" aria-label=\"" . $this->aria_label .
"\" role=\"" . $this->role .
"\">";
143 foreach ($this->actions as $label => $action) {
144 if ($activate_first_item) {
145 $expected .=
"<button class=\"btn btn-default engaged\" aria-pressed=\"true\" data-action=\"$action\" id=\"id_1\">$label</button>";
146 $activate_first_item =
false;
147 } elseif ($active == $label) {
148 $expected .=
"<button class=\"btn btn-default engaged\" aria-pressed=\"true\" data-action=\"$action\" id=\"id_1\">$label</button>";
150 $expected .=
"<button class=\"btn btn-default\" aria-pressed=\"false\" data-action=\"$action\" id=\"id_2\">$label</button>";
153 $expected .=
"</div>";
155 $this->assertEquals($this->brutallyTrimHTML($expected), $this->brutallyTrimHTML($html));
161 public function counter(): I\Component\Counter\Factory
163 return new I\Component\Counter\Factory();
165 public function button(): I\Component\Button\Factory
167 return new I\Component\Button\Factory();
175 <div
class=
"il-viewcontrol-section l-bar__element">
176 <a
class=
"btn btn-ctrl browse previous" href=
"http://www.ilias.de" aria-label=
"previous" data-action=
"http://www.ilias.de" id=
"id_1"><span
class=
"glyphicon glyphicon-chevron-left"></span></a>
177 <
button class=
"btn btn-default" data-action=
"">Today</button>
178 <a
class=
"btn btn-ctrl browse next" href=
"http://www.github.com" aria-label=
"next" data-action=
"http://www.github.com" id=
"id_2"><span
class=
"glyphicon glyphicon-chevron-right"></span></a>
testRenderViewControlSection()
button(string $caption, string $cmd)
testViewControlSectionGetNextActions()
testViewControlModeRender()
testImplementsFactoryInterface()
testViewControlWithActive()
testViewControlSectionGetPreviousActions()
testViewControlGetActions()