ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ButtonMonthTest Class Reference

Test month button. More...

+ Inheritance diagram for ButtonMonthTest:
+ Collaboration diagram for ButtonMonthTest:

Public Member Functions

 getFactory ()
 
 testImplementsFactoryInterface ()
 
 testGetDefault ()
 
 testRender ()
 
- Public Member Functions inherited from ILIAS_UI_TestBase
 setUp ()
 
 tearDown ()
 
 getUIFactory ()
 
 getTemplateFactory ()
 
 getResourceRegistry ()
 
 getLanguage ()
 
 getJavaScriptBinding ()
 
 getRefinery ()
 
 getImagePathResolver ()
 
 getDataFactory ()
 
 getHelpTextRetriever ()
 
 getUploadLimitResolver ()
 
 getDefaultRenderer (JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
 
 getDecoratedRenderer (Renderer $default)
 
 normalizeHTML (string $html)
 
 assertHTMLEquals (string $expected_html_as_string, string $html_as_string)
 

Additional Inherited Members

- Protected Member Functions inherited from ILIAS_UI_TestBase
 brutallyTrimHTML (string $html)
 A more radical version of normalizeHTML. More...
 
 brutallyTrimSignals (string $html)
 A naive replacement of all il_signal-ids with dots to ease comparisons of rendered output. More...
 

Detailed Description

Test month button.

Definition at line 29 of file ButtonMonthTest.php.

Member Function Documentation

◆ getFactory()

ButtonMonthTest::getFactory ( )

Definition at line 31 of file ButtonMonthTest.php.

Referenced by testGetDefault(), testImplementsFactoryInterface(), and testRender().

31  : I\Component\Button\Factory
32  {
33  return new I\Component\Button\Factory();
34  }
+ Here is the caller graph for this function:

◆ testGetDefault()

ButtonMonthTest::testGetDefault ( )

Definition at line 43 of file ButtonMonthTest.php.

References Vendor\Package\$c, Vendor\Package\$f, and getFactory().

43  : void
44  {
45  $f = $this->getFactory();
46  $c = $f->month("02-2017");
47 
48  $this->assertEquals("02-2017", $c->getDefault());
49  }
+ Here is the call graph for this function:

◆ testImplementsFactoryInterface()

ButtonMonthTest::testImplementsFactoryInterface ( )

Definition at line 36 of file ButtonMonthTest.php.

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

36  : void
37  {
38  $f = $this->getFactory();
39 
40  $this->assertInstanceOf("ILIAS\\UI\\Component\\Button\\Month", $f->month("02-2017"));
41  }
+ Here is the call graph for this function:

◆ testRender()

ButtonMonthTest::testRender ( )

Definition at line 51 of file ButtonMonthTest.php.

References Vendor\Package\$c, Vendor\Package\$f, $r, ILIAS_UI_TestBase\assertHTMLEquals(), ILIAS\Repository\button(), ILIAS_UI_TestBase\getDefaultRenderer(), and getFactory().

51  : void
52  {
53  $f = $this->getFactory();
54  $r = $this->getDefaultRenderer();
55 
56  $c = $f->month("02-2017");
57 
58  $html = $r->render($c);
59 
60  $expected_html = <<<EOT
61  <div id="id_1" class="btn-group il-btn-month">
62  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
63  <span class="il-current-month">month_02_short 2017</span>
64  <span class="caret"></span>
65  </button>
66  <div class="dropdown-menu" data-default-date="02/1/2017" data-lang="en">
67  <div class="inline-picker"></div>
68  </div>
69 </div>
70 EOT;
71  $this->assertHTMLEquals("<div>" . $expected_html . "</div>", "<div>" . $html . "</div>");
72  }
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
Definition: Base.php:377
button(string $caption, string $cmd)
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
Definition: Base.php:458
$r
+ Here is the call graph for this function:

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