ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
MultiSelectInputTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../../libs/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../../Base.php");
23 
29 use ILIAS\Data;
31 
33 {
35 
36  public function setUp(): void
37  {
38  $this->name_source = new DefNamesource();
39  }
40 
41  protected function buildFactory(): I\Input\Field\Factory
42  {
43  $df = new Data\Factory();
44  $language = $this->createMock(ilLanguage::class);
45  return new I\Input\Field\Factory(
46  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
47  new SignalGenerator(),
48  $df,
49  new Refinery($df, $language),
50  $language
51  );
52  }
53 
54  public function testImplementsFactoryInterface(): void
55  {
56  $f = $this->buildFactory();
57  $options = array(
58  "1" => "Pick 1",
59  "2" => "Pick 2"
60  );
61  $ms = $f->multiSelect("label", $options, "byline");
62  $this->assertInstanceOf(\ILIAS\UI\Component\Input\Container\Form\FormInput::class, $ms);
63  $this->assertInstanceOf(Field\MultiSelect::class, $ms);
64  }
65 
66  public function testOptions(): void
67  {
68  $f = $this->buildFactory();
69  $options = array(
70  "1" => "Pick 1",
71  "2" => "Pick 2"
72  );
73  $ms = $f->multiSelect("label", $options, "byline");
74  $this->assertEquals($options, $ms->getOptions());
75  }
76 
78  {
79  $this->expectException(InvalidArgumentException::class);
80  $f = $this->buildFactory();
81  $options = array(
82  "1" => "Pick 1",
83  "2" => "Pick 2"
84  );
85  $ms = $f->multiSelect("label", $options, "byline")
86  ->withNameFrom(new class () implements NameSource {
87  public function getNewName(): string
88  {
89  return "name";
90  }
91  });
92  $ms = $ms->withInput(new class () implements InputData {
96  public function getOr($_, $__): array
97  {
98  return ["3"];
99  }
100  public function get($_): void
101  {
102  }
103  public function has($name): bool
104  {
105  }
106  });
107  $ms->getContent();
108  }
109 
110  public function testRender(): void
111  {
112  $r = $this->getDefaultRenderer();
113  $f = $this->buildFactory();
114  $options = array(
115  "1" => "Pick 1",
116  "2" => "Pick 2"
117  );
118  $ms = $f->multiSelect("label", $options, "byline")
119  ->withNameFrom($this->name_source);
120 
121  $name = $ms->getName();
122  $label = $ms->getLabel();
123  $byline = $ms->getByline();
124  $expected = ""
125  . "<div class=\"form-group row\">"
126  . "<label class=\"control-label col-sm-4 col-md-3 col-lg-2\">$label</label>"
127  . "<div class=\"col-sm-8 col-md-9 col-lg-10\">"
128  . "<ul class=\"il-input-multiselect\" id=\"id_1\">";
129 
130  foreach ($options as $opt_value => $opt_label) {
131  $expected .= ""
132  . "<li>"
133  . "<input type=\"checkbox\" name=\"$name" . "[]\" value=\"$opt_value\" />"
134  . "<span>$opt_label</span>"
135  . "</li>";
136  }
137 
138  $expected .= ""
139  . "</ul>"
140  . "<div class=\"help-block\">$byline</div>"
141  . "</div>"
142  . "</div>";
143  $this->assertHTMLEquals($expected, $r->render($ms));
144  }
145 
146  public function testRenderValue(): void
147  {
148  $r = $this->getDefaultRenderer();
149  $f = $this->buildFactory();
150  $options = array(
151  "1" => "Pick 1",
152  "2" => "Pick 2"
153  );
154  $value = array_keys($options)[1];
155  $ms = $f->multiSelect("label", $options, "byline")
156  ->withNameFrom($this->name_source)
157  ->withValue([$value]);
158 
159  $name = $ms->getName();
160  $label = $ms->getLabel();
161  $byline = $ms->getByline();
162  $expected = ""
163  . "<div class=\"form-group row\">"
164  . "<label class=\"control-label col-sm-4 col-md-3 col-lg-2\">$label</label>"
165  . "<div class=\"col-sm-8 col-md-9 col-lg-10\">"
166  . "<ul class=\"il-input-multiselect\" id=\"id_1\">";
167 
168  foreach ($options as $opt_value => $opt_label) {
169  if ($opt_value === $value) {
170  $expected .= ""
171  . "<li>"
172  . "<input type=\"checkbox\" name=\"$name" . "[]\" value=\"$opt_value\" checked=\"checked\" />"
173  . "<span>$opt_label</span>"
174  . "</li>";
175  } else {
176  $expected .= ""
177  . "<li>"
178  . "<input type=\"checkbox\" name=\"$name" . "[]\" value=\"$opt_value\" />"
179  . "<span>$opt_label</span>"
180  . "</li>";
181  }
182  }
183 
184  $expected .= ""
185  . "</ul>"
186  . "<div class=\"help-block\">$byline</div>"
187  . "</div>"
188  . "</div>";
189  $this->assertHTMLEquals($expected, $r->render($ms));
190  }
191 
192  public function testRenderDisabled(): void
193  {
194  $r = $this->getDefaultRenderer();
195  $f = $this->buildFactory();
196  $options = array(
197  "1" => "Pick 1",
198  "2" => "Pick 2"
199  );
200  $ms = $f->multiSelect("label", $options, "byline")
201  ->withNameFrom($this->name_source)->withDisabled(true);
202 
203  $name = $ms->getName();
204  $label = $ms->getLabel();
205  $byline = $ms->getByline();
206  $expected = ""
207  . "<div class=\"form-group row\">"
208  . "<label class=\"control-label col-sm-4 col-md-3 col-lg-2\">$label</label>"
209  . "<div class=\"col-sm-8 col-md-9 col-lg-10\">"
210  . "<ul class=\"il-input-multiselect\" id=\"id_1\">";
211 
212  foreach ($options as $opt_value => $opt_label) {
213  $expected .= ""
214  . "<li>"
215  . "<input type=\"checkbox\" name=\"$name" . "[]\" value=\"$opt_value\" disabled=\"disabled\" />"
216  . "<span>$opt_label</span>"
217  . "</li>";
218  }
219 
220  $expected .= ""
221  . "</ul>"
222  . "<div class=\"help-block\">$byline</div>"
223  . "</div>"
224  . "</div>";
225  $this->assertHTMLEquals($expected, $r->render($ms));
226  }
227 
228  public function testRenderNoOptions(): void
229  {
230  $r = $this->getDefaultRenderer();
231  $f = $this->buildFactory();
232  $options = [];
233  $ms = $f->multiSelect("label", $options, "byline")
234  ->withNameFrom($this->name_source)->withDisabled(true);
235 
236  $name = $ms->getName();
237  $label = $ms->getLabel();
238  $byline = $ms->getByline();
239  $expected = ""
240  . "<div class=\"form-group row\">"
241  . "<label class=\"control-label col-sm-4 col-md-3 col-lg-2\">$label</label>"
242  . "<div class=\"col-sm-8 col-md-9 col-lg-10\">"
243  . "<ul class=\"il-input-multiselect\" id=\"id_1\">"
244  . "<li>-</li>"
245  . "</ul>"
246  . "<div class=\"help-block\">$byline</div>"
247  . "</div>"
248  . "</div>";
249 
250  $this->assertHTMLEquals($expected, $r->render($ms));
251  }
252 }
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
Definition: Base.php:355
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class Factory.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:29
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Checkbox.php:21
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
Definition: Base.php:427
has(string $class_name)
if($format !==null) $name
Definition: metadata.php:247
Provides common functionality for UI tests.
Definition: Base.php:298
Describes a source for input names.
Definition: NameSource.php:26