3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
41 "standard" =>
"btn btn-default",
42 "primary" =>
"btn btn-default btn-primary",
43 "shy" =>
"btn btn-link",
44 "tag" =>
"btn btn-tag btn-tag-relevance-veryhigh" 51 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\Button\\Factory",
$f);
52 $this->assertInstanceOf(
53 "ILIAS\\UI\\Component\\Button\\Standard",
54 $f->standard(
"label",
"http://www.ilias.de")
56 $this->assertInstanceOf(
57 "ILIAS\\UI\\Component\\Button\\Primary",
58 $f->primary(
"label",
"http://www.ilias.de")
60 $this->assertInstanceOf(
61 "ILIAS\\UI\\Component\\Button\\Close",
64 $this->assertInstanceOf(
65 "ILIAS\\UI\\Component\\Button\\Shy",
66 $f->shy(
"label",
"http://www.ilias.de")
75 $this->expectException(TypeError::class);
77 $f->$factory_method($this,
"http://www.ilias.de");
85 $this->expectException(InvalidArgumentException::class);
87 $f->$factory_method(
"label", $this);
96 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
98 $this->assertEquals(
"label",
$b->getLabel());
107 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
109 $b2 =
$b->withLabel(
"label2");
111 $this->assertEquals(
"label",
$b->getLabel());
112 $this->assertEquals(
"label2", $b2->getLabel());
121 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
123 $this->assertEquals(
"http://www.ilias.de",
$b->getAction());
132 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
134 $this->assertTrue(
$b->isActive());
143 $b =
$f->$factory_method(
"label",
"http://www.ilias.de")
144 ->withUnavailableAction();
146 $this->assertFalse(
$b->isActive());
147 $this->assertEquals(
"http://www.ilias.de",
$b->getAction());
156 foreach ([
"standard",
"primary"] as $method) {
157 $b =
$f->$method(
"label",
"http://www.ilias.de");
159 $this->assertFalse(
$b->hasLoadingAnimationOnClick());
161 $b = $b->withLoadingAnimationOnClick(
true);
163 $this->assertTrue($b->hasLoadingAnimationOnClick());
172 $ln =
"http://www.ilias.de";
174 $b =
$f->$factory_method(
"label", $ln);
179 $css_classes = self::$canonical_css_classes[$factory_method];
180 $expected =
"<button class=\"$css_classes\" data-action=\"$ln\" id=\"id_1\">" .
191 $ln =
"http://www.ilias.de";
193 $b =
$f->$factory_method(
"label", $ln)
194 ->withUnavailableAction();
199 $css_classes = self::$canonical_css_classes[$factory_method];
200 $expected =
"<button class=\"$css_classes\" data-action=\"$ln\" disabled=\"disabled\">" .
214 $expected =
"<button type=\"button\" class=\"close\" aria-label=\"close\">" .
215 " <span aria-hidden=\"true\">×</span>" .
217 $this->assertEquals($expected, $html);
228 $expected =
"<button type=\"button\" class=\"minimize\" aria-label=\"minimize\">" .
229 " <span aria-hidden=\"true\">−</span>" .
231 $this->assertEquals($expected, $html);
239 $ln =
"http://www.ilias.de";
243 $b =
$f->$factory_method(
"label", $ln)
244 ->withOnLoadCode(
function (
$id) use (&$ids):
string {
251 $this->assertCount(1, $ids);
254 $css_classes = self::$canonical_css_classes[$factory_method];
255 $expected =
"<button class=\"$css_classes\" data-action=\"$ln\" id=\"$id\">" .
267 ->withOnLoadCode(
function (
$id) use (&$ids):
string {
274 $this->assertCount(1, $ids);
277 $expected =
"<button type=\"button\" class=\"close\" aria-label=\"close\" id=\"$id\">" .
278 " <span aria-hidden=\"true\">×</span>" .
280 $this->assertEquals($expected, $html);
286 $b =
$f->tag(
'tag',
'#');
288 $this->expectException(TypeError::class);
289 $b->withRelevance(0);
291 $this->expectException(TypeError::class);
292 $b->withRelevance(
'notsoimportant');
297 $expectations = array(
298 '<button class="btn btn-tag btn-tag-relevance-verylow" data-action="#" id="id_1">tag</button>',
299 '<button class="btn btn-tag btn-tag-relevance-low" data-action="#" id="id_2">tag</button>',
300 '<button class="btn btn-tag btn-tag-relevance-middle" data-action="#" id="id_3">tag</button>',
301 '<button class="btn btn-tag btn-tag-relevance-high" data-action="#" id="id_4">tag</button>',
302 '<button class="btn btn-tag btn-tag-relevance-veryhigh" data-action="#" id="id_5">tag</button>' 307 $t =
$f->tag(
'tag',
'#');
308 $possible_relevances = array(
315 foreach ($possible_relevances as $w) {
317 $r->render($t->withRelevance($w))
319 $expected = $expectations[array_search($w, $possible_relevances)];
320 $this->assertEquals($expected, $html);
328 $df = new \ILIAS\Data\Factory();
330 $bgcol = $df->color(
'#00ff00');
332 $b =
$f->tag(
'tag',
'#')
333 ->withBackgroundColor($bgcol);
335 $expected =
'<button class="btn btn-tag btn-tag-relevance-veryhigh" style="background-color: #00ff00; color: #000000;" data-action="#" id="id_1">tag</button>';
336 $this->assertEquals($expected, $html);
338 $fcol = $df->color(
'#ddd');
339 $b =
$b->withForegroundColor($fcol);
341 $expected =
'<button class="btn btn-tag btn-tag-relevance-veryhigh" style="background-color: #00ff00; color: #dddddd;" data-action="#" id="id_2">tag</button>';
342 $this->assertEquals($expected, $html);
349 $df = new \ILIAS\Data\Factory();
351 $classes = array(
'cl1',
'cl2');
352 $b =
$f->tag(
'tag',
'#')
353 ->withClasses($classes);
354 $this->assertEquals($classes,
$b->getClasses());
357 $expected =
'<button class="btn btn-tag btn-tag-relevance-veryhigh cl1 cl2" data-action="#" id="id_1">tag</button>';
358 $this->assertEquals($expected, $html);
367 $b =
$f->$factory_method(
"label",
"http://www.ilias.de")->withAriaLabel(
"ariatext");
368 $this->assertEquals(
"ariatext",
$b->getAriaLabel());
377 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
379 $this->assertEquals(
false,
$b->isEngageable());
380 $b2 =
$f->$factory_method(
"label",
"http://www.ilias.de")->withEngagedState(
false);
381 $this->assertEquals(
true, $b2->isEngageable());
383 $this->assertTrue(self::NOT_APPLICABLE);
393 $b =
$f->$factory_method(
"label",
"http://www.ilias.de");
395 $b =
$b->withEngagedState(
false);
396 $this->assertEquals(
false,
$b->isEngaged());
397 $b2 =
$f->$factory_method(
"label",
"http://www.ilias.de")->withEngagedState(
true);
398 $this->assertEquals(
true, $b2->isEngaged());
400 $this->assertTrue(self::NOT_APPLICABLE);
409 $ln =
"http://www.ilias.de";
412 $b =
$f->$factory_method(
"label", $ln)->withAriaLabel(
"aria label text");
413 $aria_label =
$b->getAriaLabel();
416 $css_classes = self::$canonical_css_classes[$factory_method];
417 $expected =
"<button class=\"$css_classes\" aria-label=\"$aria_label\" data-action=\"$ln\" id=\"id_1\">" .
428 $ln =
"http://www.ilias.de";
431 $b =
$f->$factory_method(
"label", $ln);
433 $b =
$b->withEngagedState(
true);
436 $css_classes = self::$canonical_css_classes[$factory_method];
437 $css_classes .=
' engaged';
438 $expected =
"<button class=\"$css_classes\" aria-pressed=\"true\" data-action=\"$ln\" id=\"id_1\">" .
443 $this->assertTrue(self::NOT_APPLICABLE);
453 $signal = $this->createMock(
C\Signal::class);
454 $button =
$f->$factory_method(
"label",
"http://www.example.com");
455 $this->assertEquals(
"http://www.example.com", $button->getAction());
457 $button = $button->withOnClick($signal);
459 $this->assertEquals([$signal], $button->getAction());
468 $signal1 = $this->createMock(
C\Signal::class);
469 $signal2 = $this->createMock(
C\Signal::class);
470 $button =
$f->$factory_method(
"label",
"http://www.example.com");
472 $button = $button->withOnClick($signal1)->appendOnClick($signal2);
474 $this->assertEquals([$signal1, $signal2], $button->getAction());
482 $ln =
"http://www.ilias.de";
484 $signal = $this->createMock(Signal::class);
485 $signal->method(
"__toString")
486 ->willReturn(
"MOCK_SIGNAL");
488 $b =
$f->$factory_method(
"label", $ln)
489 ->withOnClick($signal);
494 $css_classes = self::$canonical_css_classes[$factory_method];
495 $expected =
"<button class=\"$css_classes\" id=\"id_1\">" .
506 foreach ([
"primary",
"standard"] as $method) {
507 $ln =
"http://www.ilias.de";
510 $b =
$f->$method(
"label", $ln)
511 ->withLoadingAnimationOnClick(
true);
515 $css_classes = self::$canonical_css_classes[$method];
516 $expected =
"<button class=\"$css_classes\" data-action=\"$ln\" id=\"id_1\">" .
533 $signal = $this->createMock(
C\Signal::class);
535 $button =
$f->$factory_method(
"label", $signal);
537 $this->assertEquals([$signal], $button->getAction());
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
Provides common functionality for UI tests.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
normalizeHTML(string $html)