19 declare(strict_types=1);
41 $this->assertTrue(
$structure->isBaseClass(
'baseclass1'));
42 $this->assertTrue(
$structure->isBaseClass(
'baseclass2'));
43 $this->assertTrue(
$structure->isBaseClass(
'baseclass3'));
44 $this->assertFalse(
$structure->isBaseClass(
'baseclass4'));
45 $this->assertFalse(
$structure->isBaseClass(
''));
74 $this->assertEmpty(
$structure->getUnsafeCommandsByCid(
'cid1'));
75 $this->assertEmpty(
$structure->getUnsafeCommandsByName(
'cmdClass1'));
77 $this->assertEquals([
'postCmd1'],
$structure->getSafeCommandsByCid(
'cid1'));
78 $this->assertEquals([
'postCmd1'],
$structure->getSafeCommandsByName(
'cmdClass1'));
80 $this->assertEquals([
'getCmd1'],
$structure->getUnsafeCommandsByCid(
'cid2'));
81 $this->assertEquals([
'getCmd1'],
$structure->getUnsafeCommandsByName(
'cmdClass2'));
83 $this->assertEmpty(
$structure->getSafeCommandsByCid(
'cid2'));
84 $this->assertEmpty(
$structure->getSafeCommandsByName(
'cmdClass2'));
86 $this->assertEmpty(
$structure->getUnsafeCommandsByName(
''));
87 $this->assertEmpty(
$structure->getUnsafeCommandsByCid(
''));
89 $this->assertEmpty(
$structure->getSafeCommandsByCid(
''));
90 $this->assertEmpty(
$structure->getSafeCommandsByName(
''));
116 $this->assertEquals(
'Class1',
$structure->getObjNameByCid(
'cid1'));
117 $this->assertEquals(
'Class1',
$structure->getObjNameByName(
'Class1'));
118 $this->assertEquals(
'Class2',
$structure->getObjNameByCid(
'cid2'));
119 $this->assertEquals(
'Class2',
$structure->getObjNameByName(
'Class2'));
120 $this->assertNull(
$structure->getObjNameByCid(
'cid3'));
121 $this->assertNull(
$structure->getObjNameByName(
'Class3'));
123 $this->assertEquals(
'class1',
$structure->getClassNameByCid(
'cid1'));
124 $this->assertEquals(
'cid1',
$structure->getClassCidByName(
'Class1'));
125 $this->assertEquals(
'class2',
$structure->getClassNameByCid(
'cid2'));
126 $this->assertEquals(
'cid2',
$structure->getClassCidByName(
'Class2'));
127 $this->assertNull(
$structure->getClassNameByCid(
'cid3'));
128 $this->assertNull(
$structure->getClassCidByName(
'Class3'));
130 $this->assertEquals(
'./path/1',
$structure->getRelativePathByCid(
'cid1'));
131 $this->assertEquals(
'./path/1',
$structure->getRelativePathByName(
'Class1'));
132 $this->assertEquals(
'./path/2',
$structure->getRelativePathByCid(
'cid2'));
133 $this->assertEquals(
'./path/2',
$structure->getRelativePathByName(
'Class2'));
134 $this->assertNull(
$structure->getRelativePathByCid(
'cid3'));
135 $this->assertNull(
$structure->getRelativePathByName(
'Class3'));
137 $this->assertEquals([
'class2'],
$structure->getChildrenByCid(
'cid1'));
138 $this->assertEquals([
'class2'],
$structure->getChildrenByName(
'Class1'));
139 $this->assertNull(
$structure->getChildrenByCid(
'cid2'));
140 $this->assertNull(
$structure->getChildrenByName(
'Class2'));
141 $this->assertNull(
$structure->getChildrenByCid(
'cid3'));
142 $this->assertNull(
$structure->getChildrenByName(
'Class3'));
144 $this->assertNull(
$structure->getParentsByCid(
'cid1'));
145 $this->assertNull(
$structure->getParentsByName(
'Class1'));
146 $this->assertEquals([
'class1'],
$structure->getParentsByCid(
'cid2'));
147 $this->assertEquals([
'class1'],
$structure->getParentsByName(
'Class2'));
148 $this->assertNull(
$structure->getParentsByCid(
'cid3'));
149 $this->assertNull(
$structure->getParentsByName(
'Class3'));
156 $structure->setPermanentParameterByClass(
'Class1',
'param1');
157 $structure->setPermanentParameterByClass(
'Class1',
'param2');
158 $structure->setPermanentParameterByClass(
'Class2',
'param1');
161 $this->assertEquals([
'param1',
'param2'],
$structure->getPermanentParametersByClass(
'Class1'));
162 $this->assertEquals([
'param1'],
$structure->getPermanentParametersByClass(
'Class2'));
164 $structure->removeSingleParameterByClass(
'Class1',
'param1');
168 $this->assertEquals([
'param2'],
$structure->getPermanentParametersByClass(
'Class1'));
169 $this->assertEquals([
'param1'],
$structure->getPermanentParametersByClass(
'Class2'));
171 $structure->removePermanentParametersByClass(
'Class1');
175 $this->assertNull(
$structure->getPermanentParametersByClass(
'Class1'));
176 $this->assertEquals([
'param1'],
$structure->getPermanentParametersByClass(
'Class2'));
179 $parameter_name =
'$param';
180 $this->expectException(ilCtrlException::class);
181 $this->expectExceptionMessage(
"Cannot save parameter '$parameter_name', as it contains invalid characters.");
182 $structure->setPermanentParameterByClass(
'Class2', $parameter_name);
191 $this->expectException(ilCtrlException::class);
192 $structure->setPermanentParameterByClass(
'a_class', $protected_parameter);
199 $structure->setTemporaryParameterByClass(
'Class1',
'param1', 1);
200 $structure->setTemporaryParameterByClass(
'Class1',
'param2',
'2');
201 $structure->setTemporaryParameterByClass(
'Class2',
'param1',
true);
204 $this->assertEquals([
'param1' =>
true],
$structure->getTemporaryParametersByClass(
'Class2'));
206 [
'param1' => 1,
'param2' =>
'2'],
207 $structure->getTemporaryParametersByClass(
'Class1')
210 $structure->removeSingleParameterByClass(
'Class1',
'param1');
214 $this->assertEquals([
'param1' =>
true],
$structure->getTemporaryParametersByClass(
'Class2'));
217 $structure->getTemporaryParametersByClass(
'Class1')
220 $structure->removeTemporaryParametersByClass(
'Class1');
224 $this->assertEquals([
'param1' =>
true],
$structure->getTemporaryParametersByClass(
'Class2'));
225 $this->assertNull(
$structure->getTemporaryParametersByClass(
'Class1'));
228 $parameter_name =
'$param';
229 $this->expectException(ilCtrlException::class);
230 $this->expectExceptionMessage(
"Cannot save parameter '$parameter_name', as it contains invalid characters.");
231 $structure->setTemporaryParameterByClass(
'Class3', $parameter_name, 0);
238 $test_url =
'https://domain.com/tests/url';
239 $structure->setReturnTargetByClass(
'Class1', $test_url);
240 $this->assertEquals($test_url,
$structure->getReturnTargetByClass(
'Class1'));
241 $this->assertNull(
$structure->getReturnTargetByClass(
'Class2'));
Class ilCtrlStructureTest.
Class ilCtrlStructure holds the currently read control structure.
testStructureSecurityInfos()
static getProtectedParameters()
testStructureBaseClasses()
const KEY_UNSAFE_COMMANDS
testStructureSavedParameters()
const KEY_CLASS_CID
array key constants that are used for certain information.
$structure
TOTAL STRUCTURE.
testStructureSavedParametersWithProtectedKey($protected_parameter)
getProtectedParameters
testStructureReturnTargets()
testStructureTemporaryParameters()