19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../../Base.php");
23 require_once(__DIR__ .
"/CommonFieldRendering.php");
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);
83 ->method(
"withNameFrom")
84 ->willReturn($this->nested_child);
87 ->method(
"withNameFrom")
88 ->willReturn($this->child1);
91 ->willReturn([$this->nested_child]);
94 ->method(
"withNameFrom")
95 ->willReturn($this->child2);
98 ->willReturn([$this->nested_child]);
104 [
"child1" => $this->child1,
"child2" => $this->child2],
108 public function getNewName():
string 117 return new I\Input\Field\Factory(
128 $this->assertNotSame($this->child1, $this->child2);
131 ->expects($this->once())
132 ->method(
"withDisabled")
134 ->willReturn($this->child2);
136 ->expects($this->once())
137 ->method(
"withDisabled")
139 ->willReturn($this->child1);
141 $new_group = $this->switchable_group->withDisabled(
true);
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);
150 $this->assertNotSame($this->child1, $this->child2);
153 ->expects($this->never())
154 ->method(
"withRequired");
156 ->expects($this->never())
157 ->method(
"withRequired");
159 $new_group = $this->switchable_group->withRequired(
true);
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);
174 [$this->createMock(
I\Input\Field\FormInput::class)],
182 $this->assertNotSame($this->child1, $this->child2);
185 ->expects($this->never())
186 ->method(
"withValue");
188 ->expects($this->once())
189 ->method(
"withValue")
191 ->willReturn($this->child2);
193 $new_group = $this->switchable_group->withValue([
"child2", 2]);
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);
202 $this->expectException(InvalidArgumentException::class);
203 $this->switchable_group->withValue(
null);
208 $this->expectException(InvalidArgumentException::class);
209 $this->switchable_group->withValue([1, 2, 3]);
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);
222 $this->expectException(InvalidArgumentException::class);
223 $this->switchable_group->withValue(
"child3");
228 $this->assertNotSame($this->child1, $this->child2);
231 ->expects($this->once())
236 ->expects($this->never())
237 ->method(
"getValue");
239 $vals = $this->switchable_group->withValue(
"child1")->getValue();
241 $this->assertEquals([
"child1",
"one"], $vals);
246 $this->assertNotSame($this->child1, $this->child2);
248 $input_data = $this->createMock(InputData::class);
251 ->expects($this->once())
254 ->willReturn(
"child1");
256 $expected_result = $this->data_factory->ok(
"one");
259 ->expects($this->once())
260 ->method(
"withInput")
262 ->willReturn($this->child1);
264 ->expects($this->once())
265 ->method(
"getContent")
267 ->willReturn($expected_result);
269 ->expects($this->once())
270 ->method(
"getContent")
272 ->willReturn($expected_result);
274 ->expects($this->never())
275 ->method(
"withInput");
277 ->expects($this->never())
278 ->method(
"getContent");
281 $new_group = $this->switchable_group
282 ->withAdditionalTransformation($this->
refinery->custom()->transformation(
function ($v) use (&$called):
string {
284 $this->assertEquals([
"child1", [
"one"]], $v);
287 ->withInput($input_data);
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());
298 $this->assertNotSame($this->child1, $this->child2);
300 $input_data = $this->createMock(InputData::class);
303 ->expects($this->once())
306 ->willReturn(
"child2");
309 ->expects($this->never())
310 ->method(
"withInput");
312 ->expects($this->never())
313 ->method(
"getContent");
315 ->expects($this->once())
316 ->method(
"withInput")
318 ->willReturn($this->child2);
320 ->expects($this->once())
321 ->method(
"getContent")
322 ->willReturn($this->data_factory->error(
""));
324 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
326 ->expects($this->once())
328 ->with(
"ui_error_in_group")
331 $new_group = $this->switchable_group
332 ->withAdditionalTransformation($this->
refinery->custom()->transformation(
function ():
void {
333 $this->fail(
"This should not happen.");
335 ->withInput($input_data);
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());
345 $this->assertNotSame($this->child1, $this->child2);
347 $input_data = $this->createMock(InputData::class);
350 ->expects($this->once())
353 ->willReturn(
"child2");
356 ->method(
"withInput")
357 ->willReturn($this->child2);
359 ->method(
"getContent")
360 ->willReturn($this->data_factory->error(
""));
362 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
364 ->expects($this->once())
366 ->with(
"ui_error_in_group")
369 $switchable_group = $this->switchable_group
370 ->withInput($input_data);
372 $this->assertTrue($switchable_group->getContent()->isError());
373 $this->assertEquals($i18n, $switchable_group->getContent()->error());
378 $this->expectException(InvalidArgumentException::class);
380 $input_data = $this->createMock(InputData::class);
383 ->expects($this->once())
389 ->expects($this->never())
390 ->method(
"withInput");
392 ->expects($this->never())
393 ->method(
"getContent");
395 ->expects($this->never())
396 ->method(
"withInput");
398 ->expects($this->never())
399 ->method(
"getContent");
401 $this->switchable_group
402 ->withAdditionalTransformation($this->
refinery->custom()->transformation(
function () use (&$called):
void {
403 $this->fail(
"This should not happen.");
405 ->withInput($input_data);
410 $f = $this->buildFactory();
414 $group1 =
$f->group([
415 "field_1" =>
$f->text(
"f",
"some field")
417 $group2 =
$f->group([
418 "field_2" =>
$f->text(
"f2",
"some other field")
421 $sg =
$f->switchableGroup(
431 <fieldset
class=
"c-input" data-il-
ui-component=
"switchable-group-field-input" data-il-
ui-input-name=
"" tabindex=
"0">
433 <div
class=
"c-input__field">
434 <fieldset
class=
"c-input" data-il-
ui-component=
"group-field-input" data-il-
ui-input-name=
"">
436 <input type=
"radio" id=
"id_1" value=
"g1" />
439 <div
class=
"c-input__field">
440 <fieldset
class=
"c-input" data-il-
ui-component=
"text-field-input" data-il-
ui-input-name=
""><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>
447 <fieldset
class=
"c-input" data-il-
ui-component=
"group-field-input" data-il-
ui-input-name=
"">
449 <input type=
"radio" id=
"id_3" value=
"g2" />
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>
461 <div
class=
"c-input__help-byline">byline</div>
465 $this->brutallyTrimHTML($expected),
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')));
484 $f = $this->buildFactory();
488 $group1 =
$f->group([
489 "field_1" =>
$f->text(
"f",
"some field")
491 $group2 =
$f->group([
492 "field_2" =>
$f->text(
"f2",
"some other field")
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);
498 $sg =
$f->switchableGroup([$group1, $group2, $group3], $label, $byline);
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')));
506 $f = $this->getFieldFactory();
509 $group1 =
$f->group([
510 "field_1" =>
$f->text(
"f")
512 $group2 =
$f->group([
513 "field_2" =>
$f->text(
"f2")
516 $sg =
$f->switchableGroup(
524 $this->testWithError($sg);
525 $this->testWithNoByline($sg);
526 $this->testWithRequired($sg);
527 $this->testWithDisabled($sg);
528 $this->testWithAdditionalOnloadCodeRendersId($sg);
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null