ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
FileTestBase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 require_once(__DIR__ . "/../../../../../../../vendor/composer/vendor/autoload.php");
24 require_once(__DIR__ . "/../../../Base.php");
25 
28 use ILIAS\UI\Component as C;
30 
34 abstract class FileTestBase extends \ILIAS_UI_TestBase
35 {
36  protected C\Dropzone\File\Factory $factory;
37  protected I\Component\Input\Field\File $input;
38  private I\Component\Button\Factory $button_factory;
39 
40  public function setUp(): void
41  {
42  $this->button_factory = new I\Component\Button\Factory();
43 
44  $signal_generator = new I\Component\SignalGenerator();
45  $field_factory = new I\Component\Input\Field\Factory(
46  $this->createMock(I\Component\Input\UploadLimitResolver::class),
47  $signal_generator,
48  $this->getDataFactory(),
49  $this->getRefinery(),
50  $this->getLanguage()
51  );
52 
53  $this->factory = new I\Component\Dropzone\File\Factory(
54  $signal_generator,
55  $field_factory,
56  );
57 
58  $this->input = $field_factory->file($this->createMock(C\Input\Field\UploadHandler::class), '');
59 
60  parent::setUp();
61  }
62 
67  public function getUIFactory(): \NoUIFactory
68  {
69  return new class ($this->button_factory) extends \NoUIFactory {
70  public function __construct(
71  protected I\Component\Button\Factory $button_factory,
72  ) {
73  }
74 
75  public function button(): I\Component\Button\Factory
76  {
77  return $this->button_factory;
78  }
79  };
80  }
81 }
button(string $caption, string $cmd)
factory()
getUIFactory()
Returns the factory with an actual implementation of the button factory.
getLanguage()
Provides common functionality for UI tests.
Definition: Base.php:330
__construct()
Constructor setup ILIAS global object public.
Definition: class.ilias.php:76
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Builds data types.
Definition: Factory.php:35