39 protected function setUp() : void
41 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
42 ilUnitUtil::performInitialisation();
47 $tree =
new ilTree(ROOT_FOLDER_ID);
48 $childs = $tree->getChilds(14);
50 $this->assertEquals(count($childs), 1);
60 $tree =
new ilTree(ROOT_FOLDER_ID);
61 $childs = $tree->getChildsByType(9,
'cals');
63 $this->assertEquals(count($childs), 1);
73 $tree =
new ilTree(ROOT_FOLDER_ID);
74 $childs = $tree->getChildsByTypeFilter(9, array(
'cals',
'rolf'));
76 $this->assertEquals(count($childs), 2);
86 $tree =
new ilTree(ROOT_FOLDER_ID);
88 $root = $tree->getNodeData(1);
89 $childs = $tree->getSubTree($root,
false,
'cals');
91 $this->assertEquals(count($childs), 1);
104 $this->assertTrue(
false,
"Testcase leads to fatal error.");
106 $tree =
new ilTree(ROOT_FOLDER_ID);
107 $ids = $tree->getPathIdsUsingNestedSets(24, 9);
109 $this->assertEquals($ids, array(9,14,24));
111 $tree =
new ilTree(ROOT_FOLDER_ID);
112 $ids = $tree->getPathIdsUsingNestedSets(24);
114 $this->assertEquals($ids, array(1,9,14,24));
127 $this->assertTrue(
false,
"Testcase leads to fatal error.");
129 $tree =
new ilTree(ROOT_FOLDER_ID);
130 $ids_ns = $tree->getPathIdsUsingNestedSets(24);
131 $ids_al = $tree->getPathIdsUsingAdjacencyMap(24);
133 $this->assertEquals($ids_ns, $ids_al);
143 $tree =
new ilTree(ROOT_FOLDER_ID);
144 $res = $tree->getNodePath(1, 29);
155 $tree =
new ilTree(ROOT_FOLDER_ID);
156 $tree->getMaximumDepth();
167 $tree =
new ilTree(ROOT_FOLDER_ID);
168 $d = $tree->getDepth(24);
170 $this->assertEquals(
$d, 4);
172 $node = $tree->getNodeData(24);
173 $this->assertEquals($node[
'title'],
'Public chat');
175 $bool = $tree->isInTree(24);
176 $this->assertEquals($bool,
true);
178 $bool = $tree->isInTree(24242424);
179 $this->assertEquals($bool,
false);
186 $bool = $tree->isGrandChild(9, 24);
187 $this->assertEquals($bool, 1);
194 $bool = $tree->isDeleted(24);
195 $this->assertEquals($bool,
false);
197 $id = $tree->getParentId(24);
198 $this->assertEquals($id, 14);
200 $lft = $tree->getLeftValue(24);
201 $this->assertEquals($lft, 14);
203 $seq = $tree->getChildSequenceNumber($tree->getNodeData(24));
204 $this->assertEquals($seq, 1);
206 $tree->getNodePath(9, 1);
208 $max_depth = $tree->getMaximumDepth();
211 $tree =
new ilTree(ROOT_FOLDER_ID);
212 $suc = $tree->fetchSuccessorNode(16);
213 $cals = $tree->fetchPredecessorNode($suc[
'child']);
214 $this->assertEquals($cals[
'child'], 16);
testAllOthers()
get path ids (adjacenca and nested set) IL_Init
testGetChildsByType()
get childs by type IL_Init
testGetSubTree()
get childs by type filter IL_Init
testGetPathIdsUsingNestedSet()
get path ids using nested set IL_Init
foreach($_POST as $key=> $value) $res
testGetPathIds()
get path ids (adjacenca and nested set) IL_Init
testGetChildsByTypeFilter()
get childs by type filter IL_Init
testMaxDepth()
get path ids (adjacenca and nested set) IL_Init
Unit tests for tree table.
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d