Test on form implementation.
More...
Test on form implementation.
Definition at line 86 of file FormTest.php.
◆ buildButtonFactory()
FormTest::buildButtonFactory |
( |
| ) |
|
|
protected |
◆ buildDataFactory()
FormTest::buildDataFactory |
( |
| ) |
|
Definition at line 129 of file FormTest.php.
131 return new \ILIAS\Data\Factory;
◆ buildFactory()
FormTest::buildFactory |
( |
| ) |
|
|
protected |
◆ buildInputFactory()
FormTest::buildInputFactory |
( |
| ) |
|
|
protected |
Definition at line 94 of file FormTest.php.
References language().
96 $df =
new Data\Factory();
97 $this->
language = $this->createMock(\ilLanguage::class);
Class ChatMainBarProvider .
◆ buildTransformation()
FormTest::buildTransformation |
( |
\Closure |
$trafo | ) |
|
|
protected |
Definition at line 113 of file FormTest.php.
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);
◆ getUIFactory()
FormTest::getUIFactory |
( |
| ) |
|
◆ inputMock()
Definition at line 434 of file FormTest.php.
References $config.
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++))
◆ test_extractPostData()
FormTest::test_extractPostData |
( |
| ) |
|
Definition at line 166 of file FormTest.php.
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);
◆ test_getData()
FormTest::test_getData |
( |
| ) |
|
Definition at line 259 of file FormTest.php.
262 $request = $this->createMock(ServerRequestInterface::class);
264 ->expects($this->once())
265 ->method(
"getParsedBody")
270 ->expects($this->once())
271 ->method(
"getContent")
272 ->willReturn($df->ok(1));
274 ->expects($this->once())
275 ->method(
"withInput")
276 ->willReturn($input_1);
280 ->expects($this->once())
281 ->method(
"getContent")
282 ->willReturn($df->ok(2));
284 ->expects($this->once())
285 ->method(
"withInput")
286 ->willReturn($input_2);
289 $form->setInputs([$input_1, $input_2]);
290 $form = $form->withRequest($request);
291 $this->assertEquals([1, 2], $form->getData());
◆ test_getData_faulty()
FormTest::test_getData_faulty |
( |
| ) |
|
Definition at line 331 of file FormTest.php.
References language().
334 $request = $this->createMock(ServerRequestInterface::class);
336 ->expects($this->once())
337 ->method(
"getParsedBody")
342 ->expects($this->once())
343 ->method(
"getContent")
344 ->willReturn($df->error(
"error"));
346 ->expects($this->once())
347 ->method(
"withInput")
348 ->willReturn($input_1);
352 ->expects($this->once())
353 ->method(
"getContent")
354 ->willReturn($df->ok(2));
356 ->expects($this->once())
357 ->method(
"withInput")
358 ->willReturn($input_2);
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);
◆ test_getData_respects_keys()
FormTest::test_getData_respects_keys |
( |
| ) |
|
Definition at line 295 of file FormTest.php.
298 $request = $this->createMock(ServerRequestInterface::class);
300 ->expects($this->once())
301 ->method(
"getParsedBody")
306 ->expects($this->once())
307 ->method(
"getContent")
308 ->willReturn($df->ok(1));
310 ->expects($this->once())
311 ->method(
"withInput")
312 ->willReturn($input_1);
316 ->expects($this->once())
317 ->method(
"getContent")
318 ->willReturn($df->ok(2));
320 ->expects($this->once())
321 ->method(
"withInput")
322 ->willReturn($input_2);
325 $form->setInputs([
"foo" => $input_1,
"bar" => $input_2]);
326 $form = $form->withRequest($request);
327 $this->assertEquals([
"foo" => 1,
"bar" => 2], $form->getData());
◆ test_getInputs()
FormTest::test_getInputs |
( |
| ) |
|
Definition at line 135 of file FormTest.php.
References Vendor\Package\$f, and FixedNameSource\$name.
141 $inputs = [$if->text(
""), $if->text(
"")];
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;
◆ test_nameInputs_respects_keys()
FormTest::test_nameInputs_respects_keys |
( |
| ) |
|
Definition at line 419 of file FormTest.php.
424 "foo" => $if->text(
""),
429 $form->setInputs($inputs);
430 $named_inputs = $form->getInputs();
431 $this->assertEquals(array_keys($inputs), array_keys($named_inputs));
◆ test_withAdditionalTransformation()
FormTest::test_withAdditionalTransformation |
( |
| ) |
|
Definition at line 376 of file FormTest.php.
379 $request = $this->createMock(ServerRequestInterface::class);
381 ->expects($this->once())
382 ->method(
"getParsedBody")
387 ->expects($this->once())
388 ->method(
"getContent")
389 ->willReturn($df->ok(1));
391 ->expects($this->once())
392 ->method(
"withInput")
393 ->willReturn($input_1);
397 ->expects($this->once())
398 ->method(
"getContent")
399 ->willReturn($df->ok(2));
401 ->expects($this->once())
402 ->method(
"withInput")
403 ->willReturn($input_2);
406 $form->setInputs([$input_1, $input_2]);
409 return "transformed";
412 $this->assertNotSame($form2, $form);
413 $form2 = $form2->withRequest($request);
415 $this->assertEquals(
"transformed", $form2->getData());
◆ test_withRequest()
FormTest::test_withRequest |
( |
| ) |
|
Definition at line 179 of file FormTest.php.
182 $request = $this->createMock(ServerRequestInterface::class);
183 $input_data = $this->createMock(InputData::class);
187 ->expects($this->once())
188 ->method(
"withInput")
190 ->willReturn($input_1);
192 ->expects($this->once())
193 ->method(
"getContent")
194 ->willReturn($df->ok(0));
198 ->expects($this->once())
199 ->method(
"withInput")
201 ->willReturn($input_2);
203 ->expects($this->once())
204 ->method(
"getContent")
205 ->willReturn($df->ok(0));
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());
◆ test_withRequest_respects_keys()
FormTest::test_withRequest_respects_keys |
( |
| ) |
|
Definition at line 219 of file FormTest.php.
222 $request = $this->createMock(ServerRequestInterface::class);
223 $input_data = $this->createMock(InputData::class);
227 ->expects($this->once())
228 ->method(
"withInput")
230 ->willReturn($input_1);
232 ->expects($this->once())
233 ->method(
"getContent")
234 ->willReturn($df->ok(0));
238 ->expects($this->once())
239 ->method(
"withInput")
241 ->willReturn($input_2);
243 ->expects($this->once())
244 ->method(
"getContent")
245 ->willReturn($df->ok(0));
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());
◆ testFormWithoutRequiredField()
FormTest::testFormWithoutRequiredField |
( |
| ) |
|
Definition at line 445 of file FormTest.php.
References Vendor\Package\$f.
449 $inputs = [$if->text(
""), $if->text(
"")];
452 $this->assertFalse($form->hasRequiredInputs());
◆ testFormWithRequiredField()
FormTest::testFormWithRequiredField |
( |
| ) |
|
Definition at line 455 of file FormTest.php.
References Vendor\Package\$f.
460 $if->text(
"")->withRequired(
true),
464 $this->assertTrue($form->hasRequiredInputs());
The documentation for this class was generated from the following file: