ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
SectionInputTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 require_once(__DIR__ . "/../../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../../Base.php");
23 
25 use ILIAS\Data;
26 
28 {
29  public function getFieldFactory(): Field\Factory
30  {
31  $factory = new Field\Factory(
32  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
34  new Data\Factory(),
35  $this->getRefinery(),
36  $this->getLanguage()
37  );
38  return $factory;
39  }
40 
41  public function testSectionRendering(): void
42  {
43  $f = $this->getFieldFactory();
44  $r = $this->getDefaultRenderer();
45  $inputs = [
46  $f->text("input1", "in 1"),
47  $f->text("input2", "in 2")
48  ];
49  $label = 'section label';
50  $byline = 'section byline';
51  $section = $f->section($inputs, $label, $byline);
52  $actual = $this->brutallyTrimHTML($r->render($section));
53  $expected = <<<EOT
54  <div class="il-section-input">
55  <div class="il-section-input-header">
56  <h2>section label</h2>
57  <div class="il-section-input-header-byline">section byline</div>
58  </div>
59  <div class="form-group row">
60  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">input1</label>
61  <div class="col-sm-8 col-md-9 col-lg-10">
62  <input id="id_1" type="text" name="" class="form-control form-control-sm" />
63  <div class="help-block">in 1</div>
64  </div>
65  </div>
66  <div class="form-group row">
67  <label for="id_2" class="control-label col-sm-4 col-md-3 col-lg-2">input2</label>
68  <div class="col-sm-8 col-md-9 col-lg-10">
69  <input id="id_2" type="text" name="" class="form-control form-control-sm" />
70  <div class="help-block">in 2</div>
71  </div>
72  </div>
73  </div>
74 EOT;
75  $expected = $this->brutallyTrimHTML($expected);
76  $this->assertEquals($expected, $actual);
77  }
78 
79  public function testSectionRenderingWithError(): void
80  {
81  $f = $this->getFieldFactory();
82  $r = $this->getDefaultRenderer();
83  $inputs = [
84  $f->text("input1", "in 1")
85  ];
86  $label = 'section label';
87  $byline = 'section byline';
88  $section = $f->section($inputs, $label, $byline);
89  $actual = $this->brutallyTrimHTML($r->render($section->withError("Some Error")));
90  $expected = <<<EOT
91  <div class="il-section-input">
92  <div class="il-section-input-header">
93  <h2>section label</h2>
94  <div class="il-section-input-header-byline">section byline</div>
95  </div>
96  <div class="help-block alert alert-danger" role="alert"> Some Error </div>
97  <div class="form-group row">
98  <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">input1</label>
99  <div class="col-sm-8 col-md-9 col-lg-10">
100  <input id="id_1" type="text" name="" class="form-control form-control-sm" />
101  <div class="help-block">in 1</div>
102  </div>
103  </div>
104  </div>
105 EOT;
106  $expected = $this->brutallyTrimHTML($expected);
107  $this->assertEquals($expected, $actual);
108  }
109 }
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
Definition: Base.php:355
Class Factory.
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
Definition: Base.php:444
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
Provides common functionality for UI tests.
Definition: Base.php:298
$factory
Definition: metadata.php:75