ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FilterTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 require_once(__DIR__ . "/../../../../Base.php");
22 
30 use ILIAS\Data;
34 
36 {
37  public string $name = "name";
38 
39  public function getNewName(): string
40  {
41  return $this->name;
42  }
43 }
44 
45 class ConcreteFilter extends Filter
46 {
47  public array $inputs;
48  public ?InputData $input_data = null;
49  protected Input\Field\Factory $input_factory;
50  protected Group $input_group;
51 
52  public function __construct(
53  SignalGenerator $signal_generator,
54  Input\Field\Factory $field_factory,
55  $toggle_action_on,
56  $toggle_action_off,
57  $expand_action,
58  $collapse_action,
59  $apply_action,
60  $reset_action,
61  array $inputs,
62  array $is_input_rendered,
63  bool $is_activated,
64  bool $is_expanded
65  ) {
66  $this->input_factory = $field_factory;
68  $signal_generator,
69  $field_factory,
70  $toggle_action_on,
71  $toggle_action_off,
72  $expand_action,
73  $collapse_action,
74  $apply_action,
75  $reset_action,
76  $inputs,
77  $is_input_rendered,
78  $is_activated,
79  $is_expanded
80  );
81  }
82 
84  {
85  return $this->extractParamData($request);
86  }
87 
89  {
90  if ($this->input_data !== null) {
91  return $this->input_data;
92  }
93 
94  return parent::extractParamData($request);
95  }
96 
97  public function setInputs(array $inputs): void
98  {
99  $this->input_group = $this->input_factory->group($inputs);
100  $this->inputs = $inputs;
101  }
102 
103  // TODO: DW perhaps, this can be removed
104  // public function _getInput(ServerRequestInterface $request)
105  // {
106  // return $this->getInput($request);
107  // }
108 }
109 
114 {
115  protected function buildFactory(): Input\Container\Filter\Factory
116  {
118  new SignalGenerator(),
119  $this->buildInputFactory()
120  );
121  }
122 
123  protected function buildInputFactory(): Input\Field\Factory
124  {
125  $df = new Data\Factory();
126  $language = $this->createMock(ILIAS\Language\Language::class);
128  $this->createMock(\ILIAS\UI\Implementation\Component\Input\UploadLimitResolver::class),
129  new SignalGenerator(),
130  $df,
131  new ILIAS\Refinery\Factory($df, $language),
132  $language
133  );
134  }
135 
136  protected function buildButtonFactory(): I\Button\Factory
137  {
139  }
140 
141  protected function buildGlyphFactory(): I\Symbol\Factory
142  {
144  }
145 
146  protected function buildPopoverFactory(): I\Popover\Factory
147  {
149  }
150 
151  protected function buildLegacyFactory(): I\Legacy\Factory
152  {
154  }
155 
156  protected function buildListingFactory(): I\Listing\Factory
157  {
159  }
160 
161  public function getUIFactory(): NoUIFactory
162  {
163  return new WithNoUIFactories(
164  $this->buildButtonFactory(),
165  $this->buildGlyphFactory(),
166  $this->buildPopoverFactory(),
167  $this->buildLegacyFactory(),
168  $this->buildListingFactory()
169  );
170  }
171 
172  public function buildDataFactory(): Data\Factory
173  {
174  return new Data\Factory();
175  }
176 
177  public function testGetInputs(): void
178  {
179  $f = $this->buildFactory();
180  $if = $this->buildInputFactory();
181  $name_source = new FixedNameSourceFilter();
182 
183  $inputs = [$if->text(""), $if->select("", [])];
184  $inputs_rendered = [true, true];
185  $filter = $f->standard(
186  "#",
187  "#",
188  "#",
189  "#",
190  "#",
191  "#",
192  $inputs,
193  $inputs_rendered,
194  false,
195  false
196  );
197 
198  $seen_names = [];
199  $inputs = $filter->getInputs();
200 
201  foreach ($inputs as $input) {
202  $name = $input->getName();
203  $name_source->name = $name;
204 
205  // name is a string
206  $this->assertIsString($name);
207 
208  // only name is attached
209  $input = array_shift($inputs);
210  $this->assertEquals($input->withNameFrom($name_source), $input);
211 
212  // every name can only be contained once.
213  $this->assertNotContains($name, $seen_names);
214  $seen_names[] = $name;
215  }
216  }
217 
218  public function testExtractParamData(): void
219  {
220  $filter = new ConcreteFilter(
221  new SignalGenerator(),
222  $this->buildInputFactory(),
223  "#",
224  "#",
225  "#",
226  "#",
227  "#",
228  "#",
229  [],
230  [],
231  false,
232  false
233  );
234  $request = $this->createMock(ServerRequestInterface::class);
235  $request
236  ->expects($this->once())
237  ->method("getQueryParams")
238  ->willReturn([]);
239  $input_data = $filter->_extractParamData($request);
240  $this->assertInstanceOf(InputData::class, $input_data);
241  }
242 
243  public function testWithRequest(): void
244  {
245  $request = $this->createMock(ServerRequestInterface::class);
246  $input_data = $this->createMock(InputData::class);
247 
248  $df = $this->buildDataFactory();
249 
250  $input_1 = $this->inputMock();
251  $input_1
252  ->expects($this->once())
253  ->method("withInput")
254  ->with($input_data)
255  ->willReturn($input_1);
256  $input_1
257  ->expects($this->once())
258  ->method("getContent")
259  ->willReturn($df->ok(0));
260 
261  $input_2 = $this->inputMock();
262  $input_2
263  ->expects($this->once())
264  ->method("withInput")
265  ->with($input_data)
266  ->willReturn($input_2);
267  $input_2
268  ->expects($this->once())
269  ->method("getContent")
270  ->willReturn($df->ok(0));
271 
272  $filter = new ConcreteFilter(
273  new SignalGenerator(),
274  $this->buildInputFactory(),
275  "#",
276  "#",
277  "#",
278  "#",
279  "#",
280  "#",
281  [],
282  [],
283  false,
284  false
285  );
286  $filter->setInputs([$input_1, $input_2]);
287  $filter->input_data = $input_data;
288 
289  $filter2 = $filter->withRequest($request);
290 
291  $this->assertNotSame($filter2, $filter);
292  $this->assertInstanceOf(Filter::class, $filter2);
293  $this->assertEquals([$input_1, $input_2], $filter2->getInputs());
294  }
295 
296  public function testGetData(): void
297  {
298  $df = $this->buildDataFactory();
299  $request = $this->createMock(ServerRequestInterface::class);
300  $request
301  ->expects($this->once())
302  ->method("getQueryParams")
303  ->willReturn([]);
304 
305  $input_1 = $this->inputMock();
306  $input_1
307  ->expects($this->once())
308  ->method("getContent")
309  ->willReturn($df->ok(1));
310  $input_1
311  ->expects($this->once())
312  ->method("withInput")
313  ->willReturn($input_1);
314 
315  $input_2 = $this->inputMock();
316  $input_2
317  ->expects($this->once())
318  ->method("getContent")
319  ->willReturn($df->ok(2));
320  $input_2
321  ->expects($this->once())
322  ->method("withInput")
323  ->willReturn($input_2);
324 
325  $filter = new ConcreteFilter(
326  new SignalGenerator(),
327  $this->buildInputFactory(),
328  "#",
329  "#",
330  "#",
331  "#",
332  "#",
333  "#",
334  [],
335  [],
336  false,
337  false
338  );
339  $filter->setInputs([$input_1, $input_2]);
340  $filter = $filter->withRequest($request);
341  $this->assertEquals([1, 2], $filter->getData());
342  }
343 
344  public function testWithActivated(): void
345  {
346  $f = $this->buildFactory();
347  $if = $this->buildInputFactory();
348  $inputs = [$if->text(""), $if->text("")];
349  $inputs_rendered = [true, true];
350 
351  $filter = $f->standard(
352  "#",
353  "#",
354  "#",
355  "#",
356  "#",
357  "#",
358  $inputs,
359  $inputs_rendered,
360  false,
361  false
362  );
363  $filter1 = $filter->withActivated();
364 
365  $this->assertFalse($filter->isActivated());
366  $this->assertTrue($filter1->isActivated());
367  }
368 
369  public function testWithDeactivated(): void
370  {
371  $f = $this->buildFactory();
372  $if = $this->buildInputFactory();
373  $inputs = [$if->text(""), $if->text("")];
374  $inputs_rendered = [true, true];
375 
376  $filter = $f->standard(
377  "#",
378  "#",
379  "#",
380  "#",
381  "#",
382  "#",
383  $inputs,
384  $inputs_rendered,
385  true,
386  false
387  );
388  $filter1 = $filter->withDeactivated();
389 
390  $this->assertTrue($filter->isActivated());
391  $this->assertFalse($filter1->isActivated());
392  }
393 
394  public function testWithExpanded(): void
395  {
396  $f = $this->buildFactory();
397  $if = $this->buildInputFactory();
398  $inputs = [$if->text(""), $if->text("")];
399  $inputs_rendered = [true, true];
400 
401  $filter = $f->standard(
402  "#",
403  "#",
404  "#",
405  "#",
406  "#",
407  "#",
408  $inputs,
409  $inputs_rendered,
410  false,
411  false
412  );
413  $filter1 = $filter->withExpanded();
414 
415  $this->assertFalse($filter->isExpanded());
416  $this->assertTrue($filter1->isExpanded());
417  }
418 
419  public function testWithCollapsed(): void
420  {
421  $f = $this->buildFactory();
422  $if = $this->buildInputFactory();
423  $inputs = [$if->text(""), $if->text("")];
424  $inputs_rendered = [true, true];
425 
426  $filter = $f->standard(
427  "#",
428  "#",
429  "#",
430  "#",
431  "#",
432  "#",
433  $inputs,
434  $inputs_rendered,
435  false,
436  true
437  );
438  $filter1 = $filter->withCollapsed();
439 
440  $this->assertTrue($filter->isExpanded());
441  $this->assertFalse($filter1->isExpanded());
442  }
443 
447  protected function inputMock()
448  {
449  static $no = 2000;
450  return $this
451  ->getMockBuilder(Input\Field\FormInputInternal::class)
452  ->onlyMethods([
453  "getName",
454  "withDedicatedName",
455  "withNameFrom",
456  "withInput",
457  "getContent",
458  "getLabel",
459  "withLabel",
460  "getByline",
461  "withByline",
462  "isRequired",
463  "withRequired",
464  "isDisabled",
465  "withDisabled",
466  "getValue",
467  "withValue",
468  "getError",
469  "withError",
470  "withAdditionalTransformation",
471  "getUpdateOnLoadCode",
472  "getCanonicalName",
473  "withOnLoadCode",
474  "withAdditionalOnLoadCode",
475  "getOnLoadCode",
476  "withOnUpdate",
477  "appendOnUpdate",
478  "withResetTriggeredSignals",
479  "getTriggeredSignals"
480  ])
481  ->setMockClassName("Mock_InputNo" . ($no++))
482  ->getMock();
483  }
484 }
setInputs(array $inputs)
Definition: FilterTest.php:97
Input Field Factory $input_factory
Definition: FilterTest.php:49
buildDataFactory()
Definition: FilterTest.php:172
buildLegacyFactory()
Definition: FilterTest.php:151
Describes how Input-Elements want to interact with posted data.
Definition: InputData.php:29
Interface Observer Contains several chained tasks and infos about them.
getNewName()
Generates a unique name on every call.
Definition: FilterTest.php:39
testWithExpanded()
Definition: FilterTest.php:394
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
_extractParamData(ServerRequestInterface $request)
Definition: FilterTest.php:83
testWithActivated()
Definition: FilterTest.php:344
buildInputFactory()
Definition: FilterTest.php:123
__construct(SignalGenerator $signal_generator, Input\Field\Factory $field_factory, $toggle_action_on, $toggle_action_off, $expand_action, $collapse_action, $apply_action, $reset_action, array $inputs, array $is_input_rendered, bool $is_activated, bool $is_expanded)
Definition: FilterTest.php:52
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testWithCollapsed()
Definition: FilterTest.php:419
buildPopoverFactory()
Definition: FilterTest.php:146
Test on filter implementation.
Definition: FilterTest.php:113
extractParamData(ServerRequestInterface $request)
Definition: FilterTest.php:88
buildListingFactory()
Definition: FilterTest.php:156
testExtractParamData()
Definition: FilterTest.php:218
Builds data types.
Definition: Factory.php:35
buildGlyphFactory()
Definition: FilterTest.php:141
Group $input_group
Definition: FilterTest.php:50
__construct(Container $dic, ilPlugin $plugin)
This describes commonalities between all inputs.
Definition: Input.php:46
buildButtonFactory()
Definition: FilterTest.php:136
Describes a source for input names.
Definition: NameSource.php:26
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testWithDeactivated()
Definition: FilterTest.php:369