Test on button implementation.
More...
Test on button implementation.
Definition at line 30 of file BulkyButtonTest.php.
◆ getHtmlWithGlyph()
BulkyButtonTest::getHtmlWithGlyph |
( |
bool |
$engeagable = false , |
|
|
bool |
$engeaged = false |
|
) |
| |
|
protected |
Definition at line 165 of file BulkyButtonTest.php.
165 : string
166 {
167 $aria_pressed = "";
168 $engaged_class = "";
169 if ($engeagable) {
170 if ($engeagable) {
171 $aria_pressed = " aria-pressed='true'";
172 $engaged_class = " engaged";
173 } else {
174 $aria_pressed = " aria-pressed='false'";
175 $engaged_class = " disengaged";
176 }
177 }
178 return ''
179 . '<button class="btn btn-bulky' . $engaged_class . '" data-action="http://www.ilias.de" id="id_1" ' . $aria_pressed . '>'
180 . ' <span class="glyph" role="img">'
181 . ' <span class="glyphicon glyphicon-briefcase" aria-hidden="true"></span>'
182 . ' </span>'
183 . ' <span class="bulky-label">label</span>'
184 . '</button>';
185 }
Referenced by testRenderWithGlyphInContext(), testRenderWithGlyphInContextAndDisengaged(), and testRenderWithGlyphInContextAndEngaged().
◆ setUp()
BulkyButtonTest::setUp |
( |
| ) |
|
Definition at line 36 of file BulkyButtonTest.php.
36 : void
37 {
38 $this->button_factory = new I\Component\Button\Factory();
39 $this->glyph = new I\Component\Symbol\Glyph\Glyph("briefcase", "briefcase");
40 $this->icon = new I\Component\Symbol\Icon\Standard("someExample", "Example", "small", false);
41 }
◆ testEngageableDisengaged()
BulkyButtonTest::testEngageableDisengaged |
( |
| ) |
|
Definition at line 94 of file BulkyButtonTest.php.
94 : void
95 {
96 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
97 $this->assertFalse(
$b->isEngaged());
98 $this->assertFalse(
$b->isEngageable());
99
100 $b =
$b->withEngagedState(
false);
101 $this->assertInstanceOf(
102 "ILIAS\\UI\\Component\\Button\\Bulky",
104 );
105 $this->assertFalse(
$b->isEngaged());
106 $this->assertTrue(
$b->isEngageable());
107 }
References Vendor\Package\$b.
◆ testEngaged()
BulkyButtonTest::testEngaged |
( |
| ) |
|
Definition at line 79 of file BulkyButtonTest.php.
79 : void
80 {
81 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
82 $this->assertFalse(
$b->isEngaged());
83 $this->assertFalse(
$b->isEngageable());
84
85 $b =
$b->withEngagedState(
true);
86 $this->assertInstanceOf(
87 "ILIAS\\UI\\Component\\Button\\Bulky",
89 );
90 $this->assertTrue(
$b->isEngaged());
91 $this->assertTrue(
$b->isEngageable());
92 }
References Vendor\Package\$b.
◆ testGlyphOrIconForGlyph()
BulkyButtonTest::testGlyphOrIconForGlyph |
( |
| ) |
|
Definition at line 61 of file BulkyButtonTest.php.
61 : void
62 {
63 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de");
64 $this->assertEquals(
65 $this->glyph,
67 );
68 }
References Vendor\Package\$b.
◆ testGlyphOrIconForIcon()
BulkyButtonTest::testGlyphOrIconForIcon |
( |
| ) |
|
Definition at line 70 of file BulkyButtonTest.php.
70 : void
71 {
72 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de");
73 $this->assertEquals(
74 $this->icon,
76 );
77 }
References Vendor\Package\$b.
◆ testImplementsFactoryInterface()
BulkyButtonTest::testImplementsFactoryInterface |
( |
| ) |
|
Definition at line 43 of file BulkyButtonTest.php.
43 : void
44 {
45 $this->assertInstanceOf(
46 "ILIAS\\UI\\Component\\Button\\Bulky",
47 $this->button_factory->bulky($this->glyph, "label", "http://www.ilias.de")
48 );
49 }
◆ testRenderButtonWithAriaRoleMenuitemIsEngageable()
BulkyButtonTest::testRenderButtonWithAriaRoleMenuitemIsEngageable |
( |
| ) |
|
Definition at line 222 of file BulkyButtonTest.php.
222 : void
223 {
224 $r = $this->getDefaultRenderer();
225 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de")
226 ->withEngagedState(false)
228
229 $expected = ''
230 . '<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem" aria-haspopup="true">'
231 . ' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>'
232 . ' <span class="bulky-label">label</span>'
233 . '</button>';
234
235 $this->assertHTMLEquals(
236 $expected,
238 );
239 }
References Vendor\Package\$b.
◆ testRenderButtonWithAriaRoleMenuitemNotEngageable()
BulkyButtonTest::testRenderButtonWithAriaRoleMenuitemNotEngageable |
( |
| ) |
|
Definition at line 204 of file BulkyButtonTest.php.
204 : void
205 {
206 $r = $this->getDefaultRenderer();
207 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de")
209
210 $expected = ''
211 . '<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem">'
212 . ' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>'
213 . ' <span class="bulky-label">label</span>'
214 . '</button>';
215
216 $this->assertHTMLEquals(
217 $expected,
219 );
220 }
References Vendor\Package\$b.
◆ testRenderWithGlyphInContext()
BulkyButtonTest::testRenderWithGlyphInContext |
( |
| ) |
|
◆ testRenderWithGlyphInContextAndDisengaged()
BulkyButtonTest::testRenderWithGlyphInContextAndDisengaged |
( |
| ) |
|
Definition at line 154 of file BulkyButtonTest.php.
154 : void
155 {
156 $r = $this->getDefaultRenderer();
157 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
158 ->withEngagedState(true);
159 $this->assertHTMLEquals(
162 );
163 }
References Vendor\Package\$b, and getHtmlWithGlyph().
◆ testRenderWithGlyphInContextAndEngaged()
BulkyButtonTest::testRenderWithGlyphInContextAndEngaged |
( |
| ) |
|
Definition at line 142 of file BulkyButtonTest.php.
142 : void
143 {
144 $r = $this->getDefaultRenderer();
145 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
146 ->withEngagedState(true);
147
148 $this->assertHTMLEquals(
151 );
152 }
References Vendor\Package\$b, and getHtmlWithGlyph().
◆ testRenderWithHelpTopics()
BulkyButtonTest::testRenderWithHelpTopics |
( |
| ) |
|
Definition at line 259 of file BulkyButtonTest.php.
259 : void
260 {
261 $r = $this->getDefaultRenderer();
262 $b = $this->button_factory->bulky($this->icon,
"Example",
"http://www.ilias.de")
264 ->withHelpTopics(
new \
ILIAS\UI\Help\Topic(
"a"));
265 ;
266
267 $expected = <<<EXP
268<div class="c-tooltip__container">
269<
button class=
"btn btn-bulky" data-action=
"http://www.ilias.de" id=
"id_1" role=
"menuitem" aria-describedby=
"id_2">
270 <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt="" /><span class="bulky-label">Example</span>
272<div id="id_2" role="tooltip" class="c-tooltip c-tooltip--hidden"><p>tooltip: a</p></div>
273</div>
274EXP;
275
276 $this->assertHTMLEquals(
277 $expected,
279 );
280 }
button(string $caption, string $cmd)
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.
References Vendor\Package\$b, and ILIAS\Repository\button().
◆ testRenderWithIcon()
BulkyButtonTest::testRenderWithIcon |
( |
| ) |
|
Definition at line 187 of file BulkyButtonTest.php.
187 : void
188 {
189 $r = $this->getDefaultRenderer();
190 $b = $this->button_factory->bulky($this->icon,
"label",
"http://www.ilias.de");
191
192 $expected = ''
193 . '<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1">'
194 . ' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>'
195 . ' <span class="bulky-label">label</span>'
196 . '</button>';
197
198 $this->assertHTMLEquals(
199 $expected,
201 );
202 }
References Vendor\Package\$b.
◆ testRenderWithLabelAndAltImageSame()
BulkyButtonTest::testRenderWithLabelAndAltImageSame |
( |
| ) |
|
Definition at line 241 of file BulkyButtonTest.php.
241 : void
242 {
243 $r = $this->getDefaultRenderer();
244 $b = $this->button_factory->bulky($this->icon,
"Example",
"http://www.ilias.de")
245 ->withEngagedState(false)
247
248 $expected = ''
249 . '<button class="btn btn-bulky" data-action="http://www.ilias.de" id="id_1" role="menuitem" aria-haspopup="true">'
250 . ' <img class="icon someExample small" src="./assets/images/standard/icon_default.svg" alt=""/>'
251 . ' <span class="bulky-label">Example</span>'
252 . '</button>';
253
254 $this->assertHTMLEquals(
255 $expected,
257 );
258 }
References Vendor\Package\$b.
◆ testWithAriaRole()
BulkyButtonTest::testWithAriaRole |
( |
| ) |
|
Definition at line 109 of file BulkyButtonTest.php.
109 : void
110 {
111 try {
112 $b = $this->button_factory->bulky($this->glyph,
"label",
"http://www.ilias.de")
114 $this->assertEquals(
"menuitem",
$b->getAriaRole());
115 }
catch (InvalidArgumentException
$e) {
116 $this->assertFalse("This should not happen");
117 }
118 }
References Vendor\Package\$b, and Vendor\Package\$e.
◆ testWithAriaRoleIncorrect()
BulkyButtonTest::testWithAriaRoleIncorrect |
( |
| ) |
|
Definition at line 120 of file BulkyButtonTest.php.
120 : void
121 {
122 try {
123 $this->button_factory->bulky($this->glyph, "label", "http://www.ilias.de")
124 ->withAriaRole("loremipsum");
125 $this->assertFalse("This should not happen");
126 }
catch (InvalidArgumentException
$e) {
127 $this->assertTrue(true);
128 }
129 }
References Vendor\Package\$e.
◆ $button_factory
I Component Button Factory BulkyButtonTest::$button_factory |
|
private |
◆ $glyph
I Component Symbol Glyph Glyph BulkyButtonTest::$glyph |
|
private |
◆ $icon
I Component Symbol Icon Standard BulkyButtonTest::$icon |
|
private |
The documentation for this class was generated from the following file: