18 declare(strict_types=1);
20 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
21 require_once(__DIR__ .
"/../../../Base.php");
27 abstract class Input1 extends Field\Input
30 abstract class Input2 extends Field\Input
43 $this->child1 = $this->createMock(Input1::class);
44 $this->child2 = $this->createMock(Input2::class);
45 $this->data_factory =
new Data\Factory;
46 $this->
language = $this->createMock(\ilLanguage::class);
47 $this->refinery = new \ILIAS\Refinery\Factory($this->data_factory, $this->
language);
49 $this->group =
new Field\Group(
53 [$this->child1, $this->child2],
61 $this->assertNotSame($this->child1, $this->child2);
64 ->expects($this->once())
65 ->method(
"withDisabled")
67 ->willReturn($this->child2);
69 ->expects($this->once())
70 ->method(
"withDisabled")
72 ->willReturn($this->child1);
74 $new_group = $this->group->withDisabled(
true);
76 $this->assertEquals([$this->child2, $this->child1], $new_group->getInputs());
77 $this->assertInstanceOf(Field\Group::class, $new_group);
78 $this->assertNotSame($this->group, $new_group);
83 $this->assertNotSame($this->child1, $this->child2);
86 ->expects($this->once())
87 ->method(
"withRequired")
89 ->willReturn($this->child2);
91 ->expects($this->once())
92 ->method(
"withRequired")
94 ->willReturn($this->child1);
96 $new_group = $this->group->withRequired(
true);
98 $this->assertEquals([$this->child2, $this->child1], $new_group->getInputs());
99 $this->assertInstanceOf(Field\Group::class, $new_group);
100 $this->assertNotSame($this->group, $new_group);
105 $this->expectException(\InvalidArgumentException::class);
107 $this->group =
new Field\Group(
119 $this->assertNotSame($this->child1, $this->child2);
122 ->expects($this->once())
123 ->method(
"withValue")
125 ->willReturn($this->child2);
127 ->expects($this->once())
128 ->method(
"isClientSideValueOk")
132 ->expects($this->once())
133 ->method(
"withValue")
135 ->willReturn($this->child1);
137 ->expects($this->once())
138 ->method(
"isClientSideValueOk")
142 $new_group = $this->group->withValue([1,2]);
144 $this->assertEquals([$this->child2, $this->child1], $new_group->getInputs());
145 $this->assertInstanceOf(Field\Group::class, $new_group);
146 $this->assertNotSame($this->group, $new_group);
151 $this->assertNotSame($this->child1, $this->child2);
153 $this->group =
new Field\Group(
157 [
"child1" => $this->child1,
"child2" => $this->child2],
163 ->method(
"withValue")
164 ->willReturn($this->child2);
166 ->method(
"isClientSideValueOk")
169 ->method(
"withValue")
170 ->willReturn($this->child1);
172 ->method(
"isClientSideValueOk")
175 $new_group = $this->group->withValue([
"child1" => 1,
"child2" => 2]);
177 $this->assertEquals([
"child1" => $this->child2,
"child2" => $this->child1], $new_group->getInputs());
183 $this->expectException(\InvalidArgumentException::class);
185 $new_group = $this->group->withValue(1);
190 $this->expectException(\InvalidArgumentException::class);
192 $new_group = $this->group->withValue([1]);
197 $this->assertNotSame($this->child1, $this->child2);
200 ->expects($this->once())
205 ->expects($this->once())
210 $vals = $this->group->getValue();
212 $this->assertEquals([
"one",
"two"], $vals);
217 $this->assertNotSame($this->child1, $this->child2);
219 $input_data = $this->createMock(InputData::class);
222 ->expects($this->once())
223 ->method(
"withInput")
225 ->willReturn($this->child2);
227 ->expects($this->once())
228 ->method(
"getContent")
229 ->willReturn($this->data_factory->ok(
"one"));
231 ->expects($this->once())
232 ->method(
"withInput")
234 ->willReturn($this->child1);
236 ->expects($this->once())
237 ->method(
"getContent")
238 ->willReturn($this->data_factory->ok(
"two"));
241 $new_group = $this->group
242 ->withAdditionalTransformation($this->refinery->custom()->transformation(
function ($v) use (&$called) {
244 $this->assertEquals([
"two",
"one"], $v);
247 ->withInput($input_data);
249 $this->assertTrue($called);
250 $this->assertEquals([$this->child2, $this->child1], $new_group->getInputs());
251 $this->assertInstanceOf(Field\Group::class, $new_group);
252 $this->assertNotSame($this->group, $new_group);
253 $this->assertEquals($this->data_factory->ok(
"result"), $new_group->getContent());
258 $this->assertNotSame($this->child1, $this->child2);
260 $input_data = $this->createMock(InputData::class);
263 ->expects($this->once())
264 ->method(
"withInput")
266 ->willReturn($this->child2);
268 ->expects($this->once())
269 ->method(
"getContent")
270 ->willReturn($this->data_factory->error(
""));
272 ->expects($this->once())
273 ->method(
"withInput")
275 ->willReturn($this->child1);
277 ->expects($this->once())
278 ->method(
"getContent")
279 ->willReturn($this->data_factory->ok(
"two"));
281 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
283 ->expects($this->once())
285 ->with(
"ui_error_in_group")
288 $new_group = $this->group
289 ->withAdditionalTransformation($this->refinery->custom()->transformation(
function ($v) {
290 $this->assertFalse(
true,
"This should not happen.");
292 ->withInput($input_data);
294 $this->assertEquals([$this->child2, $this->child1], $new_group->getInputs());
295 $this->assertInstanceOf(Field\Group::class, $new_group);
296 $this->assertNotSame($this->group, $new_group);
297 $this->assertTrue($new_group->getContent()->isError());
302 $this->assertNotSame($this->child1, $this->child2);
304 $input_data = $this->createMock(InputData::class);
307 ->method(
"withInput")
308 ->willReturn($this->child2);
310 ->method(
"getContent")
311 ->willReturn($this->data_factory->error(
""));
313 ->method(
"withInput")
314 ->willReturn($this->child1);
316 ->method(
"getContent")
317 ->willReturn($this->data_factory->ok(
"two"));
319 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
321 ->expects($this->once())
323 ->with(
"ui_error_in_group")
326 $new_group = $this->group
327 ->withInput($input_data);
329 $this->assertTrue($new_group->getContent()->isError());
330 $this->assertEquals($i18n, $new_group->getContent()->error());
334 $group =
new Field\Group(
342 $content = $group->getContent();
343 $this->assertInstanceOf(\
ILIAS\Data\
Result\Ok::class, $content);
344 $this->assertCount(0, $content->value());
352 $this->getRefinery(),
360 $f = $this->getFieldFactory();
362 $f->text(
"input1",
"in 1"),
363 $f->text(
"input2",
"in 2")
365 $label =
'group label';
366 $group =
$f->group($inputs, $label);
369 <div
class=
"form-group row">
370 <label
for=
"id_1" class=
"control-label col-sm-3">input1</label>
371 <div
class=
"col-sm-9">
372 <input
id=
"id_1" type=
"text" name=
"" class=
"form-control form-control-sm" />
373 <div
class=
"help-block">in 1</div>
376 <div
class=
"form-group row">
377 <label
for=
"id_2" class=
"control-label col-sm-3">input2</label>
378 <div
class=
"col-sm-9">
379 <input
id=
"id_2" type=
"text" name=
"" class=
"form-control form-control-sm" />
380 <div
class=
"help-block">in 2</div>
384 $actual = $this->brutallyTrimHTML($this->getDefaultRenderer()->render($group));
385 $expected = $this->brutallyTrimHTML($expected);
386 $this->assertEquals($expected, $actual);
391 $f = $this->getFieldFactory();
396 $group =
$f->group($inputs,
'');
397 $this->assertFalse($group->isRequired());
402 $f = $this->getFieldFactory();
405 $f->text(
"")->withRequired(
true)
407 $group =
$f->group($inputs,
'');
408 $this->assertTrue($group->isRequired());
Class ChatMainBarProvider .
A result encapsulates a value or an error and simplifies the handling of those.
Provides common functionality for UI tests.