ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilArtifactComponentRepositoryTest.php
Go to the documentation of this file.
1 <?php
2 
20 use ILIAS\Data;
21 
23 {
24  public static array $component_data = [
25  "mod1" => ["components/ILIAS", "Module1", [
26  ["slt1", "Slot1"],
27  ["slt2", "Slot2"],
28  ]],
29  "mod2" => ["components/ILIAS", "Module2", [
30  ]],
31  "ser1" => ["components/ILIAS", "Service1", [
32  ["slt3", "Slot3"]
33  ]],
34  "ser2" => ["components/ILIAS", "Service2", [
35  ["slt4", "Slot4"]
36  ]]
37  ];
38 
39  public static array $plugin_data = [
40  "plg1" => [
41  "components/ILIAS",
42  "Module1",
43  "Slot1",
44  "Plugin1",
45  "1.9.1",
46  "8.0",
47  "8.999",
48  "Richard Klees",
49  "richard.klees@concepts-and-training.de",
50  true,
51  false,
52  null
53  ],
54  "plg2" => [
55  "components/ILIAS",
56  "Service2",
57  "Slot4",
58  "Plugin2",
59  "2.9.1",
60  "8.1",
61  "8.999",
62  "Richard Klees",
63  "richard.klees@concepts-and-training.de",
64  null,
65  true,
66  false
67  ],
68  "plg3" => [
69  "components/ILIAS",
70  "Service2",
71  "Slot4",
72  "Plugin3",
73  "2.9.2",
74  "8.1",
75  "8.999",
76  "Richard Klees",
77  "richard.klees@concepts-and-training.de",
78  null,
79  true,
80  false
81  ]
82  ];
83 
84  protected Data\Factory $data_factory;
90  protected ilPluginInfo $plg1;
97  protected ilPluginInfo $plg2;
98  protected ilPluginInfo $plg3;
99 
100  protected function setUp(): void
101  {
102  $this->data_factory = new Data\Factory();
103  $this->ilias_version = $this->createMock(Data\Version::class);
104  $this->plugin_state_db = new class () implements ilPluginStateDB {
105  public function isPluginActivated(string $id): bool
106  {
107  if ($id == 'plg3') {
108  return true;
109  }
110 
111  return false;
112  }
113  public function setActivation(string $id, bool $activated): void
114  {
115  }
116  public function getCurrentPluginVersion(string $id): ?Data\Version
117  {
118  return (new Data\Factory())->version("0.9.1");
119  }
120  public function getCurrentPluginDBVersion(string $id): ?int
121  {
122  return 13;
123  }
124  public function setCurrentPluginVersion(string $id, Data\Version $version, int $db_version): void
125  {
126  }
127  public function remove(string $id): void
128  {
129  }
130  };
131 
133  protected function readComponentData(): array
134  {
136  }
137  protected function readPluginData(): array
138  {
140  }
141  public function _buildDatabase(): void
142  {
143  $this->buildDatabase();
144  }
145  };
146 
147  $slots1 = [];
148  $this->mod1 = new ilComponentInfo(
149  "mod1",
150  "components/ILIAS",
151  "Module1",
152  $slots1
153  );
154  $plugins1 = [];
155  $this->slt1 = new ilPluginSlotInfo(
156  $this->mod1,
157  "slt1",
158  "Slot1",
159  $plugins1
160  );
161  $this->plg1 = new ilPluginInfo(
162  $this->ilias_version,
163  $this->slt1,
164  "plg1",
165  "Plugin1",
166  false,
167  $this->data_factory->version("0.9.1"),
168  13,
169  $this->data_factory->version("1.9.1"),
170  $this->data_factory->version("8.0"),
171  $this->data_factory->version("8.999"),
172  "Richard Klees",
173  "richard.klees@concepts-and-training.de",
174  true,
175  false,
176  true
177  );
178  $plugins1["plg1"] = $this->plg1;
179  $plugins2 = [];
180  $this->slt2 = new ilPluginSlotInfo(
181  $this->mod1,
182  "slt2",
183  "Slot2",
184  $plugins2
185  );
186  $slots1 = ["slt1" => $this->slt1, "slt2" => $this->slt2];
187 
188  $slots2 = [];
189  $this->mod2 = new ilComponentInfo(
190  "mod2",
191  "components/ILIAS",
192  "Module2",
193  $slots2
194  );
195 
196  $slots3 = [];
197  $this->ser1 = new ilComponentInfo(
198  "ser1",
199  "components/ILIAS",
200  "Service1",
201  $slots3
202  );
203 
204  $plugins3 = [];
205  $this->slt3 = new ilPluginSlotInfo(
206  $this->ser1,
207  "slt3",
208  "Slot3",
209  $plugins3
210  );
211  $slots3 = ["slt3" => $this->slt3];
212 
213  $slots4 = [];
214  $this->ser2 = new ilComponentInfo(
215  "ser2",
216  "components/ILIAS",
217  "Service2",
218  $slots4
219  );
220  $plugins4 = [];
221  $this->slt4 = new ilPluginSlotInfo(
222  $this->ser2,
223  "slt4",
224  "Slot4",
225  $plugins4
226  );
227  $slots4 = ["slt4" => $this->slt4];
228 
229  $this->plg2 = new ilPluginInfo(
230  $this->ilias_version,
231  $this->slt4,
232  "plg2",
233  "Plugin2",
234  false,
235  $this->data_factory->version("0.9.1"),
236  13,
237  $this->data_factory->version("2.9.1"),
238  $this->data_factory->version("8.1"),
239  $this->data_factory->version("8.999"),
240  "Richard Klees",
241  "richard.klees@concepts-and-training.de",
242  false,
243  true,
244  false
245  );
246  $plugins4["plg2"] = $this->plg2;
247 
248  $this->plg3 = new ilPluginInfo(
249  $this->ilias_version,
250  $this->slt4,
251  "plg3",
252  "Plugin3",
253  true,
254  $this->data_factory->version("0.9.1"),
255  13,
256  $this->data_factory->version("2.9.2"),
257  $this->data_factory->version("8.1"),
258  $this->data_factory->version("8.999"),
259  "Richard Klees",
260  "richard.klees@concepts-and-training.de",
261  false,
262  true,
263  false
264  );
265  $plugins4["plg3"] = $this->plg3;
266  }
267 
268  public function testHasComponent(): void
269  {
270  $this->assertTrue($this->db->hasComponent("components/ILIAS", "Module1"));
271  $this->assertTrue($this->db->hasComponent("components/ILIAS", "Module2"));
272  $this->assertTrue($this->db->hasComponent("components/ILIAS", "Service1"));
273  $this->assertTrue($this->db->hasComponent("components/ILIAS", "Service2"));
274  $this->assertFalse($this->db->hasComponent("components/ILIAS", "Module3"));
275  $this->assertFalse($this->db->hasComponent("components/ILIAS", "Module4"));
276  $this->assertFalse($this->db->hasComponent("components/ILIAS", "Service3"));
277  $this->assertFalse($this->db->hasComponent("components/ILIAS", "Service4"));
278  }
279 
280  public function testHasComponentThrowsOnUnknownType(): void
281  {
282  $this->expectException(\InvalidArgumentException::class);
283  $this->db->hasComponent("OtherComponent", "Module1");
284  }
285 
286  public function testHasComponentId(): void
287  {
288  $this->assertTrue($this->db->hasComponentId("mod1"));
289  $this->assertTrue($this->db->hasComponentId("mod2"));
290  $this->assertTrue($this->db->hasComponentId("ser1"));
291  $this->assertTrue($this->db->hasComponentId("ser2"));
292  $this->assertFalse($this->db->hasComponentId("mod3"));
293  $this->assertFalse($this->db->hasComponentId("mod4"));
294  $this->assertFalse($this->db->hasComponentId("ser3"));
295  $this->assertFalse($this->db->hasComponentId("ser4"));
296  }
297 
298  public function testGetComponents(): void
299  {
300  $result = iterator_to_array($this->db->getComponents());
301 
302  $ids = array_keys($result);
303  $expected_ids = ["mod1", "mod2", "ser1", "ser2"];
304  sort($ids);
305  sort($expected_ids);
306 
307  $this->assertEquals($expected_ids, $ids);
308 
309  $this->assertEquals($this->mod1, $result["mod1"]);
310  $this->assertEquals($this->mod2, $result["mod2"]);
311  $this->assertEquals($this->ser1, $result["ser1"]);
312  $this->assertEquals($this->ser2, $result["ser2"]);
313  }
314 
315  public function testGetComponentById(): void
316  {
317  $this->assertEquals($this->mod1, $this->db->getComponentById("mod1"));
318  $this->assertEquals($this->mod2, $this->db->getComponentById("mod2"));
319  $this->assertEquals($this->ser1, $this->db->getComponentById("ser1"));
320  $this->assertEquals($this->ser2, $this->db->getComponentById("ser2"));
321  }
322 
323  public function testGetComponentByTypeAndName(): void
324  {
325  $this->assertEquals($this->mod1, $this->db->getComponentByTypeAndName("components/ILIAS", "Module1"));
326  $this->assertEquals($this->mod2, $this->db->getComponentByTypeAndName("components/ILIAS", "Module2"));
327  $this->assertEquals($this->ser1, $this->db->getComponentByTypeAndName("components/ILIAS", "Service1"));
328  $this->assertEquals($this->ser2, $this->db->getComponentByTypeAndName("components/ILIAS", "Service2"));
329  }
330 
332  {
333  $this->expectException(\InvalidArgumentException::class);
334  $this->db->getComponentByTypeAndName("components/ILIAS", "Module3");
335  }
336 
338  {
339  $this->expectException(\InvalidArgumentException::class);
340  $this->db->getComponentByTypeAndName("OtherComponent", "Service1");
341  }
342 
344  {
345  $this->expectException(\InvalidArgumentException::class);
346  $this->db->getComponentById("some_id");
347  }
348 
349  public function testGetPluginSlots(): void
350  {
351  $slots = iterator_to_array($this->db->getPluginSlots());
352 
353  $ids = array_keys($slots);
354  $expected_ids = ["slt1", "slt2", "slt3", "slt4"];
355  sort($ids);
356  sort($expected_ids);
357 
358  $this->assertEquals($expected_ids, $ids);
359 
360  $this->assertEquals($this->slt1, $slots["slt1"]);
361  $this->assertEquals($this->slt2, $slots["slt2"]);
362  $this->assertEquals($this->slt3, $slots["slt3"]);
363  $this->assertEquals($this->slt4, $slots["slt4"]);
364  }
365 
366  public function testGetPluginslotById(): void
367  {
368  $this->assertEquals($this->slt1, $this->db->getPluginSlotById("slt1"));
369  $this->assertEquals($this->slt2, $this->db->getPluginSlotById("slt2"));
370  $this->assertEquals($this->slt3, $this->db->getPluginSlotById("slt3"));
371  $this->assertEquals($this->slt4, $this->db->getPluginSlotById("slt4"));
372  }
373 
374  public function testNoPluginSlot(): void
375  {
377  protected function readComponentData(): array
378  {
379  return ["mod2" => ["components/ILIAS", "Module2", []]];
380  }
381  protected function readPluginData(): array
382  {
383  return [];
384  }
385  };
386 
387  $slots = iterator_to_array($db->getPluginSlots());
388  $this->assertEquals([], $slots);
389  }
390 
391  public function testGetPlugins(): void
392  {
393  $plugins = iterator_to_array($this->db->getPlugins());
394 
395  $ids = array_keys($plugins);
396  $expected_ids = ["plg1", "plg2", "plg3"];
397  sort($ids);
398  sort($expected_ids);
399 
400  $this->assertEquals($expected_ids, $ids);
401 
402  $this->assertEquals($this->plg1, $plugins["plg1"]);
403  $this->assertEquals($this->plg2, $plugins["plg2"]);
404  }
405 
406  public function testGetPluginById(): void
407  {
408  $this->assertEquals($this->plg1, $this->db->getPluginById("plg1"));
409  $this->assertEquals($this->plg2, $this->db->getPluginById("plg2"));
410  }
411 
412  public function testGetPluginByName(): void
413  {
414  $this->assertEquals($this->plg1, $this->db->getPluginByName("Plugin1"));
415  $this->assertEquals($this->plg2, $this->db->getPluginByName("Plugin2"));
416  }
417 
418  public function testUnknownPlugin(): void
419  {
420  $this->expectException(\InvalidArgumentException::class);
421  $this->db->getPluginById("some_id");
422  }
423 
424  public function testUsesPluginStateDB(): void
425  {
426  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
427  $plugin_state_db->expects($this->once())
428  ->method("isPluginActivated")
429  ->with("plg1")
430  ->willReturn(true);
431  $plugin_state_db->expects($this->once())
432  ->method("getCurrentPluginVersion")
433  ->with("plg1")
434  ->willReturn($this->data_factory->version("1.8.0"));
435  $plugin_state_db->expects($this->once())
436  ->method("getCurrentPluginDBVersion")
437  ->with("plg1")
438  ->willReturn(42);
439 
441  protected function readComponentData(): array
442  {
443  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
444  }
445  protected function readPluginData(): array
446  {
447  return [
448  "plg1" => [
449  "components/ILIAS",
450  "Module1",
451  "Slot1",
452  "Plugin1",
453  "1.9.1",
454  "8.0",
455  "8.999",
456  "Richard Klees",
457  "richard.klees@concepts-and-training.de",
458  true,
459  false,
460  null
461  ]
462  ];
463  }
464  };
465 
466  $plugin = $db->getPluginById("plg1");
467  $this->assertTrue($plugin->isActivated());
468  $this->assertEquals(
469  $this->data_factory->version("1.8.0"),
470  $plugin->getCurrentVersion()
471  );
472  $this->assertEquals(42, $plugin->getCurrentDBVersion());
473  }
474 
476  {
477  $plg1 = $this->db
478  ->getComponentByTypeAndName("components/ILIAS", "Module1")
479  ->getPluginSlotById("slt1")
480  ->getPluginById("plg1");
481 
482  $this->assertEquals($this->plg1, $plg1);
483  }
484 
486  {
487  $VERSION = $this->data_factory->version("1000.0.0");
488  $DB_VERSION = 1000;
489 
490  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
491  $plugin_state_db
492  ->method("isPluginActivated")
493  ->with("plg1")
494  ->willReturn(true);
495  $plugin_state_db
496  ->method("getCurrentPluginVersion")
497  ->with("plg1")
498  ->willReturn($this->data_factory->version("1.8.0"));
499  $plugin_state_db
500  ->method("getCurrentPluginDBVersion")
501  ->with("plg1")
502  ->willReturn(42);
503  $plugin_state_db->expects($this->once())
504  ->method("setCurrentPluginVersion")
505  ->with("plg1", $VERSION, $DB_VERSION);
506 
508  protected function readComponentData(): array
509  {
510  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
511  }
512  protected function readPluginData(): array
513  {
514  return [
515  "plg1" => [
516  "components/ILIAS",
517  "Module1",
518  "Slot1",
519  "Plugin1",
520  "1.9.1",
521  "8.0",
522  "8.999",
523  "Richard Klees",
524  "richard.klees@concepts-and-training.de",
525  true,
526  false,
527  null
528  ]
529  ];
530  }
531  };
532 
533  $db->setCurrentPluginVersion("plg1", $VERSION, $DB_VERSION);
534  }
535 
537  {
538  $VERSION = $this->data_factory->version("1000.0.0");
539  $DB_VERSION = 1000;
540 
541  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
543  public int $build_called = 0;
544  protected function buildDatabase(): void
545  {
546  $this->build_called++;
547  parent::buildDatabase();
548  }
549  protected function readComponentData(): array
550  {
551  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
552  }
553  protected function readPluginData(): array
554  {
555  return [
556  "plg1" => [
557  "components/ILIAS",
558  "Module1",
559  "Slot1",
560  "Plugin1",
561  "1.9.1",
562  "8.0",
563  "8.999",
564  "Richard Klees",
565  "richard.klees@concepts-and-training.de",
566  true,
567  false,
568  null
569  ]
570  ];
571  }
572  };
573 
574  $this->assertEquals(1, $db->build_called);
575 
576  $db->setCurrentPluginVersion("plg1", $VERSION, $DB_VERSION);
577 
578  $this->assertEquals(2, $db->build_called);
579  }
580 
581  public function testCallBuildDatabaseTwice(): void
582  {
583  $this->db->_buildDatabase();
584 
585  $this->assertEquals($this->mod1, $this->db->getComponentById("mod1"));
586  $this->assertEquals($this->mod1, $this->db->getComponentByTypeAndName("components/ILIAS", "Module1"));
587  $this->assertEquals($this->slt1, $this->db->getPluginSlotById("slt1"));
588  $this->assertEquals($this->plg1, $this->db->getPluginById("plg1"));
589  $this->assertEquals($this->plg2, $this->db->getPluginByName("Plugin2"));
590  }
591 
592  public function testSetActivationCallsStateDB(): void
593  {
594  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
595 
597  protected function readComponentData(): array
598  {
599  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
600  }
601  protected function readPluginData(): array
602  {
603  return [
604  "plg1" => [
605  "components/ILIAS",
606  "Module1",
607  "Slot1",
608  "Plugin1",
609  "1.9.1",
610  "8.0",
611  "8.999",
612  "Richard Klees",
613  "richard.klees@concepts-and-training.de",
614  true,
615  false,
616  null
617  ]
618  ];
619  }
620  };
621 
622  $plugin_state_db->expects($this->once())
623  ->method("setActivation")
624  ->with("plg1", true);
625 
626  $db->setActivation("plg1", true);
627  }
628 
629  public function testSetActivationTriggersRebuild(): void
630  {
631  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
633  public int $build_called = 0;
634  protected function buildDatabase(): void
635  {
636  $this->build_called++;
637  parent::buildDatabase();
638  }
639  protected function readComponentData(): array
640  {
641  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
642  }
643  protected function readPluginData(): array
644  {
645  return [
646  "plg1" => [
647  "components/ILIAS",
648  "Module1",
649  "Slot1",
650  "Plugin1",
651  "1.9.1",
652  "8.0",
653  "8.999",
654  "Richard Klees",
655  "richard.klees@concepts-and-training.de",
656  true,
657  false,
658  null
659  ]
660  ];
661  }
662  };
663 
664  $this->assertEquals(1, $db->build_called);
665 
666  $db->setActivation("plg1", false);
667 
668  $this->assertEquals(2, $db->build_called);
669  }
670 
672  {
673  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
674 
676  protected function readComponentData(): array
677  {
678  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
679  }
680  protected function readPluginData(): array
681  {
682  return [
683  "plg1" => [
684  "components/ILIAS",
685  "Module1",
686  "Slot1",
687  "Plugin1",
688  "1.9.1",
689  "8.0",
690  "8.999",
691  "Richard Klees",
692  "richard.klees@concepts-and-training.de",
693  true,
694  false,
695  null
696  ]
697  ];
698  }
699  };
700 
701  $plugin_state_db->expects($this->once())
702  ->method("remove")
703  ->with("plg1");
704 
705  $db->removeStateInformationOf("plg1");
706  }
707 
709  {
710  $plugin_state_db = $this->createMock(ilPluginStateDB::class);
712  public int $build_called = 0;
713  protected function buildDatabase(): void
714  {
715  $this->build_called++;
716  parent::buildDatabase();
717  }
718  protected function readComponentData(): array
719  {
720  return ["mod1" => ["components/ILIAS", "Module1", [["slt1", "Slot1"]]]];
721  }
722  protected function readPluginData(): array
723  {
724  return [
725  "plg1" => [
726  "components/ILIAS",
727  "Module1",
728  "Slot1",
729  "Plugin1",
730  "1.9.1",
731  "8.0",
732  "8.999",
733  "Richard Klees",
734  "richard.klees@concepts-and-training.de",
735  true,
736  false,
737  null
738  ]
739  ];
740  }
741  };
742 
743  $this->assertEquals(1, $db->build_called);
744 
745  $db->removeStateInformationOf("plg1");
746 
747  $this->assertEquals(2, $db->build_called);
748  }
749 
750  public function testHasPluginId(): void
751  {
752  $this->assertTrue($this->db->hasPluginId("plg1"));
753  $this->assertFalse($this->db->hasPluginId("plg666"));
754  }
755 
756  public function testHasActivatedPlugin(): void
757  {
758  $this->assertFalse($this->db->hasActivatedPlugin("plg1")); // exists, but is not activated
759  $this->assertFalse($this->db->hasActivatedPlugin("plg666")); // does not exist
760  $this->assertTrue($this->db->hasActivatedPlugin("plg3")); // exists and is activated
761  }
762 }
setCurrentPluginVersion(string $plugin_id, Data\Version $version, int $db_version)
static array static array Richard richard klees concepts and training true
$version
Definition: plugin.php:24
static array static array Richard richard klees concepts and training null
Simple value class for basic information about a pluginslot.
sort()
description: > Example for rendering a Sort Glyph.
Definition: sort.php:41
setActivation(string $plugin_id, bool $activated)
Repository interface for plugin state data.
Builds data types.
Definition: Factory.php:35
Simple value class for information about a plugin.
Repository for component data implemented over artifacts.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static array static array Richard richard klees concepts and training plg3
A version number that consists of three numbers (major, minor, patch).
Definition: Version.php:26
static array static array Richard richard klees concepts and training false
Simple value class for basic information about a component.