19 declare(strict_types=1);
33 require_once(__DIR__ .
"/../../../../Base.php");
41 $name =
"form_input_$this->count";
49 $name = $dedicated_name .
"_$this->count";
69 $this->signal_generator = new \SignalGeneratorMock();
84 $post_url =
'http://ilias.localhost/some_url?param1=foo¶m2=bar';
86 $dummy_input = $this->buildInputFactory()->text(
'test_label');
89 $this->signal_generator,
90 $this->buildInputFactory(),
97 "<form id=\"id_1\" class=\"c-form c-form--horizontal\" enctype=\"multipart/form-data\" action=\"$post_url\" method=\"post\">" .
98 $dummy_input->getCanonicalName() .
102 $context->method(
'getCanonicalName')->willReturn(
'RoundTripModal');
106 $this->brutallyTrimHTML($expected_html),
107 $this->brutallyTrimHTML(
$renderer->render($form))
113 $post_url =
'http://ilias.localhost/some_url?param1=foo¶m2=bar';
114 $required_lang_var =
'required_field';
116 $dummy_input = $this->buildInputFactory()->text(
'test_label')->withRequired(
true);
119 $this->signal_generator,
120 $this->buildInputFactory(),
127 "<form id=\"id_1\" class=\"c-form c-form--horizontal\" enctype=\"multipart/form-data\" action=\"$post_url\" method=\"post\">" .
128 $dummy_input->getCanonicalName()
129 .
"<div class=\"c-form__footer\">" 130 .
"<div class=\"c-form__required\"><span class=\"asterisk\">*</span><span class=\"small\"> $required_lang_var</span></div>" 135 $context->method(
'getCanonicalName')->willReturn(
'RoundTripModal');
139 $this->brutallyTrimHTML($expected_html),
140 $this->brutallyTrimHTML(
$renderer->render($form))
146 $post_url =
'http://ilias.localhost/some_url?param1=foo¶m2=bar';
147 $error_lang_var =
'ui_error';
148 $error_lang_var_in_group =
'ui_error_in_group';
150 $dummy_input = $this->buildInputFactory()->text(
'test_label')->withAdditionalTransformation(
151 $this->
refinery->custom()->constraint(
152 static function ($value):
bool {
155 'this message does not matter because the input will not be properly rendered anyways.' 160 $this->signal_generator,
161 $this->buildInputFactory(),
167 $request = $this->createMock(ServerRequestInterface::class);
168 $request->method(
'getParsedBody')->willReturn([
169 'form_0/form_input_1' =>
'',
172 $form = $form->withRequest($request);
173 $data = $form->getData();
175 $expected_html = <<<EOT
176 <
form id=
"id_1" class=
"c-form c-form--horizontal" enctype=
"multipart/form-data" action=
"$post_url" method=
"post">
177 <div
class=
"c-form__error-msg alert alert-danger"><span
class=
"sr-only">$error_lang_var:</span>$error_lang_var_in_group
178 </div>{$dummy_input->getCanonicalName()}
183 $context->method(
'getCanonicalName')->willReturn(
'RoundTripModal');
187 $this->brutallyTrimHTML($expected_html),
188 $this->brutallyTrimHTML(
$renderer->render($form))
194 $df = new \ILIAS\Data\Factory();
195 return new \ILIAS\UI\Implementation\Component\Input\Field\Factory(
197 $this->signal_generator,
206 return new class ($this->button_factory) extends \
NoUIFactory {
214 return $this->button_factory;
button(string $caption, string $cmd)
Interface Observer Contains several chained tasks and infos about them.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Provides common functionality for UI tests.
__construct()
Constructor setup ILIAS global object public.
form( $class_path, string $cmd, string $submit_caption="")
language()
description: > Example for rendring a language glyph.