ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SwitchableGroupInputTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ . "/../../../Base.php");
23 require_once(__DIR__ . "/CommonFieldRendering.php");
24 
30 use ILIAS\Data;
35 
36 class Group1 extends Group
37 {
38 }
39 
40 class Group2 extends Group
41 {
42 }
43 
45 {
47 
51  protected $child1;
52 
56  protected $child2;
57 
61  protected $nested_child;
62 
66  protected $lng;
67 
68  protected Data\Factory $data_factory;
69  protected Refinery $refinery;
72 
73  public function setUp(): void
74  {
75  $this->nested_child = $this->createMock(I\Input\Field\FormInputInternal::class);
76  $this->child1 = $this->createMock(Group1::class);
77  $this->child2 = $this->createMock(Group2::class);
78  $this->data_factory = new Data\Factory();
79  $this->refinery = new Refinery($this->data_factory, $this->createMock(ILIAS\Language\Language::class));
80  $this->lng = $this->createMock(ILIAS\Language\Language::class);
81 
82  $this->nested_child
83  ->method("withNameFrom")
84  ->willReturn($this->nested_child);
85 
86  $this->child1
87  ->method("withNameFrom")
88  ->willReturn($this->child1);
89  $this->child1
90  ->method("getInputs")
91  ->willReturn([$this->nested_child]);
92 
93  $this->child2
94  ->method("withNameFrom")
95  ->willReturn($this->child2);
96  $this->child2
97  ->method("getInputs")
98  ->willReturn([$this->nested_child]);
99 
100  $this->switchable_group = (new SwitchableGroup(
101  $this->data_factory,
102  $this->refinery,
103  $this->lng,
104  ["child1" => $this->child1, "child2" => $this->child2],
105  "LABEL",
106  "BYLINE"
107  ))->withNameFrom(new class () implements NameSource {
108  public function getNewName(): string
109  {
110  return "name0";
111  }
112  });
113  }
114 
115  protected function buildFactory(): I\Input\Field\Factory
116  {
117  return new I\Input\Field\Factory(
118  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
119  new SignalGenerator(),
120  $this->data_factory,
121  $this->refinery,
122  $this->lng
123  );
124  }
125 
126  public function testWithDisabledDisablesChildren(): void
127  {
128  $this->assertNotSame($this->child1, $this->child2);
129 
130  $this->child1
131  ->expects($this->once())
132  ->method("withDisabled")
133  ->with(true)
134  ->willReturn($this->child2);
135  $this->child2
136  ->expects($this->once())
137  ->method("withDisabled")
138  ->with(true)
139  ->willReturn($this->child1);
140 
141  $new_group = $this->switchable_group->withDisabled(true);
142 
143  $this->assertEquals(["child1" => $this->child2, "child2" => $this->child1], $new_group->getInputs());
144  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
145  $this->assertNotSame($this->switchable_group, $new_group);
146  }
147 
148  public function testWithRequiredDoesNotRequire(): void
149  {
150  $this->assertNotSame($this->child1, $this->child2);
151 
152  $this->child1
153  ->expects($this->never())
154  ->method("withRequired");
155  $this->child2
156  ->expects($this->never())
157  ->method("withRequired");
158 
159  $new_group = $this->switchable_group->withRequired(true);
160 
161  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
162  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
163  $this->assertNotSame($this->switchable_group, $new_group);
164  }
165 
167  {
168  $this->expectException(InvalidArgumentException::class);
169 
170  $this->group = new SwitchableGroup(
171  $this->data_factory,
172  $this->refinery,
173  $this->lng,
174  [$this->createMock(I\Input\Field\FormInput::class)],
175  "LABEL",
176  "BYLINE"
177  );
178  }
179 
181  {
182  $this->assertNotSame($this->child1, $this->child2);
183 
184  $this->child1
185  ->expects($this->never())
186  ->method("withValue");
187  $this->child2
188  ->expects($this->once())
189  ->method("withValue")
190  ->with(2)
191  ->willReturn($this->child2);
192 
193  $new_group = $this->switchable_group->withValue(["child2", 2]);
194 
195  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
196  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
197  $this->assertNotSame($this->switchable_group, $new_group);
198  }
199 
201  {
202  $this->expectException(InvalidArgumentException::class);
203  $this->switchable_group->withValue(null);
204  }
205 
207  {
208  $this->expectException(InvalidArgumentException::class);
209  $this->switchable_group->withValue([1, 2, 3]);
210  }
211 
212  public function testGroupOnlyDoesAcceptKeyOnly(): void
213  {
214  $new_group = $this->switchable_group->withValue("child1");
215  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
216  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
217  $this->assertNotSame($this->switchable_group, $new_group);
218  }
219 
220  public function testGroupOnlyDoesNotAcceptInvalidKey(): void
221  {
222  $this->expectException(InvalidArgumentException::class);
223  $this->switchable_group->withValue("child3");
224  }
225 
226  public function testGroupForwardsValuesOnGetValue(): void
227  {
228  $this->assertNotSame($this->child1, $this->child2);
229 
230  $this->child1
231  ->expects($this->once())
232  ->method("getValue")
233  ->with()
234  ->willReturn("one");
235  $this->child2
236  ->expects($this->never())
237  ->method("getValue");
238 
239  $vals = $this->switchable_group->withValue("child1")->getValue();
240 
241  $this->assertEquals(["child1", "one"], $vals);
242  }
243 
245  {
246  $this->assertNotSame($this->child1, $this->child2);
247 
248  $input_data = $this->createMock(InputData::class);
249 
250  $input_data
251  ->expects($this->once())
252  ->method("getOr")
253  ->with("name0")
254  ->willReturn("child1");
255 
256  $expected_result = $this->data_factory->ok("one");
257 
258  $this->child1
259  ->expects($this->once())
260  ->method("withInput")
261  ->with($input_data)
262  ->willReturn($this->child1);
263  $this->child1
264  ->expects($this->once())
265  ->method("getContent")
266  ->with()
267  ->willReturn($expected_result);
268  $this->nested_child
269  ->expects($this->once())
270  ->method("getContent")
271  ->with()
272  ->willReturn($expected_result);
273  $this->child2
274  ->expects($this->never())
275  ->method("withInput");
276  $this->child2
277  ->expects($this->never())
278  ->method("getContent");
279 
280  $called = false;
281  $new_group = $this->switchable_group
282  ->withAdditionalTransformation($this->refinery->custom()->transformation(function ($v) use (&$called): string {
283  $called = true;
284  $this->assertEquals(["child1", ["one"]], $v);
285  return "result";
286  }))
287  ->withInput($input_data);
288 
289  $this->assertTrue($called);
290  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
291  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
292  $this->assertNotSame($this->switchable_group, $new_group);
293  $this->assertEquals($this->data_factory->ok("result"), $new_group->getContent());
294  }
295 
297  {
298  $this->assertNotSame($this->child1, $this->child2);
299 
300  $input_data = $this->createMock(InputData::class);
301 
302  $input_data
303  ->expects($this->once())
304  ->method("getOr")
305  ->with("name0")
306  ->willReturn("child2");
307 
308  $this->child1
309  ->expects($this->never())
310  ->method("withInput");
311  $this->child1
312  ->expects($this->never())
313  ->method("getContent");
314  $this->child2
315  ->expects($this->once())
316  ->method("withInput")
317  ->with($input_data)
318  ->willReturn($this->child2);
319  $this->child2
320  ->expects($this->once())
321  ->method("getContent")
322  ->willReturn($this->data_factory->error(""));
323 
324  $i18n = "THERE IS SOME ERROR IN THIS GROUP";
325  $this->lng
326  ->expects($this->once())
327  ->method("txt")
328  ->with("ui_error_in_group")
329  ->willReturn($i18n);
330 
331  $new_group = $this->switchable_group
332  ->withAdditionalTransformation($this->refinery->custom()->transformation(function (): void {
333  $this->fail("This should not happen.");
334  }))
335  ->withInput($input_data);
336 
337  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
338  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
339  $this->assertNotSame($this->switchable_group, $new_group);
340  $this->assertTrue($new_group->getContent()->isError());
341  }
342 
343  public function testErrorIsI18NOnError(): void
344  {
345  $this->assertNotSame($this->child1, $this->child2);
346 
347  $input_data = $this->createMock(InputData::class);
348 
349  $input_data
350  ->expects($this->once())
351  ->method("getOr")
352  ->with("name0")
353  ->willReturn("child2");
354 
355  $this->child2
356  ->method("withInput")
357  ->willReturn($this->child2);
358  $this->child2
359  ->method("getContent")
360  ->willReturn($this->data_factory->error(""));
361 
362  $i18n = "THERE IS SOME ERROR IN THIS GROUP";
363  $this->lng
364  ->expects($this->once())
365  ->method("txt")
366  ->with("ui_error_in_group")
367  ->willReturn($i18n);
368 
369  $switchable_group = $this->switchable_group
370  ->withInput($input_data);
371 
372  $this->assertTrue($switchable_group->getContent()->isError());
373  $this->assertEquals($i18n, $switchable_group->getContent()->error());
374  }
375 
377  {
378  $this->expectException(InvalidArgumentException::class);
379 
380  $input_data = $this->createMock(InputData::class);
381 
382  $input_data
383  ->expects($this->once())
384  ->method("getOr")
385  ->with("name0")
386  ->willReturn(123);
387 
388  $this->child1
389  ->expects($this->never())
390  ->method("withInput");
391  $this->child1
392  ->expects($this->never())
393  ->method("getContent");
394  $this->child2
395  ->expects($this->never())
396  ->method("withInput");
397  $this->child2
398  ->expects($this->never())
399  ->method("getContent");
400 
401  $this->switchable_group
402  ->withAdditionalTransformation($this->refinery->custom()->transformation(function () use (&$called): void {
403  $this->fail("This should not happen.");
404  }))
405  ->withInput($input_data);
406  }
407 
408  public function testRender(): SG
409  {
410  $f = $this->buildFactory();
411  $label = "label";
412  $byline = "byline";
413 
414  $group1 = $f->group([
415  "field_1" => $f->text("f", "some field")
416  ]);
417  $group2 = $f->group([
418  "field_2" => $f->text("f2", "some other field")
419  ]);
420 
421  $sg = $f->switchableGroup(
422  [
423  "g1" => $group1,
424  "g2" => $group2
425  ],
426  $label,
427  $byline
428  );
429 
430  $expected = <<<EOT
431 <fieldset class="c-input" data-il-ui-component="switchable-group-field-input" data-il-ui-input-name="" tabindex="0">
432  <label>label</label>
433  <div class="c-input__field">
434  <fieldset class="c-input" data-il-ui-component="group-field-input" data-il-ui-input-name="">
435  <label for="id_1">
436  <input type="radio" id="id_1" value="g1" />
437  <span></span>
438  </label>
439  <div class="c-input__field">
440  <fieldset class="c-input" data-il-ui-component="text-field-input" data-il-ui-input-name=""><label
441  for="id_2">f</label>
442  <div class="c-input__field"><input id="id_2" type="text" class="c-field-text" /></div>
443  <div class="c-input__help-byline">some field</div>
444  </fieldset>
445  </div>
446  </fieldset>
447  <fieldset class="c-input" data-il-ui-component="group-field-input" data-il-ui-input-name="">
448  <label for="id_3">
449  <input type="radio" id="id_3" value="g2" />
450  <span></span>
451  </label>
452  <div class="c-input__field">
453  <fieldset class="c-input" data-il-ui-component="text-field-input" data-il-ui-input-name=""><label
454  for="id_4">f2</label>
455  <div class="c-input__field"><input id="id_4" type="text" class="c-field-text" /></div>
456  <div class="c-input__help-byline">some other field</div>
457  </fieldset>
458  </div>
459  </fieldset>
460  </div>
461  <div class="c-input__help-byline">byline</div>
462 </fieldset>
463 EOT;
464  $this->assertEquals(
465  $this->brutallyTrimHTML($expected),
466  $this->render($sg)
467  );
468  return $sg;
469  }
470 
474  public function testRenderWithValue(SG $sg): void
475  {
476  $r = $this->getDefaultRenderer();
477  $html = $this->render($sg->withValue('g2'));
478  $expected = '<label for="id_3"><input type="radio" id="id_3" value="g2" checked="checked" />';
479  $this->assertStringContainsString($expected, $this->render($sg->withValue('g2')));
480  }
481 
482  public function testRenderWithValueByIndex(): void
483  {
484  $f = $this->buildFactory();
485  $label = "label";
486  $byline = "byline";
487 
488  $group1 = $f->group([
489  "field_1" => $f->text("f", "some field")
490  ]);
491  $group2 = $f->group([
492  "field_2" => $f->text("f2", "some other field")
493  ]);
494  $empty_group_title = 'empty group, the title';
495  $empty_group_byline = 'empty group, the byline';
496  $group3 = $f->group([], $empty_group_title, $empty_group_byline);
497 
498  $sg = $f->switchableGroup([$group1, $group2, $group3], $label, $byline);
499 
500  $expected = '<label for="id_3"><input type="radio" id="id_3" value="1" checked="checked" />';
501  $this->assertStringContainsString($expected, $this->render($sg->withValue('1')));
502  }
503 
504  public function testCommonRendering(): void
505  {
506  $f = $this->getFieldFactory();
507  $label = "label";
508 
509  $group1 = $f->group([
510  "field_1" => $f->text("f")
511  ]);
512  $group2 = $f->group([
513  "field_2" => $f->text("f2")
514  ]);
515 
516  $sg = $f->switchableGroup(
517  [
518  "g1" => $group1,
519  "g2" => $group2
520  ],
521  $label
522  )->withNameFrom((new DefNamesource()));
523 
524  $this->testWithError($sg);
525  $this->testWithNoByline($sg);
526  $this->testWithRequired($sg);
527  $this->testWithDisabled($sg);
528  $this->testWithAdditionalOnloadCodeRendersId($sg);
529  }
530 }
Interface Observer Contains several chained tasks and infos about them.
ILIAS UI Component Input Field Group $switchable_group
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
withNameFrom(NameSource $source, ?string $parent_name=null)
Definition: Input.php:200
Builds data types.
Definition: Factory.php:35
Describes a source for input names.
Definition: NameSource.php:26
$r