ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ButtonTest Class Reference

Test on button implementation. More...

+ Inheritance diagram for ButtonTest:
+ Collaboration diagram for ButtonTest:

Public Member Functions

 getButtonFactory ()
 
 testImplementsFactoryInterface ()
 
 testButtonLabelOrGlyphOnly (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonStringActionOnly (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonWithLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonWithGlyphLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonAction (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonActivatedOnDefault (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonDeactivation (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonWithLoadingAnimation ()
 test loading animation More...
 
 testRenderButtonLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonDisabled (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderCloseButton ()
 
 testRenderMinimizeButton ()
 
 testRenderButtonWithOnLoadCode (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderCloseButtonWithOnLoadCode ()
 
 testBtnTagRelevance ()
 
 testRenderBtnTagRelevance ()
 
 testRenderBtnTagColors ()
 
 testRenderBtnTagClasses ()
 
 testButtonWithAriaLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonWithEngageable (string $factory_method)
 getButtonTypeProvider More...
 
 testButtonWithEngaged (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonWithAriaLabel (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonWithAriaPressed (string $factory_method)
 getButtonTypeProvider More...
 
 testWithOnClickRemovesAction (string $factory_method)
 getButtonTypeProvider More...
 
 testAppendOnClickAppendsToAction (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonWithSignal (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonWithOnClickAnimation ()
 test rendering with on click animation More...
 
 testButtonRendersTooltip (string $factory_method)
 getButtonTypeProvider More...
 
 testFactoryAcceptsSignalAsAction (string $factory_method)
 getButtonTypeProvider More...
 
 testRenderButtonWithSymbolAndLabel ()
 

Static Public Member Functions

static getButtonTypeProvider ()
 

Data Fields

const NOT_APPLICABLE = true
 

Static Public Attributes

static array $canonical_css_classes
 
static array primary
 

Detailed Description

Test on button implementation.

Definition at line 33 of file ButtonTest.php.

Member Function Documentation

◆ getButtonFactory()

◆ getButtonTypeProvider()

static ButtonTest::getButtonTypeProvider ( )
static

Definition at line 586 of file ButtonTest.php.

586  : array
587  {
588  return [
589  ['standard'],
590  ['primary'],
591  ['shy'],
592  ['tag']
593  ];
594  }

◆ testAppendOnClickAppendsToAction()

ButtonTest::testAppendOnClickAppendsToAction ( string  $factory_method)

getButtonTypeProvider

Definition at line 482 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

482  : void
483  {
484  $f = $this->getButtonFactory();
485  $signal1 = $this->createMock(C\Signal::class);
486  $signal2 = $this->createMock(C\Signal::class);
487  $button = $f->$factory_method("label", "http://www.example.com");
488 
489  $button = $button->withOnClick($signal1)->appendOnClick($signal2);
490 
491  $this->assertEquals([$signal1, $signal2], $button->getAction());
492  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testBtnTagRelevance()

ButtonTest::testBtnTagRelevance ( )

Definition at line 300 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

300  : void
301  {
302  $f = $this->getButtonFactory();
303  $b = $f->tag('tag', '#');
304 
305  $this->expectException(TypeError::class);
306  $b->withRelevance(0);
307 
308  $this->expectException(TypeError::class);
309  $b->withRelevance('notsoimportant');
310  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonAction()

ButtonTest::testButtonAction ( string  $factory_method)

getButtonTypeProvider

Definition at line 132 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

132  : void
133  {
134  $f = $this->getButtonFactory();
135  $b = $f->$factory_method("label", "http://www.ilias.de");
136 
137  $this->assertEquals("http://www.ilias.de", $b->getAction());
138  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonActivatedOnDefault()

ButtonTest::testButtonActivatedOnDefault ( string  $factory_method)

getButtonTypeProvider

Definition at line 143 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

143  : void
144  {
145  $f = $this->getButtonFactory();
146  $b = $f->$factory_method("label", "http://www.ilias.de");
147 
148  $this->assertTrue($b->isActive());
149  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonDeactivation()

ButtonTest::testButtonDeactivation ( string  $factory_method)

getButtonTypeProvider

Definition at line 154 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

154  : void
155  {
156  $f = $this->getButtonFactory();
157  $b = $f->$factory_method("label", "http://www.ilias.de")
158  ->withUnavailableAction();
159 
160  $this->assertFalse($b->isActive());
161  $this->assertEquals("http://www.ilias.de", $b->getAction());
162 
163  $b = $b->withUnavailableAction(false);
164  $this->assertTrue($b->isActive());
165  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonLabel()

ButtonTest::testButtonLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 95 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

95  : void
96  {
97  $f = $this->getButtonFactory();
98  $b = $f->$factory_method("label", "http://www.ilias.de");
99 
100  $this->assertEquals("label", $b->getLabel());
101  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonLabelOrGlyphOnly()

ButtonTest::testButtonLabelOrGlyphOnly ( string  $factory_method)

getButtonTypeProvider

Definition at line 75 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

75  : void
76  {
77  $this->expectException(TypeError::class);
78  $f = $this->getButtonFactory();
79  $f->$factory_method($this, "http://www.ilias.de");
80  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonRendersTooltip()

ButtonTest::testButtonRendersTooltip ( string  $factory_method)

getButtonTypeProvider

Definition at line 543 of file ButtonTest.php.

References Vendor\Package\$f, $r, and getButtonFactory().

543  : void
544  {
545  $f = $this->getButtonFactory();
546  $r = $this->getDefaultRenderer();
547  $ln = "http://www.ilias.de";
548 
549  $button =
550  $f->$factory_method("label", $ln)
551  ->withHelpTopics(new Help\Topic("a"), new Help\Topic("b"));
552 
553  $css_classes = self::$canonical_css_classes[$factory_method];
554  $expected =
555  "<div class=\"c-tooltip__container\">" .
556  "<button class=\"$css_classes\" aria-describedby=\"id_2\" data-action=\"$ln\" id=\"id_1\" >" .
557  "label" .
558  "</button>" .
559  "<div id=\"id_2\" role=\"tooltip\" class=\"c-tooltip c-tooltip--hidden\">" .
560  "<p>tooltip: a</p>" .
561  "<p>tooltip: b</p>" .
562  "</div>" .
563  "</div>";
564 
565  $html = $this->normalizeHTML($r->render($button));
566  $this->assertHTMLEquals($expected, $html);
567  }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testButtonStringActionOnly()

ButtonTest::testButtonStringActionOnly ( string  $factory_method)

getButtonTypeProvider

Definition at line 85 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

85  : void
86  {
87  $this->expectException(InvalidArgumentException::class);
88  $f = $this->getButtonFactory();
89  $f->$factory_method("label", $this);
90  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithAriaLabel()

ButtonTest::testButtonWithAriaLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 381 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

381  : void
382  {
383  $f = $this->getButtonFactory();
384  $b = $f->$factory_method("label", "http://www.ilias.de")->withAriaLabel("ariatext");
385  $this->assertEquals("ariatext", $b->getAriaLabel());
386  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithEngageable()

ButtonTest::testButtonWithEngageable ( string  $factory_method)

getButtonTypeProvider

Definition at line 391 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

391  : void
392  {
393  $f = $this->getButtonFactory();
394  $b = $f->$factory_method("label", "http://www.ilias.de");
395  if ($b instanceof C\Button\Engageable) {
396  $this->assertEquals(false, $b->isEngageable());
397  $b2 = $f->$factory_method("label", "http://www.ilias.de")->withEngagedState(false);
398  $this->assertEquals(true, $b2->isEngageable());
399  } else {
400  $this->assertTrue(self::NOT_APPLICABLE);
401  }
402  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithEngaged()

ButtonTest::testButtonWithEngaged ( string  $factory_method)

getButtonTypeProvider

Definition at line 407 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

407  : void
408  {
409  $f = $this->getButtonFactory();
410  $b = $f->$factory_method("label", "http://www.ilias.de");
411  if ($b instanceof C\Button\Engageable) {
412  $b = $b->withEngagedState(false);
413  $this->assertEquals(false, $b->isEngaged());
414  $b2 = $f->$factory_method("label", "http://www.ilias.de")->withEngagedState(true);
415  $this->assertEquals(true, $b2->isEngaged());
416  } else {
417  $this->assertTrue(self::NOT_APPLICABLE);
418  }
419  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithGlyphLabel()

ButtonTest::testButtonWithGlyphLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 120 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

120  : void
121  {
122  $f = $this->getButtonFactory();
123  $glyph = new Glyph(C\Symbol\Glyph\Glyph::LIKE, '');
124  $b = $f->$factory_method('', '')
125  ->withSymbol($glyph);
126  $this->assertEquals($glyph, $b->getSymbol());
127  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithLabel()

ButtonTest::testButtonWithLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 106 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

106  : void
107  {
108  $f = $this->getButtonFactory();
109  $b = $f->$factory_method("label", "http://www.ilias.de");
110 
111  $b2 = $b->withLabel("label2");
112 
113  $this->assertEquals("label", $b->getLabel());
114  $this->assertEquals("label2", $b2->getLabel());
115  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testButtonWithLoadingAnimation()

ButtonTest::testButtonWithLoadingAnimation ( )

test loading animation

Definition at line 170 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, and getButtonFactory().

170  : void
171  {
172  $f = $this->getButtonFactory();
173  foreach (["standard", "primary"] as $method) {
174  $b = $f->$method("label", "http://www.ilias.de");
175 
176  $this->assertFalse($b->hasLoadingAnimationOnClick());
177 
178  $b = $b->withLoadingAnimationOnClick(true);
179 
180  $this->assertTrue($b->hasLoadingAnimationOnClick());
181  }
182  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testFactoryAcceptsSignalAsAction()

ButtonTest::testFactoryAcceptsSignalAsAction ( string  $factory_method)

getButtonTypeProvider

Definition at line 576 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

576  : void
577  {
578  $f = $this->getButtonFactory();
579  $signal = $this->createMock(C\Signal::class);
580 
581  $button = $f->$factory_method("label", $signal);
582 
583  $this->assertEquals([$signal], $button->getAction());
584  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testImplementsFactoryInterface()

ButtonTest::testImplementsFactoryInterface ( )

Definition at line 49 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

49  : void
50  {
51  $f = $this->getButtonFactory();
52 
53  $this->assertInstanceOf("ILIAS\\UI\\Component\\Button\\Factory", $f);
54  $this->assertInstanceOf(
55  "ILIAS\\UI\\Component\\Button\\Standard",
56  $f->standard("label", "http://www.ilias.de")
57  );
58  $this->assertInstanceOf(
59  "ILIAS\\UI\\Component\\Button\\Primary",
60  $f->primary("label", "http://www.ilias.de")
61  );
62  $this->assertInstanceOf(
63  "ILIAS\\UI\\Component\\Button\\Close",
64  $f->close()
65  );
66  $this->assertInstanceOf(
67  "ILIAS\\UI\\Component\\Button\\Shy",
68  $f->shy("label", "http://www.ilias.de")
69  );
70  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

◆ testRenderBtnTagClasses()

ButtonTest::testRenderBtnTagClasses ( )

Definition at line 362 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

362  : void
363  {
364  $f = $this->getButtonFactory();
365  $r = $this->getDefaultRenderer();
366  $df = new \ILIAS\Data\Factory();
367 
368  $classes = array('cl1', 'cl2');
369  $b = $f->tag('tag', '#')
370  ->withClasses($classes);
371  $this->assertEquals($classes, $b->getClasses());
372 
373  $html = $this->normalizeHTML($r->render($b));
374  $expected = '<button class="btn btn-tag btn-tag-relevance-veryhigh cl1 cl2" data-action="#" id="id_1">tag</button>';
375  $this->assertEquals($expected, $html);
376  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderBtnTagColors()

ButtonTest::testRenderBtnTagColors ( )

Definition at line 341 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

341  : void
342  {
343  $f = $this->getButtonFactory();
344  $r = $this->getDefaultRenderer();
345  $df = new \ILIAS\Data\Factory();
346 
347  $bgcol = $df->color('#00ff00');
348 
349  $b = $f->tag('tag', '#')
350  ->withBackgroundColor($bgcol);
351  $html = $this->normalizeHTML($r->render($b));
352  $expected = '<button class="btn btn-tag btn-tag-relevance-veryhigh" style="background-color: #00ff00; color: #000000;" data-action="#" id="id_1">tag</button>';
353  $this->assertEquals($expected, $html);
354 
355  $fcol = $df->color('#ddd');
356  $b = $b->withForegroundColor($fcol);
357  $html = $this->normalizeHTML($r->render($b));
358  $expected = '<button class="btn btn-tag btn-tag-relevance-veryhigh" style="background-color: #00ff00; color: #dddddd;" data-action="#" id="id_2">tag</button>';
359  $this->assertEquals($expected, $html);
360  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderBtnTagRelevance()

ButtonTest::testRenderBtnTagRelevance ( )

Definition at line 312 of file ButtonTest.php.

References Vendor\Package\$f, $r, and getButtonFactory().

312  : void
313  {
314  $expectations = array(
315  '<button class="btn btn-tag btn-tag-relevance-verylow" data-action="#" id="id_1">tag</button>',
316  '<button class="btn btn-tag btn-tag-relevance-low" data-action="#" id="id_2">tag</button>',
317  '<button class="btn btn-tag btn-tag-relevance-middle" data-action="#" id="id_3">tag</button>',
318  '<button class="btn btn-tag btn-tag-relevance-high" data-action="#" id="id_4">tag</button>',
319  '<button class="btn btn-tag btn-tag-relevance-veryhigh" data-action="#" id="id_5">tag</button>'
320  );
321 
322  $f = $this->getButtonFactory();
323  $r = $this->getDefaultRenderer();
324  $t = $f->tag('tag', '#');
325  $possible_relevances = array(
326  $t::REL_VERYLOW,
327  $t::REL_LOW,
328  $t::REL_MID,
329  $t::REL_HIGH,
330  $t::REL_VERYHIGH
331  );
332  foreach ($possible_relevances as $w) {
333  $html = $this->normalizeHTML(
334  $r->render($t->withRelevance($w))
335  );
336  $expected = $expectations[array_search($w, $possible_relevances)];
337  $this->assertEquals($expected, $html);
338  }
339  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonDisabled()

ButtonTest::testRenderButtonDisabled ( string  $factory_method)

getButtonTypeProvider

Definition at line 206 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

206  : void
207  {
208  $ln = "http://www.ilias.de";
209  $f = $this->getButtonFactory();
210  $b = $f->$factory_method("label", $ln)
211  ->withUnavailableAction();
212  $r = $this->getDefaultRenderer();
213 
214  $html = $this->normalizeHTML($r->render($b));
215 
216  $css_classes = self::$canonical_css_classes[$factory_method];
217  $expected = "<button class=\"$css_classes\" data-action=\"$ln\" disabled=\"disabled\">" .
218  "label" .
219  "</button>";
220  $this->assertHTMLEquals($expected, $html);
221  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonLabel()

ButtonTest::testRenderButtonLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 187 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

187  : void
188  {
189  $ln = "http://www.ilias.de";
190  $f = $this->getButtonFactory();
191  $b = $f->$factory_method("label", $ln);
192  $r = $this->getDefaultRenderer();
193 
194  $html = $this->normalizeHTML($r->render($b));
195 
196  $css_classes = self::$canonical_css_classes[$factory_method];
197  $expected = "<button class=\"$css_classes\" data-action=\"$ln\" id=\"id_1\">" .
198  "label" .
199  "</button>";
200  $this->assertHTMLEquals($expected, $html);
201  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithAriaLabel()

ButtonTest::testRenderButtonWithAriaLabel ( string  $factory_method)

getButtonTypeProvider

Definition at line 424 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

424  : void
425  {
426  $ln = "http://www.ilias.de";
427  $f = $this->getButtonFactory();
428  $r = $this->getDefaultRenderer();
429  $b = $f->$factory_method("label", $ln)->withAriaLabel("aria label text");
430  $aria_label = $b->getAriaLabel();
431 
432  $html = $this->normalizeHTML($r->render($b));
433  $css_classes = self::$canonical_css_classes[$factory_method];
434  $expected = "<button class=\"$css_classes\" aria-label=\"$aria_label\" data-action=\"$ln\" id=\"id_1\">" .
435  "label" .
436  "</button>";
437  $this->assertHTMLEquals($expected, $html);
438  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithAriaPressed()

ButtonTest::testRenderButtonWithAriaPressed ( string  $factory_method)

getButtonTypeProvider

Definition at line 443 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

443  : void
444  {
445  $ln = "http://www.ilias.de";
446  $f = $this->getButtonFactory();
447  $r = $this->getDefaultRenderer();
448  $b = $f->$factory_method("label", $ln);
449  if ($b instanceof C\Button\Engageable) {
450  $b = $b->withEngagedState(true);
451 
452  $html = $this->normalizeHTML($r->render($b));
453  $css_classes = self::$canonical_css_classes[$factory_method];
454  $css_classes .= ' engaged';
455  $expected = "<button class=\"$css_classes\" aria-pressed=\"true\" data-action=\"$ln\" id=\"id_1\">" .
456  "label" .
457  "</button>";
458  $this->assertHTMLEquals($expected, $html);
459  } else {
460  $this->assertTrue(self::NOT_APPLICABLE);
461  }
462  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithOnClickAnimation()

ButtonTest::testRenderButtonWithOnClickAnimation ( )

test rendering with on click animation

Definition at line 521 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

521  : void
522  {
523  foreach (["primary", "standard"] as $method) {
524  $ln = "http://www.ilias.de";
525  $f = $this->getButtonFactory();
526  $r = $this->getDefaultRenderer();
527  $b = $f->$method("label", $ln)
528  ->withLoadingAnimationOnClick(true);
529 
530  $html = $this->normalizeHTML($r->render($b));
531 
532  $css_classes = self::$canonical_css_classes[$method];
533  $expected = "<button class=\"$css_classes\" data-action=\"$ln\" id=\"id_1\">" .
534  "label" .
535  "</button>";
536  $this->assertHTMLEquals($expected, $html);
537  }
538  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithOnLoadCode()

ButtonTest::testRenderButtonWithOnLoadCode ( string  $factory_method)

getButtonTypeProvider

Definition at line 254 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $id, $r, and getButtonFactory().

254  : void
255  {
256  $ln = "http://www.ilias.de";
257  $f = $this->getButtonFactory();
258  $r = $this->getDefaultRenderer();
259  $ids = array();
260  $b = $f->$factory_method("label", $ln)
261  ->withOnLoadCode(function ($id) use (&$ids): string {
262  $ids[] = $id;
263  return "";
264  });
265 
266  $html = $this->normalizeHTML($r->render($b));
267 
268  $this->assertCount(1, $ids);
269 
270  $id = $ids[0];
271  $css_classes = self::$canonical_css_classes[$factory_method];
272  $expected = "<button class=\"$css_classes\" data-action=\"$ln\" id=\"$id\">" .
273  "label" .
274  "</button>";
275  $this->assertHTMLEquals($expected, $html);
276  }
getButtonFactory()
Definition: ButtonTest.php:37
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithSignal()

ButtonTest::testRenderButtonWithSignal ( string  $factory_method)

getButtonTypeProvider

Definition at line 497 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

497  : void
498  {
499  $ln = "http://www.ilias.de";
500  $f = $this->getButtonFactory();
501  $signal = $this->createMock(Signal::class);
502  $signal->method("__toString")
503  ->willReturn("MOCK_SIGNAL");
504 
505  $b = $f->$factory_method("label", $ln)
506  ->withOnClick($signal);
507  $r = $this->getDefaultRenderer();
508 
509  $html = $this->normalizeHTML($r->render($b));
510 
511  $css_classes = self::$canonical_css_classes[$factory_method];
512  $expected = "<button class=\"$css_classes\" id=\"id_1\">" .
513  "label" .
514  "</button>";
515  $this->assertHTMLEquals($expected, $html);
516  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderButtonWithSymbolAndLabel()

ButtonTest::testRenderButtonWithSymbolAndLabel ( )

Definition at line 596 of file ButtonTest.php.

References Vendor\Package\$f, $r, and getButtonFactory().

596  : void
597  {
598  $f = $this->getButtonFactory();
599  $r = $this->getDefaultRenderer();
600  $glyph = new Glyph(C\Symbol\Glyph\Glyph::LIKE, 'The Glyph Label');
601  $button = $f->standard('The Button Label', '')
602  ->withSymbol($glyph);
603 
604  // the glyph still contains its aria-label
605  $this->assertStringContainsString(
606  'aria-label="The Glyph Label"',
607  $r->render($glyph)
608  );
609 
610  //but not in button context
611  $expected = $this->brutallyTrimHTML(
612  '
613  <button class="btn btn-default" data-action="">
614  <span class="glyph" role="img">
615  <span class="glyphicon il-glyphicon-like" aria-hidden="true"></span>
616  </span>
617  The Button Label
618  </button>'
619  );
620  $html = $this->brutallyTrimHTML($r->render($button));
621  $this->assertHTMLEquals($expected, $html);
622  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderCloseButton()

ButtonTest::testRenderCloseButton ( )

Definition at line 223 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

223  : void
224  {
225  $f = $this->getButtonFactory();
226  $r = $this->getDefaultRenderer();
227  $b = $f->close();
228 
229  $html = $this->normalizeHTML($r->render($b));
230 
231  $expected = "<button type=\"button\" class=\"close\" aria-label=\"close\">" .
232  " <span aria-hidden=\"true\">&times;</span>" .
233  "</button>";
234  $this->assertEquals($expected, $html);
235  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testRenderCloseButtonWithOnLoadCode()

ButtonTest::testRenderCloseButtonWithOnLoadCode ( )

Definition at line 278 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $id, $r, and getButtonFactory().

278  : void
279  {
280  $f = $this->getButtonFactory();
281  $r = $this->getDefaultRenderer();
282  $ids = array();
283  $b = $f->close()
284  ->withOnLoadCode(function ($id) use (&$ids): string {
285  $ids[] = $id;
286  return "";
287  });
288 
289  $html = $this->normalizeHTML($r->render($b));
290 
291  $this->assertCount(1, $ids);
292 
293  $id = $ids[0];
294  $expected = "<button type=\"button\" class=\"close\" aria-label=\"close\" id=\"$id\">" .
295  " <span aria-hidden=\"true\">&times;</span>" .
296  "</button>";
297  $this->assertEquals($expected, $html);
298  }
getButtonFactory()
Definition: ButtonTest.php:37
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$r
+ Here is the call graph for this function:

◆ testRenderMinimizeButton()

ButtonTest::testRenderMinimizeButton ( )

Definition at line 237 of file ButtonTest.php.

References Vendor\Package\$b, Vendor\Package\$f, $r, and getButtonFactory().

237  : void
238  {
239  $f = $this->getButtonFactory();
240  $r = $this->getDefaultRenderer();
241  $b = $f->minimize();
242 
243  $html = $this->normalizeHTML($r->render($b));
244 
245  $expected = "<button type=\"button\" class=\"minimize\" aria-label=\"minimize\">" .
246  " <span aria-hidden=\"true\">−</span>" .
247  "</button>";
248  $this->assertEquals($expected, $html);
249  }
getButtonFactory()
Definition: ButtonTest.php:37
$r
+ Here is the call graph for this function:

◆ testWithOnClickRemovesAction()

ButtonTest::testWithOnClickRemovesAction ( string  $factory_method)

getButtonTypeProvider

Definition at line 467 of file ButtonTest.php.

References Vendor\Package\$f, and getButtonFactory().

467  : void
468  {
469  $f = $this->getButtonFactory();
470  $signal = $this->createMock(C\Signal::class);
471  $button = $f->$factory_method("label", "http://www.example.com");
472  $this->assertEquals("http://www.example.com", $button->getAction());
473 
474  $button = $button->withOnClick($signal);
475 
476  $this->assertEquals([$signal], $button->getAction());
477  }
getButtonFactory()
Definition: ButtonTest.php:37
+ Here is the call graph for this function:

Field Documentation

◆ $canonical_css_classes

array ButtonTest::$canonical_css_classes
static
Initial value:
= [
"standard" => "btn btn-default"

Definition at line 42 of file ButtonTest.php.

◆ NOT_APPLICABLE

const ButtonTest::NOT_APPLICABLE = true

Definition at line 35 of file ButtonTest.php.

◆ primary

array ButtonTest::primary
static
Initial value:
=> "btn btn-default btn-primary",
"shy" => "btn btn-link",
"tag" => "btn btn-tag btn-tag-relevance-veryhigh"
]

Definition at line 44 of file ButtonTest.php.


The documentation for this class was generated from the following file: