ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilComponentBuildPluginInfoObjectiveTest.php
Go to the documentation of this file.
1 <?php
2 
20 
22 {
24  public array $scanned;
25  public array $dirs;
26  public array $read;
27  public array $files;
28  public array $added;
29 
30  protected function setUp(): void
31  {
32  $this->scanned = [];
33  $this->dirs = [];
34  $this->read = [];
35  $this->files = [];
36  $this->added = [];
37  $this->builder = new class ($this) extends ilComponentBuildPluginInfoObjective {
38  protected const BASE_PATH = "plugins/";
40  public function __construct($test)
41  {
42  $this->test = $test;
43  }
44  protected function scanDir(string $dir): array
45  {
46  $this->test->scanned[] = $dir;
47  return $this->test->dirs[$dir] ?? [];
48  }
49  public function _scanDir(string $dir): array
50  {
51  return parent::scanDir($dir);
52  }
53  protected function isDir(string $dir): bool
54  {
55  return true;
56  }
57  public function _isDir(string $dir): bool
58  {
59  return parent::isDir($dir);
60  }
61  public function _isDotFile(string $file): bool
62  {
63  return parent::isDotFile($file);
64  }
65  protected function buildPluginPath(string $component, string $slot, string $plugin): string
66  {
67  return $this->test->files[parent::buildPluginPath($component, $slot, $plugin)];
68  }
69 
70  public function _buildPluginPath(string $component, string $slot, string $plugin): string
71  {
72  return parent::buildPluginPath($component, $slot, $plugin);
73  }
74  protected function addPlugin(array &$data, string $component, string $slot, string $plugin): void
75  {
76  $this->test->added[] = "$component/$slot/$plugin";
77  }
78  public function _addPlugin(array &$data, string $component, string $slot, string $plugin): void
79  {
80  parent::addPlugin($data, $component, $slot, $plugin);
81  }
82  };
83  }
84 
85  public function testScanningTopLevel(): void
86  {
87  $this->builder->build();
88 
89  $expected = ["plugins/"];
90  sort($expected);
91  sort($this->scanned);
92  $this->assertEquals($expected, $this->scanned);
93  }
94 
95  public function testScanningComplete(): void
96  {
97  $this->dirs = [
98  "plugins/" => ["Module1", "Module2"],
99  "plugins/Module1" => ["Slot1", "Slot2"],
100  "plugins/Module2" => []
101  ];
102 
103  $this->builder->build();
104 
105  $expected = ["plugins/", "plugins/Module1", "plugins/Module2",
106  "plugins/Module1/Slot1", "plugins/Module1/Slot2"];
107  sort($expected);
108  sort($this->scanned);
109  $this->assertEquals($expected, $this->scanned);
110  }
111 
112  public function testPluginsAdded(): void
113  {
114  $this->dirs = [
115  "plugins/" => ["Module1"],
116  "plugins/Module1" => ["Slot1"],
117  "plugins/Module1/Slot1" => ["Plugin1", "Plugin2"]
118  ];
119 
120  $this->builder->build();
121 
122  $expected = [
123  "Module1/Slot1/Plugin1",
124  "Module1/Slot1/Plugin2"
125  ];
126  sort($expected);
127  sort($this->added);
128  $this->assertEquals($expected, $this->added);
129  }
130 
131  public function testScanDir(): void
132  {
133  // Use the component directory without artifacts, because this should be mostly stable.
134  $expected = ["Component.php", "README.md", "ROADMAP.md", "classes", "exceptions", "maintenance.json", "service.xml", "src", "tests"];
135  $actual = array_values(
136  array_diff(
137  $this->builder->_scanDir(__DIR__ . "/../.."),
138  ["artifacts", ".DS_Store"] // .DS_Store is a macOS artifact which is not relevant for the test.
139  )
140  );
141  $this->assertEquals($expected, $actual);
142  }
143 
144  public function testIsDir(): void
145  {
146  // Use the component directory, because this should be mostly stable.
147  $expected = true;
148  $actual = $this->builder->_isDir(__DIR__ . "/../..");
149  $this->assertEquals($expected, $actual);
150  }
151 
152  public function testIsDotFile(): void
153  {
154  $expected = true;
155  $actual = $this->builder->_isDotFile(".DS_Store");
156  $this->assertEquals($expected, $actual);
157  }
158 
159  public function testAddPlugins(): void
160  {
161  $data = [];
162  $this->files["plugins/Module1/Slot1/Plugin1/"] = __DIR__ . "/";
163  $this->builder->_addPlugin($data, "Module1", "Slot1", "Plugin1");
164 
165  $expected = [
166  "tstplg" => [
167  "components/ILIAS",
168  "Module1",
169  "Slot1",
170  "Plugin1",
171  "1.9.1",
172  "8.0",
173  "8.999",
174  "Richard Klees",
175  "richard.klees@concepts-and-training.de",
176  true,
177  false,
178  null
179  ]
180  ];
181  $this->assertEquals($expected, $data);
182  }
183 
184  public function testBuildPluginPath(): void
185  {
186  $this->assertEquals("plugins/COMPONENT/SLOT/PLUGIN/", $this->builder->_buildPluginPath("COMPONENT", "SLOT", "PLUGIN"));
187  }
188 }
sort()
description: > Example for rendering a Sort Glyph.
Definition: sort.php:41
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Container $dic, ilPlugin $plugin)