39 1 => [
"tree" => 1,
"child" => 1,
"ref_id" => 1,
"obj_id" => 1,
"parent" => 0],
40 2 => [
"tree" => 1,
"child" => 2,
"ref_id" => 2,
"obj_id" => 2,
"parent" => 1],
41 3 => [
"tree" => 1,
"child" => 3,
"ref_id" => 3,
"obj_id" => 3,
"parent" => 1],
42 4 => [
"tree" => 1,
"child" => 4,
"ref_id" => 4,
"obj_id" => 4,
"parent" => 2],
43 5 => [
"tree" => 1,
"child" => 5,
"ref_id" => 5,
"obj_id" => 5,
"parent" => 3],
44 6 => [
"tree" => 1,
"child" => 6,
"ref_id" => 6,
"obj_id" => 6,
"parent" => 3],
45 7 => [
"tree" => 1,
"child" => 7,
"ref_id" => 7,
"obj_id" => 7,
"parent" => 6],
46 8 => [
"tree" => 1,
"child" => 8,
"ref_id" => 8,
"obj_id" => 8,
"parent" => 6],
47 9 => [
"tree" => 1,
"child" => 9,
"ref_id" => 9,
"obj_id" => 9,
"parent" => 8],
56 protected function setUp(): void
63 $this->tree_data = $this->test_tree_data[$data_id];
68 $this->deleted_ref_ids = [];
74 if (
$c[
"parent"] ==
$id) {
83 $mock = $this->createMock(TreeInterface::class);
86 $mock->method(
'isDeleted')
87 ->willReturnCallback(
function (
int $child) {
88 foreach ($this->tree_data as $tree_id => $entries) {
89 if (isset($entries[$child])) {
90 return ($tree_id < 0);
97 $mock->method(
'getNodeData')
98 ->willReturnCallback(
function (
int $child) use ($tree_id) {
99 return $this->tree_data[$tree_id][$child];
102 $mock->method(
'useCache')
103 ->willReturnCallback(
function (
bool $a_use) {
107 $mock->method(
'getSubTree')
108 ->willReturnCallback(
function (array $node) use ($tree_id) {
109 $childs[$node[
"child"]] = $node;
110 $data = $this->tree_data[$tree_id];
116 $mock->method(
'getDeletedTreeNodeIds')
117 ->willReturnCallback(
function (array $ids) use ($mock) {
119 foreach ($ids as
$id) {
120 if ($mock->isDeleted($id)) {
121 $deleted_ids[] =
$id;
128 $mock->method(
'getTree')
129 ->willReturnCallback(
function (
int $tree_id) {
134 $mock->method(
'getTrashTree')
135 ->willReturnCallback(
function (
int $child) use ($mock) {
136 foreach ($this->tree_data as $tree_id => $entries) {
137 if (isset($entries[$child]) && $tree_id < 0) {
138 return $mock->getTree($tree_id);
144 $mock->method(
'moveToTrash')
145 ->willReturnCallback(
function (
int $child) use ($mock, $tree_id) {
147 foreach ($mock->getSubTree($mock->getNodeData($child)) as $subnode) {
148 if (isset($this->tree_data[$tree_id][$subnode[
"child"]])) {
149 unset($this->tree_data[$tree_id][$subnode[
"child"]]);
150 $subnode[
"tree"] = -$child;
151 $this->tree_data[-$child][$subnode[
"child"]] = $subnode;
159 $mock->method(
'deleteTree')
160 ->willReturnCallback(
function (array $node_data) use ($mock, $tree_id) {
161 foreach ($mock->getSubTree($node_data) as $subnode) {
162 unset($this->tree_data[$tree_id][$subnode[
"child"]]);
167 $mock->method(
'getTrashedSubtrees')
168 ->willReturnCallback(
function (
int $ref_id) {
170 foreach ($this->tree_data as $tree_id => $entries) {
171 foreach ($entries as $entry) {
172 if ($entry[
"parent"] == $ref_id) {
173 if ($tree_id < 0 && $tree_id === -1 * $entry[
"child"]) {
174 $tree_ids[] = $tree_id;
189 $mock = $this->createMock(PermissionInterface::class);
192 $mock->method(
'checkAccess')
193 ->willReturnCallback(
function (
string $operation,
int $ref_id) use ($access_given) {
194 return $access_given;
198 $mock->method(
'revokePermission')
199 ->willReturnCallback(
function (
int $ref_id) {
203 $mock->method(
'getRefIdsWithoutDeletePermission')
204 ->willReturnCallback(
function (array $ids) use ($access_given) {
217 $mock = $this->createMock(ObjectInterface::class);
220 $mock->method(
'getInstanceByRefId')
221 ->willReturnCallback(
function (
int $ref_id) use ($mock, $failing_obj_ids) {
226 $mock->method(
'delete')
227 ->willReturnCallback(
function () use ($ref_id, $failing_obj_ids) {
228 if (in_array($ref_id, $failing_obj_ids)) {
229 throw new \Exception(
"Failed to do something");
231 $this->deleted_ref_ids[] =
$ref_id;
235 $mock->method(
'getId')
236 ->willReturnCallback(
function () use ($ref_id) {
241 $mock->method(
'getType')
245 $mock->method(
'getTitle')
246 ->willReturn(
'Sample Object Title');
249 $mock->method(
'getRefId')
250 ->willReturnCallback(
function () use ($ref_id) {
261 echo $message . PHP_EOL;
268 $mock = $this->createMock(EventInterface::class);
271 $mock->method(
'beforeMoveToTrash')
272 ->willReturnCallback(
function (
int $ref_id, array $subnodes) {
273 $this->
log(
'beforeMoveToTrash: ' . $ref_id);
278 $mock->method(
'afterMoveToTrash')
279 ->willReturnCallback(
function (
int $ref_id,
int $old_parent_ref_id) {
284 $mock->method(
'beforeSubtreeRemoval')
285 ->willReturnCallback(
function (
int $obj_id) {
286 $this->
log(
'beforeSubtreeRemoval: ' . $obj_id);
291 $mock->method(
'beforeObjectRemoval')
292 ->willReturnCallback(
function (
int $obj_id,
int $ref_id,
string $type,
string $title) {
293 $this->
log(
'beforeObjectRemoval: ' . $obj_id);
298 $mock->method(
'afterObjectRemoval')
299 ->willReturnCallback(
function (
int $obj_id,
int $ref_id,
string $type,
int $old_parent_ref_id) {
304 $mock->method(
'afterTreeDeletion')
305 ->willReturnCallback(
function (
int $tree_id,
int $child) {
306 $this->
log(
'afterTreeDeletion: ' . $tree_id .
", " . $child);
315 bool $trash_enabled =
true,
316 bool $access_given =
true,
317 array $failing_obj_ids = []
336 $node1 = $tree_mock->getNodeData(1);
337 $this->assertEquals(0, $node1[
"parent"]);
339 $tree_mock->moveToTrash(2);
340 $this->assertEquals(
true, $tree_mock->isDeleted(2));
354 static::assertInstanceOf(Deletion::class, $deletion);
376 $deletion->deleteObjectsByRefIds([2]);
377 $this->assertEquals(
true, $tree_mock->isDeleted(2));
379 $this->assertEquals([-2], $tree_mock->getTrashedSubtrees(1));
382 $this->assertEquals([], $this->deleted_ref_ids);
405 $deletion->deleteObjectsByRefIds([2]);
406 $deletion->deleteObjectsByRefIds([3]);
407 $this->assertEquals(
true, $tree_mock->isDeleted(2));
408 $this->assertEquals(
true, $tree_mock->isDeleted(3));
410 $this->assertEquals([-2, -3], $tree_mock->getTrashedSubtrees(1));
413 $this->assertEquals([], $this->deleted_ref_ids);
436 $deletion->deleteObjectsByRefIds([2]);
439 $this->assertEquals(
false, $tree_mock->isDeleted(2));
442 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
445 $this->assertEquals([2,4], $this->deleted_ref_ids);
469 $deletion->deleteObjectsByRefIds([2]);
471 $deletion->removeObjectsFromSystemByRefIds([2]);
474 $this->assertEquals(
false, $tree_mock->isDeleted(2));
477 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
480 $this->assertEquals([2,4], $this->deleted_ref_ids);
493 $this->
log(PHP_EOL .
"---testDeletionDeleteRemoveFromSystemMultiple");
504 $this->
log(
"---call: deleteObjectsByRefIds 6");
505 $deletion->deleteObjectsByRefIds([6]);
506 $this->
log(
"---call: deleteObjectsByRefIds 3");
507 $deletion->deleteObjectsByRefIds([3]);
509 $this->
log(
"---call: removeObjectsFromSystemByRefIds 3");
510 $deletion->removeObjectsFromSystemByRefIds([3]);
513 $this->assertEquals(
false, $tree_mock->isDeleted(3));
514 $this->assertEquals(
false, $tree_mock->isDeleted(5));
515 $this->assertEquals(
false, $tree_mock->isDeleted(6));
516 $this->assertEquals(
false, $tree_mock->isDeleted(7));
517 $this->assertEquals(
false, $tree_mock->isDeleted(8));
518 $this->assertEquals(
false, $tree_mock->isDeleted(9));
521 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
522 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
525 $this->assertEqualsCanonicalizing([3,5,6,7,8,9], $this->deleted_ref_ids);
526 $this->
log(
"---END---testDeletionDeleteRemoveFromSystemMultiple");
539 $this->
log(PHP_EOL .
"---testDeletionDeleteRemoveFromSystemMultiple");
550 $this->
log(
"---call: deleteObjectsByRefIds 8");
551 $deletion->deleteObjectsByRefIds([8]);
552 $this->
log(
"---call: deleteObjectsByRefIds 3");
553 $deletion->deleteObjectsByRefIds([3]);
555 $this->
log(
"---call: removeObjectsFromSystemByRefIds 3");
556 $deletion->removeObjectsFromSystemByRefIds([3]);
559 $this->assertEquals(
false, $tree_mock->isDeleted(3));
560 $this->assertEquals(
false, $tree_mock->isDeleted(5));
561 $this->assertEquals(
false, $tree_mock->isDeleted(6));
562 $this->assertEquals(
false, $tree_mock->isDeleted(7));
563 $this->assertEquals(
false, $tree_mock->isDeleted(8));
564 $this->assertEquals(
false, $tree_mock->isDeleted(9));
567 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
568 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
571 $this->assertEqualsCanonicalizing([3,5,6,7,8,9], $this->deleted_ref_ids);
572 $this->
log(
"---END---testDeletionDeleteRemoveFromSystemMultiple");
586 $this->
log(PHP_EOL .
"---testDeletionRemoveFromSystemTrashInTrash");
596 $this->
log(
"---call: deleteObjectsByRefIds 9");
597 $deletion->deleteObjectsByRefIds([9]);
598 $this->
log(
"---call: deleteObjectsByRefIds 8");
599 $deletion->deleteObjectsByRefIds([8]);
600 $this->
log(
"---call: deleteObjectsByRefIds 3");
601 $deletion->deleteObjectsByRefIds([3]);
603 $this->
log(
"---call: removeObjectsFromSystemByRefIds 3");
604 $deletion->removeObjectsFromSystemByRefIds([3]);
607 $this->assertEquals(
false, $tree_mock->isDeleted(3));
608 $this->assertEquals(
false, $tree_mock->isDeleted(5));
609 $this->assertEquals(
false, $tree_mock->isDeleted(6));
610 $this->assertEquals(
false, $tree_mock->isDeleted(7));
611 $this->assertEquals(
false, $tree_mock->isDeleted(8));
612 $this->assertEquals(
false, $tree_mock->isDeleted(9));
615 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
616 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
619 $this->assertEqualsCanonicalizing([3,5,6,7,8,9], $this->deleted_ref_ids);
620 $this->
log(
"---END---testDeletionRemoveFromSystemTrashInTrash");
633 $this->
log(PHP_EOL .
"---testDeletionRemoveFromSystemFailingObject");
644 $this->
log(
"---call: deleteObjectsByRefIds 9");
645 $deletion->deleteObjectsByRefIds([9]);
646 $this->
log(
"---call: deleteObjectsByRefIds 8");
647 $deletion->deleteObjectsByRefIds([8]);
648 $this->
log(
"---call: deleteObjectsByRefIds 3");
649 $deletion->deleteObjectsByRefIds([3]);
651 $this->
log(
"---call: removeObjectsFromSystemByRefIds 3");
652 $deletion->removeObjectsFromSystemByRefIds([3]);
655 $this->assertEquals(
false, $tree_mock->isDeleted(3));
656 $this->assertEquals(
false, $tree_mock->isDeleted(5));
657 $this->assertEquals(
false, $tree_mock->isDeleted(6));
658 $this->assertEquals(
false, $tree_mock->isDeleted(7));
659 $this->assertEquals(
false, $tree_mock->isDeleted(8));
660 $this->assertEquals(
false, $tree_mock->isDeleted(9));
663 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
664 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
667 $this->assertEqualsCanonicalizing([3,5,6,7,9], $this->deleted_ref_ids);
668 $this->
log(
"---END---testDeletionRemoveFromSystemFailingObject");
683 $this->
log(PHP_EOL .
"---testDeletionRemoveFromSystemTrashInTrashInTrash");
694 $this->
log(
"---call: deleteObjectsByRefIds 9");
695 $deletion->deleteObjectsByRefIds([9]);
696 $this->
log(
"---call: deleteObjectsByRefIds 8");
697 $deletion->deleteObjectsByRefIds([8]);
698 $this->
log(
"---call: deleteObjectsByRefIds 6");
699 $deletion->deleteObjectsByRefIds([6]);
700 $this->
log(
"---call: deleteObjectsByRefIds 3");
701 $deletion->deleteObjectsByRefIds([3]);
703 $this->
log(
"---call: removeObjectsFromSystemByRefIds 3");
704 $deletion->removeObjectsFromSystemByRefIds([3]);
707 $this->assertEquals(
false, $tree_mock->isDeleted(3));
708 $this->assertEquals(
false, $tree_mock->isDeleted(5));
709 $this->assertEquals(
false, $tree_mock->isDeleted(6));
710 $this->assertEquals(
false, $tree_mock->isDeleted(7));
711 $this->assertEquals(
false, $tree_mock->isDeleted(8));
712 $this->assertEquals(
false, $tree_mock->isDeleted(9));
715 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
716 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
719 $this->assertEqualsCanonicalizing([3,5,6,7,9], $this->deleted_ref_ids);
720 $this->
log(
"---END---testDeletionRemoveFromSystemTrashInTrashInTrash");
725 $this->
log(PHP_EOL .
"---testDeletionNoDeletePermission");
736 $this->
log(
"---call: deleteObjectsByRefIds 9");
737 $this->expectException(MissingPermissionException::class);
738 $deletion->deleteObjectsByRefIds([9]);
741 $this->assertEquals(
false, $tree_mock->isDeleted(9));
744 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
745 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
748 $this->assertEqualsCanonicalizing([], $this->deleted_ref_ids);
749 $this->
log(
"---END---testDeletionNoDeletePermission");
763 $this->
log(PHP_EOL .
"---testDeletionTrashDisabledTrashInTrashInTrash");
774 $this->
log(
"---call: deleteObjectsByRefIds 9");
775 $deletion->deleteObjectsByRefIds([9]);
776 $this->
log(
"---call: deleteObjectsByRefIds 8");
777 $deletion->deleteObjectsByRefIds([8]);
778 $this->
log(
"---call: deleteObjectsByRefIds 6");
779 $deletion->deleteObjectsByRefIds([6]);
780 $this->
log(
"---call: deleteObjectsByRefIds 3");
781 $deletion->deleteObjectsByRefIds([3]);
784 $this->assertEquals(
false, $tree_mock->isDeleted(3));
785 $this->assertEquals(
false, $tree_mock->isDeleted(5));
786 $this->assertEquals(
false, $tree_mock->isDeleted(6));
787 $this->assertEquals(
false, $tree_mock->isDeleted(7));
788 $this->assertEquals(
false, $tree_mock->isDeleted(8));
789 $this->assertEquals(
false, $tree_mock->isDeleted(9));
792 $this->assertEquals([], $tree_mock->getTrashedSubtrees(1));
793 $this->assertEquals([], $tree_mock->getTrashedSubtrees(2));
796 $this->assertEqualsCanonicalizing([3,5,6,7,8,9], $this->deleted_ref_ids);
797 $this->
log(
"---END---testDeletionTrashDisabledTrashInTrashInTrash");
testDeletionDeleteWithTrash()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
createTreeInterfaceMock(int $tree_id)
testDeletionRemoveFromSystemTrashInTrash()
testDeletionRemoveFromSystemMultiple()
testDeletionTrashDisabledTrashInTrashInTrash()
testDeletionRemoveFromSystemTrashInTrashInTrash()
createObjectInterfaceMock(int $ref_id, array $failing_obj_ids=[])
testDeletionDeleteWithoutTrash()
testDeletionDeleteWithTrashMultiple()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testDeletionInstantiation()
createPermissionInterfaceMock(bool $access_given)
testDeletionRemoveFromSystemFailingObject()
loadTreeData(int $data_id)
testDeletionDeleteRemoveFromSystem()
testDeletionNoDeletePermission()
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
addChilds($id, &$childs, $data)
createEventInterfaceMock()
testDeletionRemoveFromSystemDeepSubtree()
initDeletion(?TreeInterface $tree_mock=null, bool $trash_enabled=true, bool $access_given=true, array $failing_obj_ids=[])