Class TagInputTest.
More...
◆ buildFactory()
TagInputTest::buildFactory |
( |
| ) |
|
|
protected |
Definition at line 44 of file TagInputTest.php.
Referenced by test_max_tags_not_ok(), testImplementsFactoryInterface(), testMaxTaglengthTagsNotOk(), testMaxTaglengthTagsOk(), testMaxTagsOk(), testNullValueLeadsToException(), testRender(), testRenderDisabled(), testRenderError(), testRenderNoByline(), testRenderRequired(), and testUserCreatedNotAllowed().
44 : I\Input\Field\Factory
46 $df =
new Data\Factory();
47 $language = $this->createMock(ilLanguage::class);
48 return new I\Input\Field\Factory(
Class ChatMainBarProvider .
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
◆ setUp()
◆ test_max_tags_not_ok()
TagInputTest::test_max_tags_not_ok |
( |
| ) |
|
Definition at line 298 of file TagInputTest.php.
References Vendor\Package\$f, and buildFactory().
302 $this->expectException(InvalidArgumentException::class);
303 $f->tag(
"label", [])->withMaxTags(2)->withNameFrom($this->name_source)->withInput(
305 [
"name_0" =>
"lorem,ipsum,dolor"]
◆ testImplementsFactoryInterface()
TagInputTest::testImplementsFactoryInterface |
( |
| ) |
|
◆ testMaxTaglengthTagsNotOk()
TagInputTest::testMaxTaglengthTagsNotOk |
( |
| ) |
|
Definition at line 321 of file TagInputTest.php.
References Vendor\Package\$f, and buildFactory().
325 $this->expectException(InvalidArgumentException::class);
326 $f->tag(
"label", [])->withTagMaxLength(2)->withNameFrom($this->name_source)->withInput(
328 [
"name_0" =>
"lorem,ipsum,dolor"]
◆ testMaxTaglengthTagsOk()
TagInputTest::testMaxTaglengthTagsOk |
( |
| ) |
|
Definition at line 310 of file TagInputTest.php.
References Vendor\Package\$f, and buildFactory().
314 $tag =
$f->tag(
"label", [])->withTagMaxLength(10)->withNameFrom($this->name_source)->withInput(
317 $value = $tag->getContent();
318 $this->assertTrue($value->isOk());
◆ testMaxTagsOk()
TagInputTest::testMaxTagsOk |
( |
| ) |
|
Definition at line 287 of file TagInputTest.php.
References Vendor\Package\$f, and buildFactory().
291 $tag =
$f->tag(
"label", [])->withMaxTags(3)->withNameFrom($this->name_source)->withInput(
294 $value = $tag->getContent();
295 $this->assertTrue($value->isOk());
◆ testNullValueLeadsToException()
TagInputTest::testNullValueLeadsToException |
( |
| ) |
|
Definition at line 244 of file TagInputTest.php.
References Vendor\Package\$f, $name, and buildFactory().
249 $tags = [
"lorem",
"ipsum",
"dolor",];
251 $tag =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
253 $value2 = $tag2->getContent();
254 $this->assertTrue($value2->isError());
◆ testRender()
TagInputTest::testRender |
( |
| ) |
|
Definition at line 71 of file TagInputTest.php.
References Vendor\Package\$f, ILIAS_UI_TestBase\brutallyTrimHTML(), buildFactory(), and ILIAS_UI_TestBase\getDefaultRenderer().
76 $tags = [
"lorem",
"ipsum",
"dolor",];
77 $text =
$f->tag($label, $tags, $byline)->withNameFrom($this->name_source);
82 <div class="form-group row"> 83 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 84 <div class="col-sm-8 col-md-9 col-lg-10"> 85 <div id="container-id_1" class="form-control form-control-sm il-input-tag-container"> 86 <input id="id_1" name="name_0" class="form-control form-control-sm il-input-tag" value=""/> 88 <div class="help-block">byline</div> 92 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testRenderDisabled()
TagInputTest::testRenderDisabled |
( |
| ) |
|
Definition at line 167 of file TagInputTest.php.
References Vendor\Package\$e, Vendor\Package\$f, $name, ILIAS_UI_TestBase\brutallyTrimHTML(), buildFactory(), and ILIAS_UI_TestBase\getDefaultRenderer().
171 $tags = [
"lorem",
"ipsum",
"dolor",];
172 $text =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withDisabled(
true);
178 <div class="form-group row"> 179 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 180 <div class="col-sm-8 col-md-9 col-lg-10"> 181 <div id="container-id_1" class="form-control form-control-sm il-input-tag-container disabled"> 182 <input id="id_1" name="name_0" class="form-control form-control-sm il-input-tag" readonly value=""/> 188 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testRenderError()
TagInputTest::testRenderError |
( |
| ) |
|
Definition at line 95 of file TagInputTest.php.
References Vendor\Package\$f, ILIAS_UI_TestBase\brutallyTrimHTML(), buildFactory(), and ILIAS_UI_TestBase\getDefaultRenderer().
100 $tags = [
"lorem",
"ipsum",
"dolor",];
102 $text =
$f->tag($label, $tags, $byline)->withNameFrom($this->name_source)->withError($error);
107 <div class="form-group row"> 108 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 109 <div class="col-sm-8 col-md-9 col-lg-10"> 110 <div class="help-block alert alert-danger" aria-describedby="id_1" role="alert">an_error</div> 111 <div id="container-id_1" class="form-control form-control-sm il-input-tag-container"> 112 <input id="id_1" name="name_0" class="form-control form-control-sm il-input-tag" value=""/> 114 <div class="help-block">byline</div> 118 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testRenderNoByline()
TagInputTest::testRenderNoByline |
( |
| ) |
|
Definition at line 121 of file TagInputTest.php.
References Vendor\Package\$f, ILIAS_UI_TestBase\brutallyTrimHTML(), buildFactory(), and ILIAS_UI_TestBase\getDefaultRenderer().
125 $tags = [
"lorem",
"ipsum",
"dolor",];
126 $text =
$f->tag($label, $tags)->withNameFrom($this->name_source);
131 <div class="form-group row"> 132 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label</label> 133 <div class="col-sm-8 col-md-9 col-lg-10"> 134 <div id="container-id_1" class="form-control form-control-sm il-input-tag-container"> 135 <input id="id_1" name="name_0" class="form-control form-control-sm il-input-tag" value=""/> 140 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testRenderRequired()
TagInputTest::testRenderRequired |
( |
| ) |
|
Definition at line 143 of file TagInputTest.php.
References Vendor\Package\$f, ILIAS_UI_TestBase\brutallyTrimHTML(), buildFactory(), and ILIAS_UI_TestBase\getDefaultRenderer().
147 $tags = [
"lorem",
"ipsum",
"dolor",];
148 $text =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
154 <div class="form-group row"> 155 <label for="id_1" class="control-label col-sm-4 col-md-3 col-lg-2">label<span class="asterisk">*</span></label> 156 <div class="col-sm-8 col-md-9 col-lg-10"> 157 <div id="container-id_1" class="form-control form-control-sm il-input-tag-container"> 158 <input id="id_1" name="name_0" class="form-control form-control-sm il-input-tag" value=""/> 164 $this->assertEquals($expected, $html);
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
◆ testUserCreatedNotAllowed()
TagInputTest::testUserCreatedNotAllowed |
( |
| ) |
|
Definition at line 257 of file TagInputTest.php.
References Vendor\Package\$f, and buildFactory().
259 $this->markTestSkipped(
"This is supposed to work, but currently does not.");
262 $tags = [
"lorem",
"ipsum",
"dolor",];
263 $tag =
$f->tag(
"label", $tags)->withUserCreatedTagsAllowed(
false)->withNameFrom($this->name_source);
265 $tag1 = $tag->withInput(
267 [
"name_0" =>
"lorem,ipsum"]
270 $value1 = $tag1->getContent();
271 $this->assertTrue($value1->isOk());
272 $value = $value1->value();
278 $tag1 = $tag->withInput(
280 [
"name_0" =>
"conseptetuer,ipsum"]
283 $value1 = $tag1->getContent();
284 $this->assertTrue($value1->isError());
◆ $name_source
The documentation for this class was generated from the following file: