5 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../../Base.php");
32 $this->child1 = $this->createMock(Group1::class);
33 $this->child2 = $this->createMock(Group2::class);
34 $this->data_factory =
new Data\Factory();
36 $this->lng = $this->createMock(\ilLanguage::class);
39 ->method(
"withNameFrom")
40 ->willReturn($this->child1);
42 ->method(
"withNameFrom")
43 ->willReturn($this->child2);
49 [
"child1" => $this->child1,
"child2" => $this->child2],
52 ))->withNameFrom(
new class implements
NameSource {
53 public function getNewName()
72 $this->assertNotSame($this->child1, $this->child2);
75 ->expects($this->once())
76 ->method(
"withDisabled")
78 ->willReturn($this->child2);
80 ->expects($this->once())
81 ->method(
"withDisabled")
83 ->willReturn($this->child1);
85 $new_group = $this->switchable_group->withDisabled(
true);
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);
94 $this->assertNotSame($this->child1, $this->child2);
97 ->expects($this->never())
98 ->method(
"withRequired");
100 ->expects($this->never())
101 ->method(
"withRequired");
103 $new_group = $this->switchable_group->withRequired(
true);
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);
112 $this->expectException(\InvalidArgumentException::class);
118 [$this->createMock(Input::class)],
126 $this->assertNotSame($this->child1, $this->child2);
129 ->expects($this->never())
130 ->method(
"withValue");
132 ->expects($this->once())
133 ->method(
"withValue")
135 ->willReturn($this->child2);
137 $new_group = $this->switchable_group->withValue([
"child2", 2]);
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);
146 $this->expectException(\InvalidArgumentException::class);
148 $new_group = $this->switchable_group->withValue(null);
153 $this->expectException(\InvalidArgumentException::class);
155 $new_group = $this->switchable_group->withValue([1, 2, 3]);
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);
168 $this->expectException(\InvalidArgumentException::class);
170 $new_group = $this->switchable_group->withValue(
"child3");
175 $this->assertNotSame($this->child1, $this->child2);
178 ->expects($this->once())
183 ->expects($this->never())
184 ->method(
"getValue");
186 $vals = $this->switchable_group->withValue(
"child1")->getValue();
188 $this->assertEquals([
"child1",
"one"], $vals);
193 $this->assertNotSame($this->child1, $this->child2);
195 $input_data = $this->createMock(InputData::class);
198 ->expects($this->once())
201 ->willReturn(
"child1");
204 ->expects($this->once())
205 ->method(
"withInput")
207 ->willReturn($this->child1);
209 ->expects($this->once())
214 ->expects($this->once())
215 ->method(
"getContent")
217 ->willReturn($this->data_factory->ok(
"one"));
219 ->expects($this->never())
220 ->method(
"withInput");
222 ->expects($this->never())
223 ->method(
"getContent");
226 $new_group = $this->switchable_group
227 ->withAdditionalTransformation($this->refinery->custom()->transformation(
function ($v) use (&$called) {
229 $this->assertEquals([
"child1",
"one"], $v);
232 ->withInput($input_data);
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());
243 $this->assertNotSame($this->child1, $this->child2);
245 $input_data = $this->createMock(InputData::class);
248 ->expects($this->once())
251 ->willReturn(
"child2");
254 ->expects($this->never())
255 ->method(
"withInput");
257 ->expects($this->never())
258 ->method(
"getContent");
260 ->expects($this->once())
261 ->method(
"withInput")
263 ->willReturn($this->child2);
265 ->expects($this->once())
266 ->method(
"getContent")
267 ->willReturn($this->data_factory->error(
""));
269 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
271 ->expects($this->once())
273 ->with(
"ui_error_in_group")
276 $new_group = $this->switchable_group
277 ->withAdditionalTransformation($this->refinery->custom()->transformation(
function ($v) {
278 $this->assertFalse(
true,
"This should not happen.");
280 ->withInput($input_data);
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());
290 $this->assertNotSame($this->child1, $this->child2);
292 $input_data = $this->createMock(InputData::class);
295 ->expects($this->once())
298 ->willReturn(
"child2");
301 ->method(
"withInput")
302 ->willReturn($this->child2);
304 ->method(
"getContent")
305 ->willReturn($this->data_factory->error(
""));
307 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
309 ->expects($this->once())
311 ->with(
"ui_error_in_group")
314 $switchable_group = $this->switchable_group
315 ->withInput($input_data);
317 $this->assertTrue($switchable_group->getContent()->isError());
318 $this->assertEquals($i18n, $switchable_group->getContent()->error());
324 $this->expectException(\InvalidArgumentException::class);
326 $input_data = $this->createMock(InputData::class);
329 ->expects($this->once())
335 ->expects($this->never())
336 ->method(
"withInput");
338 ->expects($this->never())
339 ->method(
"getContent");
341 ->expects($this->never())
342 ->method(
"withInput");
344 ->expects($this->never())
345 ->method(
"getContent");
347 $new_group = $this->switchable_group
348 ->withAdditionalTransformation($this->refinery->custom()->transformation(
function ($v) use (&$called) {
349 $this->assertFalse(
true,
"This should not happen.");
351 ->withInput($input_data);
356 $f = $this->buildFactory();
360 $group1 =
$f->group([
361 "field_1" =>
$f->text(
"f",
"some field")
363 $group2 =
$f->group([
364 "field_2" =>
$f->text(
"f2",
"some other field")
367 $sg =
$f->switchableGroup(
376 $r = $this->getDefaultRenderer();
377 $html = $r->render($sg);
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>
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>
404 <div
class=
"help-block">byline</div>
409 $this->brutallyTrimHTML($expected),
410 $this->brutallyTrimHTML($html)
420 $r = $this->getDefaultRenderer();
421 $html = $r->render($sg->withValue(
'g2'));
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>
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>
448 <div
class=
"help-block">byline</div>
453 $this->brutallyTrimHTML($expected),
454 $this->brutallyTrimHTML($html)
460 $f = $this->buildFactory();
464 $group1 =
$f->group([
465 "field_1" =>
$f->text(
"f",
"some field")
467 $group2 =
$f->group([
468 "field_2" =>
$f->text(
"f2",
"some other field")
472 $sg =
$f->switchableGroup([$group1,$group2], $label, $byline);
474 $r = $this->getDefaultRenderer();
475 $html = $r->render($sg->withValue(
'1'));
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>
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>
503 <div
class=
"help-block">byline</div>
508 $this->brutallyTrimHTML($expected),
509 $this->brutallyTrimHTML($html)
Provides common functionality for UI tests.