18 declare(strict_types=1);
20 require_once(__DIR__ .
"/../../../../Base.php");
23 use \ILIAS\UI\Implementation\Component\Input\Field\FormInputInternal;
24 use \ILIAS\UI\Implementation\Component\Input\NameSource;
25 use \ILIAS\UI\Implementation\Component\Input\InputData;
26 use \ILIAS\UI\Implementation\Component\Input\Container\Form\Form;
46 public $input_data = null;
50 $this->input_factory = $field_factory;
56 return $this->extractPostData($request);
62 if ($this->input_data !== null) {
63 return $this->input_data;
66 return parent::extractPostData($request);
72 $this->input_group = $this->input_factory->group($inputs);
73 $this->inputs = $inputs;
79 return $this->getPostInput($request);
96 $df =
new Data\Factory();
97 $this->
language = $this->createMock(\ilLanguage::class);
115 $dataFactory =
new Data\Factory();
116 $language = $this->createMock(\ilLanguage::class);
117 $refinery = new \ILIAS\Refinery\Factory($dataFactory, $language);
119 return $refinery->custom()->transformation($trafo);
131 return new \ILIAS\Data\Factory;
137 $f = $this->buildFactory();
138 $if = $this->buildInputFactory();
141 $inputs = [$if->text(
""), $if->text(
"")];
142 $form =
new ConcreteForm($this->buildInputFactory(), $inputs);
145 $inputs = $form->getInputs();
146 $this->assertEquals(count($inputs), count($inputs));
148 foreach ($inputs as $input) {
149 $name = $input->getName();
150 $name_source->name =
$name;
153 $this->assertIsString(
$name);
156 $input = array_shift($inputs);
157 $this->assertEquals($input->withNameFrom($name_source), $input);
160 $this->assertNotContains(
$name, $seen_names);
161 $seen_names[] =
$name;
168 $form =
new ConcreteForm($this->buildInputFactory(), []);
169 $request = $this->createMock(ServerRequestInterface::class);
171 ->expects($this->once())
172 ->method(
"getParsedBody")
174 $input_data = $form->_extractPostData($request);
175 $this->assertInstanceOf(InputData::class, $input_data);
181 $df = $this->buildDataFactory();
182 $request = $this->createMock(ServerRequestInterface::class);
183 $input_data = $this->createMock(InputData::class);
185 $input_1 = $this->inputMock();
187 ->expects($this->once())
188 ->method(
"withInput")
190 ->willReturn($input_1);
192 ->expects($this->once())
193 ->method(
"getContent")
194 ->willReturn($df->ok(0));
196 $input_2 = $this->inputMock();
198 ->expects($this->once())
199 ->method(
"withInput")
201 ->willReturn($input_2);
203 ->expects($this->once())
204 ->method(
"getContent")
205 ->willReturn($df->ok(0));
207 $form =
new ConcreteForm($this->buildInputFactory(), []);
208 $form->setInputs([$input_1, $input_2]);
209 $form->input_data = $input_data;
211 $form2 = $form->withRequest($request);
213 $this->assertNotSame($form2, $form);
214 $this->assertInstanceOf(Form::class, $form2);
215 $this->assertEquals([$input_1, $input_2], $form2->getInputs());
221 $df = $this->buildDataFactory();
222 $request = $this->createMock(ServerRequestInterface::class);
223 $input_data = $this->createMock(InputData::class);
225 $input_1 = $this->inputMock();
227 ->expects($this->once())
228 ->method(
"withInput")
230 ->willReturn($input_1);
232 ->expects($this->once())
233 ->method(
"getContent")
234 ->willReturn($df->ok(0));
236 $input_2 = $this->inputMock();
238 ->expects($this->once())
239 ->method(
"withInput")
241 ->willReturn($input_2);
243 ->expects($this->once())
244 ->method(
"getContent")
245 ->willReturn($df->ok(0));
247 $form =
new ConcreteForm($this->buildInputFactory(), []);
248 $form->setInputs([
"foo" => $input_1,
"bar" => $input_2]);
249 $form->input_data = $input_data;
251 $form2 = $form->withRequest($request);
253 $this->assertNotSame($form2, $form);
254 $this->assertInstanceOf(Form::class, $form2);
255 $this->assertEquals([
"foo" => $input_1,
"bar" => $input_2], $form2->getInputs());
261 $df = $this->buildDataFactory();
262 $request = $this->createMock(ServerRequestInterface::class);
264 ->expects($this->once())
265 ->method(
"getParsedBody")
268 $input_1 = $this->inputMock();
270 ->expects($this->once())
271 ->method(
"getContent")
272 ->willReturn($df->ok(1));
274 ->expects($this->once())
275 ->method(
"withInput")
276 ->willReturn($input_1);
278 $input_2 = $this->inputMock();
280 ->expects($this->once())
281 ->method(
"getContent")
282 ->willReturn($df->ok(2));
284 ->expects($this->once())
285 ->method(
"withInput")
286 ->willReturn($input_2);
288 $form =
new ConcreteForm($this->buildInputFactory(), []);
289 $form->setInputs([$input_1, $input_2]);
290 $form = $form->withRequest($request);
291 $this->assertEquals([1, 2], $form->getData());
297 $df = $this->buildDataFactory();
298 $request = $this->createMock(ServerRequestInterface::class);
300 ->expects($this->once())
301 ->method(
"getParsedBody")
304 $input_1 = $this->inputMock();
306 ->expects($this->once())
307 ->method(
"getContent")
308 ->willReturn($df->ok(1));
310 ->expects($this->once())
311 ->method(
"withInput")
312 ->willReturn($input_1);
314 $input_2 = $this->inputMock();
316 ->expects($this->once())
317 ->method(
"getContent")
318 ->willReturn($df->ok(2));
320 ->expects($this->once())
321 ->method(
"withInput")
322 ->willReturn($input_2);
324 $form =
new ConcreteForm($this->buildInputFactory(), []);
325 $form->setInputs([
"foo" => $input_1,
"bar" => $input_2]);
326 $form = $form->withRequest($request);
327 $this->assertEquals([
"foo" => 1,
"bar" => 2], $form->getData());
333 $df = $this->buildDataFactory();
334 $request = $this->createMock(ServerRequestInterface::class);
336 ->expects($this->once())
337 ->method(
"getParsedBody")
340 $input_1 = $this->inputMock();
342 ->expects($this->once())
343 ->method(
"getContent")
344 ->willReturn($df->error(
"error"));
346 ->expects($this->once())
347 ->method(
"withInput")
348 ->willReturn($input_1);
350 $input_2 = $this->inputMock();
352 ->expects($this->once())
353 ->method(
"getContent")
354 ->willReturn($df->ok(2));
356 ->expects($this->once())
357 ->method(
"withInput")
358 ->willReturn($input_2);
360 $form =
new ConcreteForm($this->buildInputFactory(), []);
361 $form->setInputs([
"foo" => $input_1,
"bar" => $input_2]);
363 $i18n =
"THERE IS SOME ERROR IN THIS GROUP";
365 ->expects($this->once())
367 ->with(
"ui_error_in_group")
371 $form = $form->withRequest($request);
372 $this->assertEquals(null, null);
378 $df = $this->buildDataFactory();
379 $request = $this->createMock(ServerRequestInterface::class);
381 ->expects($this->once())
382 ->method(
"getParsedBody")
385 $input_1 = $this->inputMock();
387 ->expects($this->once())
388 ->method(
"getContent")
389 ->willReturn($df->ok(1));
391 ->expects($this->once())
392 ->method(
"withInput")
393 ->willReturn($input_1);
395 $input_2 = $this->inputMock();
397 ->expects($this->once())
398 ->method(
"getContent")
399 ->willReturn($df->ok(2));
401 ->expects($this->once())
402 ->method(
"withInput")
403 ->willReturn($input_2);
405 $form =
new ConcreteForm($this->buildInputFactory(), []);
406 $form->setInputs([$input_1, $input_2]);
408 $form2 = $form->withAdditionalTransformation($this->buildTransformation(
function ($v) {
409 return "transformed";
412 $this->assertNotSame($form2, $form);
413 $form2 = $form2->withRequest($request);
415 $this->assertEquals(
"transformed", $form2->getData());
421 $if = $this->buildInputFactory();
424 "foo" => $if->text(
""),
428 $form =
new ConcreteForm($this->buildInputFactory(), []);
429 $form->setInputs($inputs);
430 $named_inputs = $form->getInputs();
431 $this->assertEquals(array_keys($inputs), array_keys($named_inputs));
438 ->getMockBuilder(FormInputInternal::class)
439 ->setMethods([
"getName",
"withNameFrom",
"withInput",
"getContent",
"getLabel",
"withLabel",
"getByline",
"withByline",
"isRequired",
"withRequired",
"isDisabled",
"withDisabled",
"getValue",
"withValue",
"getError",
"withError",
"withAdditionalTransformation",
"withAdditionalConstraint",
"getUpdateOnLoadCode",
"getCanonicalName",
"withOnLoadCode",
"withAdditionalOnLoadCode",
"getOnLoadCode",
"withOnUpdate",
"appendOnUpdate",
"withResetTriggeredSignals",
"getTriggeredSignals"])
440 ->setMockClassName(
"Mock_InputNo" . ($no++))
447 $f = $this->buildFactory();
448 $if = $this->buildInputFactory();
449 $inputs = [$if->text(
""), $if->text(
"")];
450 $form =
new ConcreteForm($this->buildInputFactory(), $inputs);
452 $this->assertFalse($form->hasRequiredInputs());
457 $f = $this->buildFactory();
458 $if = $this->buildInputFactory();
460 $if->text(
"")->withRequired(
true),
463 $form =
new ConcreteForm($this->buildInputFactory(), $inputs);
464 $this->assertTrue($form->hasRequiredInputs());
Class ChatMainBarProvider .
getNewName()
Generates a unique name on every call.
Provides common functionality for UI tests.
__construct(Container $dic, ilPlugin $plugin)