ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ButtonMonthTest.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2017 Alex Killing <killing@leifos.de> Extended GPL, see docs/LICENSE */
4 
5 require_once(__DIR__ . "/../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ . "/../../Base.php");
7 
8 use \ILIAS\UI\Component as C;
9 
14 {
15 
19  public function getFactory()
20  {
21  return new \ILIAS\UI\Implementation\Factory();
22  }
23 
25  {
26  $f = $this->getFactory();
27 
28  $this->assertInstanceOf("ILIAS\\UI\\Component\\Button\\Month", $f->button()->month("02-2017"));
29  }
30 
31  public function test_get_default()
32  {
33  $f = $this->getFactory();
34  $c = $f->button()->month("02-2017");
35 
36  $this->assertEquals($c->getDefault(), "02-2017");
37  }
38 
39  public function test_render()
40  {
41  $f = $this->getFactory();
42  $r = $this->getDefaultRenderer();
43 
44  $c = $f->button()->month("02-2017");
45 
46  $html = $r->render($c);
47 
48  $expected_html = <<<EOT
49  <div class="btn-group il-btn-month">
50  <button type="button" class="btn btn-default dropdown-toggle" href="" data-toggle="dropdown" aria-expanded="false">
51  <span class="il-current-month">month_02_short 2017</span>
52  <span class="caret"></span>
53  <span class="sr-only"></span>
54  </button>
55  <div class="dropdown-menu" data-default-date="02/1/2017" data-lang="en">
56  <div class="inline-picker"></div>
57  </div>
58 </div>
59 <script>il.Util.addOnLoad(function() {il.UI.button.initMonth('');});</script>
60 EOT;
61  $this->assertHTMLEquals("<div>" . $expected_html . "</div>", "<div>" . $html . "</div>");
62  }
63 }
Add some data
getDefaultRenderer(JavaScriptBinding $js_binding=null)
Definition: Base.php:216
Test month button.
$r
Definition: example_031.php:79
Provides common functionality for UI tests.
Definition: Base.php:177
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
assertHTMLEquals($expected_html_as_string, $html_as_string)
Definition: Base.php:252
$html
Definition: example_001.php:87