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
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" /><label
for=
"id_1_g1_opt"></label>
385 <div
class=
"form-group row">
386 <label
for=
"id_2" class=
"control-label col-sm-3">f</label>
387 <div
class=
"col-sm-9">
388 <input
id=
"id_2" type=
"text" name=
"" class=
"form-control form-control-sm" />
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" /><label
for=
"id_1_g2_opt"></label>
395 <div
class=
"form-group row">
396 <label
for=
"id_3" class=
"control-label col-sm-3">f2</label>
397 <div
class=
"col-sm-9">
398 <input
id=
"id_3" type=
"text" name=
"" class=
"form-control form-control-sm" />
399 <div
class=
"help-block">some other field</div>
404 <div
class=
"help-block">byline</div>
410 $this->brutallyTrimHTML($expected),
411 $this->brutallyTrimHTML($html)
421 $r = $this->getDefaultRenderer();
422 $html = $r->render($sg->withValue(
'g2'));
424 <div
class=
"form-group row">
425 <label
class=
"control-label col-sm-3">label</label>
426 <div
class=
"col-sm-9">
427 <div
id=
"id_1" class=
"il-input-radio">
428 <div
class=
"form-control form-control-sm il-input-radiooption">
429 <input type=
"radio" id=
"id_1_g1_opt" name=
"" value=
"g1" /><label
for=
"id_1_g1_opt"></label>
430 <div
class=
"form-group row">
431 <label
for=
"id_2" class=
"control-label col-sm-3">f</label>
432 <div
class=
"col-sm-9">
433 <input
id=
"id_2" type=
"text" name=
"" class=
"form-control form-control-sm" />
434 <div
class=
"help-block">some field</div>
438 <div
class=
"form-control form-control-sm il-input-radiooption">
439 <input type=
"radio" id=
"id_1_g2_opt" name=
"" value=
"g2" checked=
"checked" /><label
for=
"id_1_g2_opt"></label>
440 <div
class=
"form-group row">
441 <label
for=
"id_3" class=
"control-label col-sm-3">f2</label>
442 <div
class=
"col-sm-9">
443 <input
id=
"id_3" type=
"text" name=
"" class=
"form-control form-control-sm" />
444 <div
class=
"help-block">some other field</div>
449 <div
class=
"help-block">byline</div>
455 $this->brutallyTrimHTML($expected),
456 $this->brutallyTrimHTML($html)
462 $f = $this->buildFactory();
466 $group1 =
$f->group([
467 "field_1" =>
$f->text(
"f",
"some field")
469 $group2 =
$f->group([
470 "field_2" =>
$f->text(
"f2",
"some other field")
474 $sg =
$f->switchableGroup([$group1,$group2], $label, $byline);
476 $r = $this->getDefaultRenderer();
477 $html = $r->render($sg->withValue(
'1'));
480 <div
class=
"form-group row">
481 <label
class=
"control-label col-sm-3">label</label>
482 <div
class=
"col-sm-9">
483 <div
id=
"id_1" class=
"il-input-radio">
484 <div
class=
"form-control form-control-sm il-input-radiooption">
485 <input type=
"radio" id=
"id_1_0_opt" name=
"" value=
"0" /><label
for=
"id_1_0_opt"></label>
486 <div
class=
"form-group row">
487 <label
for=
"id_2" class=
"control-label col-sm-3">f</label>
488 <div
class=
"col-sm-9">
489 <input
id=
"id_2" type=
"text" name=
"" class=
"form-control form-control-sm" />
490 <div
class=
"help-block">some field</div>
494 <div
class=
"form-control form-control-sm il-input-radiooption">
495 <input type=
"radio" id=
"id_1_1_opt" name=
"" value=
"1" checked=
"checked" /><label
for=
"id_1_1_opt"></label>
496 <div
class=
"form-group row">
497 <label
for=
"id_3" class=
"control-label col-sm-3">f2</label>
498 <div
class=
"col-sm-9">
499 <input
id=
"id_3" type=
"text" name=
"" class=
"form-control form-control-sm" />
500 <div
class=
"help-block">some other field</div>
505 <div
class=
"help-block">byline</div>
510 $this->brutallyTrimHTML($expected),
511 $this->brutallyTrimHTML($html)
Provides common functionality for UI tests.