ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
SwitchableGroupInputTest.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2018 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 require_once(__DIR__ . "/../../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ . "/../../../Base.php");
7 
13 use \ILIAS\Data;
15 
16 class Group1 extends Group
17 {
18 };
19 class Group2 extends Group
20 {
21 };
22 
24 {
28  private $refinery;
29 
30  public function setUp() : void
31  {
32  $this->child1 = $this->createMock(Group1::class);
33  $this->child2 = $this->createMock(Group2::class);
34  $this->data_factory = new Data\Factory();
35  $this->refinery = new ILIAS\Refinery\Factory($this->data_factory, $this->createMock(\ilLanguage::class));
36  $this->lng = $this->createMock(\ilLanguage::class);
37 
38  $this->child1
39  ->method("withNameFrom")
40  ->willReturn($this->child1);
41  $this->child2
42  ->method("withNameFrom")
43  ->willReturn($this->child2);
44 
45  $this->switchable_group = (new SwitchableGroup(
46  $this->data_factory,
47  $this->refinery,
48  $this->lng,
49  ["child1" => $this->child1, "child2" => $this->child2],
50  "LABEL",
51  "BYLINE"
52  ))->withNameFrom(new class implements NameSource {
53  public function getNewName()
54  {
55  return "name0";
56  }
57  });
58  }
59 
60  protected function buildFactory()
61  {
63  new SignalGenerator(),
64  $this->data_factory,
65  $this->refinery,
66  $this->lng
67  );
68  }
69 
71  {
72  $this->assertNotSame($this->child1, $this->child2);
73 
74  $this->child1
75  ->expects($this->once())
76  ->method("withDisabled")
77  ->with(true)
78  ->willReturn($this->child2);
79  $this->child2
80  ->expects($this->once())
81  ->method("withDisabled")
82  ->with(true)
83  ->willReturn($this->child1);
84 
85  $new_group = $this->switchable_group->withDisabled(true);
86 
87  $this->assertEquals(["child1" => $this->child2, "child2" => $this->child1], $new_group->getInputs());
88  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
89  $this->assertNotSame($this->switchable_group, $new_group);
90  }
91 
93  {
94  $this->assertNotSame($this->child1, $this->child2);
95 
96  $this->child1
97  ->expects($this->never())
98  ->method("withRequired");
99  $this->child2
100  ->expects($this->never())
101  ->method("withRequired");
102 
103  $new_group = $this->switchable_group->withRequired(true);
104 
105  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
106  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
107  $this->assertNotSame($this->switchable_group, $new_group);
108  }
109 
111  {
112  $this->expectException(\InvalidArgumentException::class);
113 
114  $this->group = new SwitchableGroup(
115  $this->data_factory,
116  $this->refinery,
117  $this->lng,
118  [$this->createMock(Input::class)],
119  "LABEL",
120  "BYLINE"
121  );
122  }
123 
125  {
126  $this->assertNotSame($this->child1, $this->child2);
127 
128  $this->child1
129  ->expects($this->never())
130  ->method("withValue");
131  $this->child2
132  ->expects($this->once())
133  ->method("withValue")
134  ->with(2)
135  ->willReturn($this->child2);
136 
137  $new_group = $this->switchable_group->withValue(["child2", 2]);
138 
139  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
140  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
141  $this->assertNotSame($this->switchable_group, $new_group);
142  }
143 
145  {
146  $this->expectException(\InvalidArgumentException::class);
147 
148  $new_group = $this->switchable_group->withValue(null);
149  }
150 
152  {
153  $this->expectException(\InvalidArgumentException::class);
154 
155  $new_group = $this->switchable_group->withValue([1, 2, 3]);
156  }
157 
159  {
160  $new_group = $this->switchable_group->withValue("child1");
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  $new_group = $this->switchable_group->withValue("child3");
171  }
172 
174  {
175  $this->assertNotSame($this->child1, $this->child2);
176 
177  $this->child1
178  ->expects($this->once())
179  ->method("getValue")
180  ->with()
181  ->willReturn("one");
182  $this->child2
183  ->expects($this->never())
184  ->method("getValue");
185 
186  $vals = $this->switchable_group->withValue("child1")->getValue();
187 
188  $this->assertEquals(["child1", "one"], $vals);
189  }
190 
192  {
193  $this->assertNotSame($this->child1, $this->child2);
194 
195  $input_data = $this->createMock(InputData::class);
196 
197  $input_data
198  ->expects($this->once())
199  ->method("getOr")
200  ->with("name0")
201  ->willReturn("child1");
202 
203  $this->child1
204  ->expects($this->once())
205  ->method("withInput")
206  ->with($input_data)
207  ->willReturn($this->child1);
208  $this->child1
209  ->expects($this->once())
210  ->method("getValue")
211  ->with()
212  ->willReturn("one");
213  $this->child1
214  ->expects($this->once())
215  ->method("getContent")
216  ->with()
217  ->willReturn($this->data_factory->ok("one"));
218  $this->child2
219  ->expects($this->never())
220  ->method("withInput");
221  $this->child2
222  ->expects($this->never())
223  ->method("getContent");
224 
225  $called = false;
226  $new_group = $this->switchable_group
227  ->withAdditionalTransformation($this->refinery->custom()->transformation(function ($v) use (&$called) {
228  $called = true;
229  $this->assertEquals(["child1", "one"], $v);
230  return "result";
231  }))
232  ->withInput($input_data);
233 
234  $this->assertTrue($called);
235  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
236  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
237  $this->assertNotSame($this->switchable_group, $new_group);
238  $this->assertEquals($this->data_factory->ok("result"), $new_group->getContent());
239  }
240 
242  {
243  $this->assertNotSame($this->child1, $this->child2);
244 
245  $input_data = $this->createMock(InputData::class);
246 
247  $input_data
248  ->expects($this->once())
249  ->method("getOr")
250  ->with("name0")
251  ->willReturn("child2");
252 
253  $this->child1
254  ->expects($this->never())
255  ->method("withInput");
256  $this->child1
257  ->expects($this->never())
258  ->method("getContent");
259  $this->child2
260  ->expects($this->once())
261  ->method("withInput")
262  ->with($input_data)
263  ->willReturn($this->child2);
264  $this->child2
265  ->expects($this->once())
266  ->method("getContent")
267  ->willReturn($this->data_factory->error(""));
268 
269  $i18n = "THERE IS SOME ERROR IN THIS GROUP";
270  $this->lng
271  ->expects($this->once())
272  ->method("txt")
273  ->with("ui_error_in_group")
274  ->willReturn($i18n);
275 
276  $new_group = $this->switchable_group
277  ->withAdditionalTransformation($this->refinery->custom()->transformation(function ($v) {
278  $this->assertFalse(true, "This should not happen.");
279  }))
280  ->withInput($input_data);
281 
282  $this->assertEquals(["child1" => $this->child1, "child2" => $this->child2], $new_group->getInputs());
283  $this->assertInstanceOf(SwitchableGroup::class, $new_group);
284  $this->assertNotSame($this->switchable_group, $new_group);
285  $this->assertTrue($new_group->getContent()->isError());
286  }
287 
288  public function testErrorIsI18NOnError()
289  {
290  $this->assertNotSame($this->child1, $this->child2);
291 
292  $input_data = $this->createMock(InputData::class);
293 
294  $input_data
295  ->expects($this->once())
296  ->method("getOr")
297  ->with("name0")
298  ->willReturn("child2");
299 
300  $this->child2
301  ->method("withInput")
302  ->willReturn($this->child2);
303  $this->child2
304  ->method("getContent")
305  ->willReturn($this->data_factory->error(""));
306 
307  $i18n = "THERE IS SOME ERROR IN THIS GROUP";
308  $this->lng
309  ->expects($this->once())
310  ->method("txt")
311  ->with("ui_error_in_group")
312  ->willReturn($i18n);
313 
314  $switchable_group = $this->switchable_group
315  ->withInput($input_data);
316 
317  $this->assertTrue($switchable_group->getContent()->isError());
318  $this->assertEquals($i18n, $switchable_group->getContent()->error());
319  }
320 
321 
323  {
324  $this->expectException(\InvalidArgumentException::class);
325 
326  $input_data = $this->createMock(InputData::class);
327 
328  $input_data
329  ->expects($this->once())
330  ->method("getOr")
331  ->with("name0")
332  ->willReturn(123);
333 
334  $this->child1
335  ->expects($this->never())
336  ->method("withInput");
337  $this->child1
338  ->expects($this->never())
339  ->method("getContent");
340  $this->child2
341  ->expects($this->never())
342  ->method("withInput");
343  $this->child2
344  ->expects($this->never())
345  ->method("getContent");
346 
347  $new_group = $this->switchable_group
348  ->withAdditionalTransformation($this->refinery->custom()->transformation(function ($v) use (&$called) {
349  $this->assertFalse(true, "This should not happen.");
350  }))
351  ->withInput($input_data);
352  }
353 
354  public function testRender()
355  {
356  $f = $this->buildFactory();
357  $label = "label";
358  $byline = "byline";
359 
360  $group1 = $f->group([
361  "field_1" => $f->text("f", "some field")
362  ]);
363  $group2 = $f->group([
364  "field_2" => $f->text("f2", "some other field")
365  ]);
366 
367  $sg = $f->switchableGroup(
368  [
369  "g1" => $group1,
370  "g2" => $group2
371  ],
372  $label,
373  $byline
374  );
375 
376  $r = $this->getDefaultRenderer();
377  $html = $r->render($sg);
378  $expected = <<<EOT
379  <div class="form-group row">
380  <label for="" class="control-label col-sm-3">label</label>
381  <div class="col-sm-9">
382  <div id="id_1" class="il-input-radio">
383  <div class="form-control form-control-sm il-input-radiooption">
384  <input type="radio" id="id_1_g1_opt" name="" value="g1" />
385  <label for="id_1_g1_opt"></label>
386  <div class="form-group row">
387  <label for="" class="control-label col-sm-3">f</label>
388  <div class="col-sm-9">
389  <div class="help-block">some field</div>
390  </div>
391  </div>
392  </div>
393  <div class="form-control form-control-sm il-input-radiooption">
394  <input type="radio" id="id_1_g2_opt" name="" value="g2" />
395  <label for="id_1_g2_opt"></label>
396  <div class="form-group row">
397  <label for="" class="control-label col-sm-3">f2</label>
398  <div class="col-sm-9">
399  <div class="help-block">some other field</div>
400  </div>
401  </div>
402  </div>
403  </div>
404  <div class="help-block">byline</div>
405  </div>
406  </div>
407 EOT;
408  $this->assertEquals(
409  $this->brutallyTrimHTML($expected),
410  $this->brutallyTrimHTML($html)
411  );
412  return $sg;
413  }
414 
418  public function testRenderWithValue($sg)
419  {
420  $r = $this->getDefaultRenderer();
421  $html = $r->render($sg->withValue('g2'));
422  $expected = <<<EOT
423  <div class="form-group row">
424  <label for="" class="control-label col-sm-3">label</label>
425  <div class="col-sm-9">
426  <div id="id_1" class="il-input-radio">
427  <div class="form-control form-control-sm il-input-radiooption">
428  <input type="radio" id="id_1_g1_opt" name="" value="g1" />
429  <label for="id_1_g1_opt"></label>
430  <div class="form-group row">
431  <label for="" class="control-label col-sm-3">f</label>
432  <div class="col-sm-9">
433  <div class="help-block">some field</div>
434  </div>
435  </div>
436  </div>
437  <div class="form-control form-control-sm il-input-radiooption">
438  <input type="radio" id="id_1_g2_opt" name="" value="g2" checked="checked" />
439  <label for="id_1_g2_opt"></label>
440  <div class="form-group row">
441  <label for="" class="control-label col-sm-3">f2</label>
442  <div class="col-sm-9">
443  <div class="help-block">some other field</div>
444  </div>
445  </div>
446  </div>
447  </div>
448  <div class="help-block">byline</div>
449  </div>
450  </div>
451 EOT;
452  $this->assertEquals(
453  $this->brutallyTrimHTML($expected),
454  $this->brutallyTrimHTML($html)
455  );
456  }
457 
458  public function testRenderWithValueByIndex()
459  {
460  $f = $this->buildFactory();
461  $label = "label";
462  $byline = "byline";
463 
464  $group1 = $f->group([
465  "field_1" => $f->text("f", "some field")
466  ]);
467  $group2 = $f->group([
468  "field_2" => $f->text("f2", "some other field")
469  ]);
470 
471  //construct without string-key:
472  $sg = $f->switchableGroup([$group1,$group2], $label, $byline);
473 
474  $r = $this->getDefaultRenderer();
475  $html = $r->render($sg->withValue('1'));
476 
477  $expected = <<<EOT
478  <div class="form-group row">
479  <label for="" class="control-label col-sm-3">label</label>
480  <div class="col-sm-9">
481  <div id="id_1" class="il-input-radio">
482  <div class="form-control form-control-sm il-input-radiooption">
483  <input type="radio" id="id_1_0_opt" name="" value="0" />
484  <label for="id_1_0_opt"></label>
485  <div class="form-group row">
486  <label for="" class="control-label col-sm-3">f</label>
487  <div class="col-sm-9">
488  <div class="help-block">some field</div>
489  </div>
490  </div>
491  </div>
492  <div class="form-control form-control-sm il-input-radiooption">
493  <input type="radio" id="id_1_1_opt" name="" value="1" checked="checked" />
494  <label for="id_1_1_opt"></label>
495  <div class="form-group row">
496  <label for="" class="control-label col-sm-3">f2</label>
497  <div class="col-sm-9">
498  <div class="help-block">some other field</div>
499  </div>
500  </div>
501  </div>
502  </div>
503  <div class="help-block">byline</div>
504  </div>
505  </div>
506 EOT;
507  $this->assertEquals(
508  $this->brutallyTrimHTML($expected),
509  $this->brutallyTrimHTML($html)
510  );
511  }
512 }
This implements the group input.
Definition: Group.php:19
Provides common functionality for UI tests.
Definition: Base.php:224
Builds data types.
Definition: Factory.php:19
Describes a source for input names.
Definition: NameSource.php:10