19 declare(strict_types=1);
21 require_once __DIR__ .
'/ilCtrlPathTestBase.php';
32 $invalid_class = ilCtrlInvalidGuiClass::class;
35 $this->createMock(ilCtrlContextInterface::class),
39 $this->assertNotNull(
$path->getException());
40 $this->expectException(ilCtrlException::class);
41 $this->expectExceptionMessage(
"Class '$invalid_class' was not found in the control structure, try `composer du` to read artifacts.");
42 throw $path->getException();
48 $context = $this->createMock(ilCtrlContextInterface::class);
54 $target_class = ilCtrlCommandClass1TestGUI::class;
61 $this->assertNotNull(
$path->getException());
62 $this->expectException(ilCtrlException::class);
63 $this->expectExceptionMessage(
"ilCtrl cannot find a path for '$target_class' that reaches ''");
64 throw $path->getException();
70 $context = $this->createMock(ilCtrlContextInterface::class);
73 ->willReturn($this->
getPath(
'0:4'))
79 ilCtrlCommandClass1TestGUI::class
82 $this->assertEquals(
'0:2',
$path->getCidPath());
88 $context = $this->createMock(ilCtrlContextInterface::class);
97 ilCtrlBaseClass1TestGUI::class
100 $this->assertEquals(
'0',
$path->getCidPath());
107 $context = $this->createMock(ilCtrlContextInterface::class);
110 ->willReturn($this->
getPath(
'1:2:3'))
116 ilCtrlCommandClass2TestGUI::class
119 $this->assertEquals(
'1:2:3',
$path->getCidPath());
126 $this->createMock(ilCtrlContextInterface::class),
130 $this->assertNotNull(
$path->getException());
131 $this->expectException(ilCtrlException::class);
132 $this->expectExceptionMessage(
"Class '' was not found in the control structure, try `composer du` to read artifacts.");
133 throw $path->getException();
139 $context = $this->createMock(ilCtrlContextInterface::class);
142 ->willReturn($this->
getPath(
'0:2'))
148 ilCtrlBaseClass2TestGUI::class
154 $this->assertEquals(
'0:2:1',
$path->getCidPath());
testSinglePathWithContextBaseClass()
Class ilCtrlSingleClassPath.
testSinglePathWithUnknownClass()
Class ilCtrlSingleClassPathTest.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testSinglePathWithEmptyTargetClassString()
Class ilCtrlPathTestBase.
testSinglePathBaseclassPriority()
testSinglePathWithoutBaseClass()
testSinglePathWithProvidedBaseClass()
getPath(?string $cid_path=null)
testSinglePathWithSameTargetClass()