25 "mod1" => [
"components/ILIAS",
"Module1", [
29 "mod2" => [
"components/ILIAS",
"Module2", [
31 "ser1" => [
"components/ILIAS",
"Service1", [
34 "ser2" => [
"components/ILIAS",
"Service2", [
49 "richard.klees@concepts-and-training.de",
63 "richard.klees@concepts-and-training.de",
77 "richard.klees@concepts-and-training.de",
102 $this->data_factory =
new Data\Factory();
103 $this->ilias_version = $this->createMock(
Data\Version::class);
105 public function isPluginActivated(
string $id):
bool 113 public function setActivation(
string $id,
bool $activated):
void 116 public function getCurrentPluginVersion(
string $id): ?
Data\Version 120 public function getCurrentPluginDBVersion(
string $id): ?
int 124 public function setCurrentPluginVersion(
string $id,
Data\
Version $version,
int $db_version):
void 127 public function remove(
string $id):
void 133 protected function readComponentData(): array
137 protected function readPluginData(): array
141 public function _buildDatabase():
void 143 $this->buildDatabase();
162 $this->ilias_version,
167 $this->data_factory->version(
"0.9.1"),
169 $this->data_factory->version(
"1.9.1"),
170 $this->data_factory->version(
"8.0"),
171 $this->data_factory->version(
"8.999"),
173 "richard.klees@concepts-and-training.de",
230 $this->ilias_version,
235 $this->data_factory->version(
"0.9.1"),
237 $this->data_factory->version(
"2.9.1"),
238 $this->data_factory->version(
"8.1"),
239 $this->data_factory->version(
"8.999"),
241 "richard.klees@concepts-and-training.de",
249 $this->ilias_version,
254 $this->data_factory->version(
"0.9.1"),
256 $this->data_factory->version(
"2.9.2"),
257 $this->data_factory->version(
"8.1"),
258 $this->data_factory->version(
"8.999"),
260 "richard.klees@concepts-and-training.de",
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"));
282 $this->expectException(\InvalidArgumentException::class);
283 $this->db->hasComponent(
"OtherComponent",
"Module1");
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"));
300 $result = iterator_to_array($this->db->getComponents());
302 $ids = array_keys($result);
303 $expected_ids = [
"mod1",
"mod2",
"ser1",
"ser2"];
307 $this->assertEquals($expected_ids, $ids);
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"]);
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"));
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"));
333 $this->expectException(\InvalidArgumentException::class);
334 $this->db->getComponentByTypeAndName(
"components/ILIAS",
"Module3");
339 $this->expectException(\InvalidArgumentException::class);
340 $this->db->getComponentByTypeAndName(
"OtherComponent",
"Service1");
345 $this->expectException(\InvalidArgumentException::class);
346 $this->db->getComponentById(
"some_id");
351 $slots = iterator_to_array($this->db->getPluginSlots());
353 $ids = array_keys($slots);
354 $expected_ids = [
"slt1",
"slt2",
"slt3",
"slt4"];
358 $this->assertEquals($expected_ids, $ids);
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"]);
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"));
377 protected function readComponentData(): array
379 return [
"mod2" => [
"components/ILIAS",
"Module2", []]];
381 protected function readPluginData(): array
388 $this->assertEquals([], $slots);
393 $plugins = iterator_to_array($this->db->getPlugins());
395 $ids = array_keys($plugins);
396 $expected_ids = [
"plg1",
"plg2",
"plg3"];
400 $this->assertEquals($expected_ids, $ids);
402 $this->assertEquals($this->plg1, $plugins[
"plg1"]);
403 $this->assertEquals($this->
plg2, $plugins[
"plg2"]);
408 $this->assertEquals($this->plg1, $this->db->getPluginById(
"plg1"));
409 $this->assertEquals($this->
plg2, $this->db->getPluginById(
"plg2"));
414 $this->assertEquals($this->plg1, $this->db->getPluginByName(
"Plugin1"));
415 $this->assertEquals($this->
plg2, $this->db->getPluginByName(
"Plugin2"));
420 $this->expectException(\InvalidArgumentException::class);
421 $this->db->getPluginById(
"some_id");
426 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
427 $plugin_state_db->expects($this->once())
428 ->method(
"isPluginActivated")
431 $plugin_state_db->expects($this->once())
432 ->method(
"getCurrentPluginVersion")
434 ->willReturn($this->data_factory->version(
"1.8.0"));
435 $plugin_state_db->expects($this->once())
436 ->method(
"getCurrentPluginDBVersion")
441 protected function readComponentData(): array
443 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
445 protected function readPluginData(): array
457 "richard.klees@concepts-and-training.de",
467 $this->assertTrue(
$plugin->isActivated());
469 $this->data_factory->version(
"1.8.0"),
472 $this->assertEquals(42,
$plugin->getCurrentDBVersion());
478 ->getComponentByTypeAndName(
"components/ILIAS",
"Module1")
479 ->getPluginSlotById(
"slt1")
480 ->getPluginById(
"plg1");
482 $this->assertEquals($this->plg1, $plg1);
487 $VERSION = $this->data_factory->version(
"1000.0.0");
490 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
492 ->method(
"isPluginActivated")
496 ->method(
"getCurrentPluginVersion")
498 ->willReturn($this->data_factory->version(
"1.8.0"));
500 ->method(
"getCurrentPluginDBVersion")
503 $plugin_state_db->expects($this->once())
504 ->method(
"setCurrentPluginVersion")
505 ->with(
"plg1", $VERSION, $DB_VERSION);
508 protected function readComponentData(): array
510 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
512 protected function readPluginData(): array
524 "richard.klees@concepts-and-training.de",
538 $VERSION = $this->data_factory->version(
"1000.0.0");
541 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
543 public int $build_called = 0;
544 protected function buildDatabase():
void 546 $this->build_called++;
547 parent::buildDatabase();
549 protected function readComponentData(): array
551 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
553 protected function readPluginData(): array
565 "richard.klees@concepts-and-training.de",
574 $this->assertEquals(1, $db->build_called);
578 $this->assertEquals(2, $db->build_called);
583 $this->db->_buildDatabase();
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"));
594 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
597 protected function readComponentData(): array
599 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
601 protected function readPluginData(): array
613 "richard.klees@concepts-and-training.de",
622 $plugin_state_db->expects($this->once())
623 ->method(
"setActivation")
624 ->with(
"plg1",
true);
631 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
633 public int $build_called = 0;
634 protected function buildDatabase():
void 636 $this->build_called++;
637 parent::buildDatabase();
639 protected function readComponentData(): array
641 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
643 protected function readPluginData(): array
655 "richard.klees@concepts-and-training.de",
664 $this->assertEquals(1, $db->build_called);
668 $this->assertEquals(2, $db->build_called);
673 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
676 protected function readComponentData(): array
678 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
680 protected function readPluginData(): array
692 "richard.klees@concepts-and-training.de",
701 $plugin_state_db->expects($this->once())
710 $plugin_state_db = $this->createMock(ilPluginStateDB::class);
712 public int $build_called = 0;
713 protected function buildDatabase():
void 715 $this->build_called++;
716 parent::buildDatabase();
718 protected function readComponentData(): array
720 return [
"mod1" => [
"components/ILIAS",
"Module1", [[
"slt1",
"Slot1"]]]];
722 protected function readPluginData(): array
734 "richard.klees@concepts-and-training.de",
743 $this->assertEquals(1, $db->build_called);
747 $this->assertEquals(2, $db->build_called);
752 $this->assertTrue($this->db->hasPluginId(
"plg1"));
753 $this->assertFalse($this->db->hasPluginId(
"plg666"));
758 $this->assertFalse($this->db->hasActivatedPlugin(
"plg1"));
759 $this->assertFalse($this->db->hasActivatedPlugin(
"plg666"));
760 $this->assertTrue($this->db->hasActivatedPlugin(
"plg3"));
Data Factory $data_factory
static array static array plg2
Data Version $ilias_version
setCurrentPluginVersion(string $plugin_id, Data\Version $version, int $db_version)
static array static array Richard richard klees concepts and training true
testHasComponentThrowsOnUnknownType()
testSetCurrentPluginVersionCallsStateDB()
testRemoveStateInformationOfTriggersRebuild()
static array static array Richard richard klees concepts and training null
testGetComponentByTypeAndNameThrowsOnUnknownComponent1()
testGetComponentByTypeAndName()
Simple value class for basic information about a pluginslot.
sort()
description: > Example for rendering a Sort Glyph.
testSetActivationCallsStateDB()
testGetPluginViaComponentAndPluginSlot()
removeStateInformationOf(string $plugin_id)
static array $component_data
ilArtifactComponentRepository $db
testGetComponentByTypeAndNameThrowsOnUnknownComponent2()
testSetCurrentPluginVersionCallsStateDBTriggersRebuild()
setActivation(string $plugin_id, bool $activated)
Repository interface for plugin state data.
Simple value class for information about a plugin.
testRemoveStateInformationOfCallsStateDB()
ilPluginStateDB $plugin_state_db
getPluginById(string $id)
Get a plugin by id.
testGetComponentByIdTypeThrowsOnInvalidId()
Repository for component data implemented over artifacts.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static array static array Richard richard klees concepts and training plg3
testSetActivationTriggersRebuild()
static array static array $plugin_data
A version number that consists of three numbers (major, minor, patch).
static array static array Richard richard klees concepts and training false
Simple value class for basic information about a component.
testCallBuildDatabaseTwice()