5 require_once(__DIR__ .
"/../../../../../libs/composer/vendor/autoload.php");
6 require_once(__DIR__ .
"/../../../Base.php");
7 require_once(__DIR__ .
"/InputTest.php");
10 use \ILIAS\UI\Component\Input\Field;
24 $df =
new Data\Factory();
39 $numeric =
$f->numeric(
"label",
"byline");
41 $this->assertInstanceOf(Field\Input::class, $numeric);
42 $this->assertInstanceOf(Field\Numeric::class, $numeric);
52 $numeric =
$f->numeric($label, $byline)->withNameFrom($this->name_source);
58 <div class="form-group row"> 59 <label for="id_1" class="control-label col-sm-3">label</label> 60 <div class="col-sm-9"> 61 <input id="id_1" type="number" name="name_0" class="form-control form-control-sm" /> 62 <div class="help-block">byline</div> 67 $this->assertEquals($expected, $html);
78 $numeric =
$f->numeric($label, $byline)->withNameFrom($this->name_source)->withError($error);
84 <div class="form-group row"> 85 <label for="id_1" class="control-label col-sm-3">label</label> 86 <div class="col-sm-9"> 87 <div class="help-block alert alert-danger" role="alert">an_error</div> 88 <input id="id_1" type="number" name="name_0" class="form-control form-control-sm" /> 89 <div class="help-block">byline</div> 92 $this->assertEquals($expected, $html);
101 $numeric =
$f->numeric($label)->withNameFrom($this->name_source);
107 <div class="form-group row"> 108 <label for="id_1" class="control-label col-sm-3">label</label> 109 <div class="col-sm-9"> <input id="id_1" type="number" name="name_0" class="form-control form-control-sm" /> </div> 112 $this->assertEquals($expected, $html);
122 $numeric =
$f->numeric($label)->withValue($value)->withNameFrom($this->name_source);
128 <div class="form-group row"> 129 <label for="id_1" class="control-label col-sm-3">label</label> 130 <div class="col-sm-9"> <input id="id_1" type="number" value="10" name="name_0" class="form-control form-control-sm" /> </div> 133 $this->assertEquals($expected, $html);
141 $numeric =
$f->numeric($label)->withNameFrom($this->name_source)->withDisabled(
true);
147 <div class="form-group row"> 148 <label for="id_1" class="control-label col-sm-3">label</label> 149 <div class="col-sm-9"> <input id="id_1" type="number" name="name_0" disabled="disabled" class="form-control form-control-sm" /> </div> 151 $this->assertEquals($expected, $html);
158 $field =
$f->numeric(
'')->withNameFrom($this->name_source);
159 $field_required = $field->withRequired(
true);
161 $value = $field->withInput($post_data)->getContent();
162 $this->assertTrue($value->isOk());
163 $this->assertNull($value->value());
165 $value = $field_required->withInput($post_data)->getContent();
166 $this->assertTrue($value->isError());
176 $field_required = $field->withRequired(
true);
178 $value = $field->withInput($post_data)->getContent();
179 $this->assertTrue($value->isOk());
180 $this->assertNull($value->value());
182 $field_required = $field_required->withInput($post_data);
183 $value = $field_required->getContent();
184 $this->assertTrue($value->isError());
193 $field_required = $field->withRequired(
true);
195 $value = $field->withInput($post_data)->getContent();
196 $this->assertTrue($value->isOk());
197 $this->assertEquals(0, $value->value());
199 $value = $field_required->withInput($post_data)->getContent();
200 $this->assertTrue($value->isOK());
201 $this->assertEquals(0, $value->value());
Class ChatMainBarProvider .
Provides common functionality for UI tests.
brutallyTrimHTML($html)
A more radical version of normalizeHTML.
getDefaultRenderer(JavaScriptBinding $js_binding=null, $with_stub_renderings=[])