ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TagInputTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
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");
25 
28 use ILIAS\Data;
30 
37 {
39 
41 
42  public function setUp(): void
43  {
44  $this->name_source = new DefNamesource();
45  }
46 
50  public function testImplementsFactoryInterface(): void
51  {
52  $f = $this->getFieldFactory();
53 
54  $f->tag(
55  "label",
56  ["lorem", "ipsum", "dolor"],
57  "byline"
58  );
59  }
60 
61  public function testRender(): void
62  {
63  $f = $this->getFieldFactory();
64  $label = "label";
65  $byline = "byline";
66  $tags = ["lorem", "ipsum", "dolor",];
67  $tag = $f->tag($label, $tags, $byline)->withNameFrom($this->name_source);
68  $expected = $this->getFormWrappedHtml(
69  'tag-field-input',
70  $label,
71  '
72  <div class="c-field-tag__wrapper">
73  <input id="id_1" name="name_0" class="c-field-tag" value=""/>
74  </div>
75  ',
76  $byline,
77  'id_1',
78  'id_2'
79  );
80  $this->assertEquals($expected, $this->render($tag));
81  }
82 
83  public function testCommonRendering(): void
84  {
85  $f = $this->getFieldFactory();
86  $tag = $f->tag('label', [], null)->withNameFrom($this->name_source);
87 
88  $this->testWithError($tag);
89  $this->testWithNoByline($tag);
90  $this->testWithRequired($tag);
91  $this->testWithDisabled($tag);
92  $this->testWithAdditionalOnloadCodeRendersId($tag);
93  }
94 
95  public function testValueRequired(): void
96  {
97  $f = $this->getFieldFactory();
98  $label = "label";
99  $name = "name_0";
100  $tags = ["lorem", "ipsum", "dolor",];
102  $tag = $f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(true);
103 
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);
111  }
112 
113  public function testEmptyStringAsInputLeadToException(): void
114  {
115  $f = $this->getFieldFactory();
116  $label = "label";
117  $name = "name_0";
118  $tags = ["lorem", "ipsum", "dolor",];
120  $tag = $f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(true);
121 
122  $tag2 = $tag->withInput(new DefInputData([$name => '']));
123  $result = $tag2->getContent();
124  $this->assertFalse($result->isOk());
125  try {
126  $result->value();
127  $this->fail();
128  } catch (Exception $e) {
129  $this->assertInstanceOf('ILIAS\Data\NotOKException', $e);
130  }
131  }
132 
133  public function testStringAsInputAsRequired(): void
134  {
135  $f = $this->getFieldFactory();
136  $label = "label";
137  $name = "name_0";
138  $tags = ["lorem", "ipsum", "dolor",];
140  $tag = $f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(true);
141 
142  $tag2 = $tag->withInput(new DefInputData([$name => 'test']));
143  $result = $tag2->getContent();
144  $this->assertTrue($result->isOk());
145  $this->assertEquals(['test'], $result->value());
146  }
147 
148  public function testNullValueLeadsToException(): void
149  {
150  $f = $this->getFieldFactory();
151  $label = "label";
152  $name = "name_0";
153  $tags = ["lorem", "ipsum", "dolor",];
154 
155  $tag = $f->tag($label, $tags)->withNameFrom($this->name_source)->withRequired(true);
156  $tag2 = $tag->withInput(new DefInputData([$name => null]));
157  $value2 = $tag2->getContent();
158  $this->assertTrue($value2->isError());
159  }
160 
161  public function testUserCreatedNotAllowed(): void
162  {
163  $this->markTestSkipped("This is supposed to work, but currently does not.");
164 
165  $f = $this->getFieldFactory();
166  $tags = ["lorem", "ipsum", "dolor",];
167  $tag = $f->tag("label", $tags)->withUserCreatedTagsAllowed(false)->withNameFrom($this->name_source);
168 
169  $tag1 = $tag->withInput(
170  new DefInputData(
171  ["name_0" => "lorem,ipsum"]
172  )
173  );
174  $value1 = $tag1->getContent();
175  $this->assertTrue($value1->isOk());
176  $value = $value1->value();
177  $this->assertEquals(
178  ["lorem", "ipsum"],
179  $value
180  );
181 
182  $tag1 = $tag->withInput(
183  new DefInputData(
184  ["name_0" => "conseptetuer,ipsum"]
185  )
186  );
187  $value1 = $tag1->getContent();
188  $this->assertTrue($value1->isError());
189  }
190 
191  public function testMaxTagsOk(): void
192  {
193  $f = $this->getFieldFactory();
194 
195  $tag = $f->tag("label", [])->withMaxTags(3)->withNameFrom($this->name_source)->withInput(
196  new DefInputData(["name_0" => "lorem,ipsum"])
197  );
198  $value = $tag->getContent();
199  $this->assertTrue($value->isOk());
200  }
201 
202  public function testMaxTagsNotOk(): void
203  {
204  $f = $this->getFieldFactory();
205 
206  $this->expectException(InvalidArgumentException::class);
207  $f->tag("label", [])->withMaxTags(2)->withNameFrom($this->name_source)->withInput(
208  new DefInputData(
209  ["name_0" => "lorem,ipsum,dolor"]
210  )
211  );
212  }
213 
214  public function testMaxTaglengthTagsOk(): void
215  {
216  $f = $this->getFieldFactory();
217 
218  $tag = $f->tag("label", [])->withTagMaxLength(10)->withNameFrom($this->name_source)->withInput(
219  new DefInputData(["name_0" => "lorem,ipsum"])
220  );
221  $value = $tag->getContent();
222  $this->assertTrue($value->isOk());
223  }
224 
225  public function testMaxTaglengthTagsNotOk(): void
226  {
227  $f = $this->getFieldFactory();
228 
229  $this->expectException(InvalidArgumentException::class);
230  $f->tag("label", [])->withTagMaxLength(2)->withNameFrom($this->name_source)->withInput(
231  new DefInputData(
232  ["name_0" => "lorem,ipsum,dolor"]
233  )
234  );
235  }
236 }
DefNamesource $name_source
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testNullValueLeadsToException()
testUserCreatedNotAllowed()
testImplementsFactoryInterface()
testMaxTaglengthTagsNotOk()
Class TagInputTest.