27 protected function setUp(): void
59 $this->assertEquals(
"mod1", $this->component->getId());
60 $this->assertEquals(
"components/ILIAS", $this->component->getType());
61 $this->assertEquals(
"Module1", $this->component->getName());
62 $this->assertEquals(
"components/ILIAS/Module1", $this->component->getQualifiedName());
67 $this->expectException(\InvalidArgumentException::class);
79 $pluginslots = iterator_to_array($this->component->getPluginSlots());
81 $this->assertCount(2, $pluginslots);
82 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $pluginslots[
"slt1"]);
83 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $pluginslots[
"slt2"]);
88 $this->assertTrue($this->component->hasPluginSlotId(
"slt1"));
89 $this->assertTrue($this->component->hasPluginSlotId(
"slt2"));
90 $this->assertFalse($this->component->hasPluginSlotId(
"slt3"));
96 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $this->component->getPluginSlotById(
"slt1"));
97 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $this->component->getPluginSlotById(
"slt2"));
102 $this->expectException(\InvalidArgumentException::class);
103 $this->component->getPluginSlotById(
"slt3");
108 $this->expectException(\InvalidArgumentException::class);
109 $this->component->getPluginSlotById(
"slt3");
114 $this->assertTrue($this->component->hasPluginSlotName(
"Slot1"));
115 $this->assertTrue($this->component->hasPluginSlotName(
"Slot2"));
116 $this->assertFalse($this->component->hasPluginSlotName(
"Slot3"));
122 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt1",
"Slot1", $plugins), $this->component->getPluginSlotByName(
"Slot1"));
123 $this->assertEquals(
new ilPluginSlotInfo($this->component,
"slt2",
"Slot2", $plugins), $this->component->getPluginSlotByName(
"Slot2"));
128 $this->expectException(\InvalidArgumentException::class);
129 $this->component->getPluginSlotById(
"Slot3");
testGetUnknownPluginSlotById()
Simple value class for basic information about a pluginslot.
testGetPluginSlotByName()
ilPluginSlotInfo $pluginslot1
ilPluginSlotInfo $pluginslot2
testGetUnknownPluginSlot()
testInvalidTypeThrowsException()
ilComponentInfo $component
testGetUnknownPluginSlotByName()
Simple value class for basic information about a component.