19 declare(strict_types=1);
21 require_once(__DIR__ .
"/../../../../../../../vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../../Base.php");
23 require_once(__DIR__ .
"/InputTest.php");
24 require_once(__DIR__ .
"/CommonFieldRendering.php");
52 $f = $this->getFieldFactory();
56 [
"lorem",
"ipsum",
"dolor"],
63 $f = $this->getFieldFactory();
66 $tags = [
"lorem",
"ipsum",
"dolor",];
67 $tag =
$f->tag($label, $tags, $byline)->withNameFrom($this->name_source);
68 $expected = $this->getFormWrappedHtml(
72 <div class="c-field-tag__wrapper"> 73 <input id="id_1" name="name_0" class="c-field-tag" value=""/> 80 $this->assertEquals($expected, $this->render($tag));
85 $f = $this->getFieldFactory();
86 $tag =
$f->tag(
'label', [],
null)->withNameFrom($this->name_source);
88 $this->testWithError($tag);
89 $this->testWithNoByline($tag);
90 $this->testWithRequired($tag);
91 $this->testWithDisabled($tag);
92 $this->testWithAdditionalOnloadCodeRendersId($tag);
95 public function testValueRequired():
void 97 $f = $this->getFieldFactory();
100 $tags = [
"lorem",
"ipsum",
"dolor",];
102 $tag =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
104 $raw_value1 =
"lorem,ipsum";
105 $expected_result = [
'lorem',
'ipsum'];
106 $tag1 = $tag->withInput(
new DefInputData([$name => $raw_value1]));
107 $value1 = $tag1->getContent();
108 $this->assertTrue($value1->isOk());
109 $value = $value1->value();
110 $this->assertEquals($expected_result, $value);
113 public function testEmptyStringAsInputLeadToException():
void 115 $f = $this->getFieldFactory();
118 $tags = [
"lorem",
"ipsum",
"dolor",];
120 $tag =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
122 $tag2 = $tag->withInput(
new DefInputData([$name =>
'']));
123 $result = $tag2->getContent();
124 $this->assertFalse($result->isOk());
129 $this->assertInstanceOf(
'ILIAS\Data\NotOKException', $e);
133 public function testStringAsInputAsRequired():
void 135 $f = $this->getFieldFactory();
138 $tags = [
"lorem",
"ipsum",
"dolor",];
140 $tag =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
142 $tag2 = $tag->withInput(
new DefInputData([$name =>
'test']));
143 $result = $tag2->getContent();
144 $this->assertTrue($result->isOk());
145 $this->assertEquals([
'test'], $result->value());
150 $f = $this->getFieldFactory();
153 $tags = [
"lorem",
"ipsum",
"dolor",];
155 $tag =
$f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(
true);
157 $value2 = $tag2->getContent();
158 $this->assertTrue($value2->isError());
163 $this->markTestSkipped(
"This is supposed to work, but currently does not.");
165 $f = $this->getFieldFactory();
166 $tags = [
"lorem",
"ipsum",
"dolor",];
167 $tag =
$f->tag(
"label", $tags)->withUserCreatedTagsAllowed(
false)->withNameFrom($this->name_source);
169 $tag1 = $tag->withInput(
171 [
"name_0" =>
"lorem,ipsum"]
174 $value1 = $tag1->getContent();
175 $this->assertTrue($value1->isOk());
176 $value = $value1->value();
182 $tag1 = $tag->withInput(
184 [
"name_0" =>
"conseptetuer,ipsum"]
187 $value1 = $tag1->getContent();
188 $this->assertTrue($value1->isError());
193 $f = $this->getFieldFactory();
195 $tag =
$f->tag(
"label", [])->withMaxTags(3)->withNameFrom($this->name_source)->withInput(
198 $value = $tag->getContent();
199 $this->assertTrue($value->isOk());
204 $f = $this->getFieldFactory();
206 $this->expectException(InvalidArgumentException::class);
207 $f->tag(
"label", [])->withMaxTags(2)->withNameFrom($this->name_source)->withInput(
209 [
"name_0" =>
"lorem,ipsum,dolor"]
216 $f = $this->getFieldFactory();
218 $tag =
$f->tag(
"label", [])->withTagMaxLength(10)->withNameFrom($this->name_source)->withInput(
221 $value = $tag->getContent();
222 $this->assertTrue($value->isOk());
227 $f = $this->getFieldFactory();
229 $this->expectException(InvalidArgumentException::class);
230 $f->tag(
"label", [])->withTagMaxLength(2)->withNameFrom($this->name_source)->withInput(
232 [
"name_0" =>
"lorem,ipsum,dolor"]
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null