3 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../Base.php");
34 protected I\Symbol\Glyph\Glyph
$glyph;
35 protected I\Symbol\Icon\Standard
$icon;
40 $this->factory =
new I\Link\Factory();
41 $this->glyph =
new I\Symbol\Glyph\Glyph(
"briefcase",
"briefcase");
42 $this->icon =
new I\Symbol\Icon\Standard(
"someExample",
"Example",
"small",
false);
43 $this->target =
new Data\URI(
"http://www.ilias.de");
48 $link = $this->factory->bulky($this->glyph,
"label", $this->target);
49 $this->assertInstanceOf(
C\Bulky::class, $link);
50 $this->assertInstanceOf(
C\Link::class, $link);
55 $this->expectException(\TypeError::class);
56 $this->factory->bulky(
'wrong param',
"label", $this->target);
62 $b = $this->factory->bulky($this->glyph,
"label", $this->target)
63 ->withAriaRole(
I\
Button\Bulky::MENUITEM);
64 $this->assertEquals(
"menuitem",
$b->getAriaRole());
66 $this->assertFalse(
"This should not happen");
73 $this->factory->bulky($this->glyph,
"label", $this->target)
74 ->withAriaRole(
"loremipsum");
75 $this->assertFalse(
"This should not happen");
77 $this->assertTrue(
true);
83 $label =
'some label for the link';
84 $link = $this->factory->bulky($this->glyph, $label, $this->target);
85 $this->assertEquals($label, $link->getLabel());
90 $link = $this->factory->bulky($this->glyph,
"label", $this->target);
91 $this->assertEquals($this->glyph, $link->getSymbol());
92 $link = $this->factory->bulky($this->icon,
"label", $this->target);
93 $this->assertEquals($this->icon, $link->getSymbol());
98 $plain =
"http://www.ilias.de";
99 $with_query = $plain .
"?query1=1";
100 $with_multi_query = $with_query .
"&query2=2";
101 $with_fragment = $plain .
"#fragment";
102 $with_multi_query_and_fragment_uri = $with_multi_query . $with_fragment;
104 $plain_uri =
new Data\URI($plain);
105 $with_query_uri =
new Data\URI($with_query);
106 $with_multi_query_uri =
new Data\URI($with_multi_query);
107 $with_fragment_uri =
new Data\URI($with_fragment);
108 $with_multi_query_and_fragment_uri =
new Data\URI($with_multi_query_and_fragment_uri);
110 $this->assertEquals($plain, $this->factory->bulky($this->glyph,
"label", $plain_uri)->getAction());
111 $this->assertEquals($with_query, $this->factory->bulky($this->glyph,
"label", $with_query_uri)->getAction());
112 $this->assertEquals($with_multi_query, $this->factory->bulky($this->glyph,
"label", $with_multi_query_uri)->getAction());
113 $this->assertEquals($with_fragment_uri, $this->factory->bulky($this->glyph,
"label", $with_fragment_uri)->getAction());
114 $this->assertEquals($with_multi_query_and_fragment_uri, $this->factory->bulky($this->glyph,
"label", $with_multi_query_and_fragment_uri)->getAction());
120 $b = $this->factory->bulky($this->glyph,
"label", $this->target);
123 .
'<a class="il-link link-bulky" href="http://www.ilias.de">' 124 .
' <span class="glyph" role="img">' 125 .
' <span class="glyphicon glyphicon-briefcase" aria-hidden="true"></span>' 127 .
' <span class="bulky-label">label</span>' 139 $b = $this->factory->bulky($this->icon,
"label", $this->target);
142 .
'<a class="il-link link-bulky" href="http://www.ilias.de">' 143 .
' <img class="icon someExample small" src="./templates/default/images/icon_default.svg" alt=""/>' 144 .
' <span class="bulky-label">label</span>' 155 $b = $this->factory->bulky($this->icon,
"label", $this->target)
156 ->withAdditionalOnloadCode(
function (
$id) {
161 .
'<a class="il-link link-bulky" href="http://www.ilias.de" id="id_1">' 162 .
'<img class="icon someExample small" src="./templates/default/images/icon_default.svg" alt=""/>' 163 .
' <span class="bulky-label">label</span>' 175 $b = $this->factory->bulky($this->icon,
"label", $this->target)
176 ->withAriaRole(
I\
Button\Bulky::MENUITEM);
179 .
'<a class="il-link link-bulky" href="http://www.ilias.de" role="menuitem">' 180 .
'<img class="icon someExample small" src="./templates/default/images/icon_default.svg" alt=""/>' 181 .
' <span class="bulky-label">label</span>' 193 $b = $this->factory->bulky($this->icon,
"Example", $this->target)
194 ->withAriaRole(
I\
Button\Bulky::MENUITEM);
197 .
'<a class="il-link link-bulky" href="http://www.ilias.de" role="menuitem">' 198 .
'<img class="icon someExample small" src="./templates/default/images/icon_default.svg" alt=""/>' 199 .
' <span class="bulky-label">Example</span>' 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...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
I Symbol Glyph Glyph $glyph
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
Testing behavior of the Bulky Link.
Provides common functionality for UI tests.
testRenderWithAriaRoleMenuitem()
I Symbol Icon Standard $icon
testRenderWithLabelAndAltImageSame()
testWithAriaRoleIncorrect()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
testImplementsInterfaces()