3 declare(strict_types=1);
26 require_once
"./Services/WebDAV/test/webdav_overrides.php";
34 $object = $this->createMock(ilObjFolder::class);
35 $object->expects($this->once())->method(
'getTitle')->willReturn(
'Some random Title');
37 $user = $this->createStub(ilObjUser::class);
38 $request = $this->createStub(
'Psr\Http\Message\RequestInterface');
39 $dav_factory = $this->createStub(ilWebDAVObjFactory::class);
40 $repository_helper = $this->createStub(ilWebDAVRepositoryHelper::class);
42 $dav_container =
new ilDAVContainer($object, $user, $request, $dav_factory, $repository_helper);
44 $this->assertEquals(
'Some random Title', $dav_container->getName());
51 'name' =>
'Second Fourth Child',
52 'class' => ilDAVContainer::class,
53 'expects_objects' => 7
56 'name' =>
'Last Last Child',
57 'class' => ilDAVFile::class,
58 'expects_objects' => 4
62 foreach ($ref_ids as
$ref_id => $additional_information) {
65 $additional_information[
'expects_objects']
67 $object = $dav_container->getChild($additional_information[
'name']);
68 $this->assertInstanceOf($additional_information[
'class'], $object);
69 $this->assertEquals($additional_information[
'name'], $object->getName());
77 $tree = $webdav_test_helper->getTree();
79 foreach ($tree[
$ref_id][
'children'] as $child_ref) {
85 $dav_container->getChild($tree[$child_ref][
'title']);
86 $this->assertFalse(
'This should never happen');
87 }
catch (NotFound
$e) {
88 $this->assertEquals($tree[$child_ref][
'title'] .
' not found', $e->getMessage());
98 'name' =>
'Second Third Child',
99 'expects_objects' => 7
102 'name' =>
'Last Third Child',
103 'expects_objects' => 4
107 foreach ($ref_ids as
$ref_id => $additional_information) {
111 $additional_information[
'expects_objects']
113 $dav_container->getChild($additional_information[
'name']);
114 $this->assertFalse(
'This should not happen');
115 }
catch (NotFound
$e) {
116 $this->assertEquals($additional_information[
'name'] .
' not found', $e->getMessage());
124 $name =
'None existent name';
131 $dav_container->getChild(
$name);
132 $this->assertFalse(
'This should not happen');
133 }
catch (NotFound
$e) {
134 $this->assertEquals(
"$name not found", $e->getMessage());
142 'name' =>
'Second Last Child',
143 'expects_objects' => 7
146 'name' =>
'Last Second Child',
147 'expects_objects' => 4
151 foreach ($ref_ids as
$ref_id => $additional_information) {
155 $additional_information[
'expects_objects']
157 $dav_container->getChild($additional_information[
'name']);
158 $this->assertFalse(
'This should not happen');
159 }
catch (NotFound
$e) {
160 $this->assertEquals($additional_information[
'name'] .
' not found', $e->getMessage());
168 $additional_information = [
169 'names' => [
'Last First Child',
'Last Last Child'],
170 'classes' => [ilDAVContainer::class, ilDAVFile::class],
171 'ref_id' => [
'233563432',
'2335634323356343'],
172 'expects_objects' => 4,
173 'expects_problem_info_file' => 0
182 $additional_information = [
183 'names' => [
'Second First Child',
'Second Second Child',
'Second Fourth Child',
'Problem Info File'],
184 'classes' => [ilDAVFile::class, ilDAVFile::class, ilDAVContainer::class, ilDAVProblemInfoFile::class],
185 'ref_id' => [
'72',
'78',
'7221',
'7222'],
186 'expects_objects' => 7,
187 'expects_problem_info_file' => 1,
200 $additional_information[
'expects_objects'],
201 $additional_information[
'expects_problem_info_file']
203 $children = $dav_container->getChildren();
204 $this->assertEquals(count($additional_information[
'names']), count($children));
205 for (
$i = 0;
$i < count($children);
$i++) {
206 $this->assertInstanceOf($additional_information[
'classes'][
$i], $children[$additional_information[
'ref_id'][$i]]);
207 $this->assertEquals($additional_information[
'names'][$i], $children[$additional_information[
'ref_id'][$i]]->getName());
220 $children = $dav_container->getChildren();
221 $this->assertEquals(1, count($children));
228 'name' =>
'Second Fourth Child',
229 'expects_objects' => 6
232 'name' =>
'Last Last Child',
233 'expects_objects' => 4
237 foreach ($ref_ids as
$ref_id => $additional_information) {
240 $additional_information[
'expects_objects']
242 $this->assertTrue($dav_container->childExists($additional_information[
'name']));
249 $additional_information = [
250 'name' =>
'Second Second Child',
251 'expects_objects' => 4
256 $additional_information[
'expects_objects']
258 $this->assertTrue($dav_container->childExists($additional_information[
'name']));
265 $tree = $webdav_test_helper->getTree();
267 foreach ($tree[
$ref_id][
'children'] as $child_ref) {
272 $this->assertFalse($dav_container->childExists($tree[$child_ref][
'title']));
280 'name' =>
'Second Third Child',
281 'expects_objects' => 7
284 'name' =>
'Last Third Child',
285 'expects_objects' => 4
289 foreach ($ref_ids as
$ref_id => $additional_information) {
292 $additional_information[
'expects_objects']
294 $this->assertFalse($dav_container->childExists($additional_information[
'name']));
301 $name =
'None existent name';
308 $this->assertFalse($dav_container->childExists(
$name));
315 'name' =>
'Second Last Child',
316 'expects_objects' => 7
319 'name' =>
'Last Second Child',
320 'expects_objects' => 4
324 foreach ($ref_ids as
$ref_id => $additional_information) {
327 $additional_information[
'expects_objects']
330 $this->assertFalse($dav_container->childExists($additional_information[
'name']));
336 $parent_ref = 233563432;
341 $dav_container->setName(
'My Valid Name');
342 $this->assertFalse(
'This should not happen!');
343 }
catch (Forbidden
$e) {
344 $this->assertEquals(
'Permission denied', $e->getMessage());
352 $tree = $webdav_test_helper->getTree();
354 foreach ($tree[
'22'][
'children'] as $invalid_object) {
358 $dav_container->setName($tree[$invalid_object][
'title']);
359 $this->assertFalse(
'This should not happen!');
360 }
catch (Forbidden
$e) {
361 $this->assertEquals(
'Forbidden characters in title', $e->getMessage());
368 $parent_ref = 233563432;
373 $dav_container->createFile(
'My New File.txt');
374 $this->assertFalse(
'This should not happen!');
375 }
catch (Forbidden
$e) {
376 $this->assertEquals(
'Permission denied', $e->getMessage());
382 $parent_ref = 233563432;
387 $dav_container->createDirectory(
'My New Folder');
388 $this->assertFalse(
'This should not happen!');
389 }
catch (Forbidden
$e) {
390 $this->assertEquals(
'Permission denied', $e->getMessage());
398 $tree = $webdav_test_helper->getTree();
400 foreach ($tree[
'22'][
'children'] as $invalid_object) {
404 $dav_container->createDirectory($tree[$invalid_object][
'title']);
405 $this->assertFalse(
'This should not happen!');
406 }
catch (Forbidden
$e) {
407 $this->assertEquals(
'Forbidden characters in title', $e->getMessage());
414 $parent_ref = 233563432;
419 $dav_container->delete();
420 $this->assertFalse(
'This should not happen!');
421 }
catch (Forbidden
$e) {
422 $this->assertEquals(
'Permission denied', $e->getMessage());
429 int $expects_problem_info_file = 0,
430 int $expects_child_ref = 1,
431 bool $for_create =
false 433 $object_folder = $this->createPartialMock(ilObjFolder::class, []);
434 $object_folder->setRefId($object_ref_id);
435 $user = $this->createStub(ilObjUser::class);
436 $request = $this->createStub(
'Psr\Http\Message\RequestInterface');
439 $tree = $webdav_test_helper->getTree();
441 $mocked_dav_factory = $this->createPartialMock(ilWebDAVObjFactory::class, [
'retrieveDAVObjectByRefID',
'getProblemInfoFile']);
442 $mocked_dav_factory->expects($this->exactly($expects_object))
443 ->method(
'retrieveDAVObjectByRefID')->willReturnCallback(
445 if ($tree[$ref_id][
'access'] ===
'none') {
446 throw new Forbidden(
"No read permission for object with reference ID $ref_id");
449 if ($tree[$ref_id][
'type'] ===
'fold') {
450 $obj_class = ilDAVContainer::class;
451 } elseif ($tree[$ref_id][
'type'] ===
'file') {
452 $obj_class = ilDAVFile::class;
457 if ($this->hasTitleForbiddenChars($tree[$ref_id][
'title'])) {
461 if ($this->isHiddenFile($tree[$ref_id][
'title'])) {
465 $object = $this->createMock($obj_class);
466 $object->expects($this->atMost(3))->method(
'getName')->willReturn($tree[$ref_id][
'title']);
470 $mocked_dav_factory->expects($this->exactly($expects_problem_info_file))
471 ->method(
'getProblemInfoFile')->willReturnCallback(
473 $problem_info_file = $this->createMock(ilDAVProblemInfoFile::class);
474 $problem_info_file->expects($this->atMost(2))->method(
'getName')->willReturn(
'Problem Info File');
475 return $problem_info_file;
479 $mocked_repo_helper = $this->createPartialMock(ilWebDAVRepositoryHelper::class, [
'getChildrenOfRefId',
'checkcreateAccessForType',
'checkAccess']);
480 $mocked_repo_helper->expects($this->exactly($expects_child_ref))
481 ->method(
'getChildrenOfRefId')->willReturnCallback(
482 function (
int $parent_ref) use ($tree): array {
483 return $tree[$parent_ref][
'children'];
486 $mocked_repo_helper->expects($this->atMost(1))
487 ->method(
'checkcreateAccessForType')->willReturnCallback(
488 function ($parent_ref,
$type) use ($tree) {
489 if ($tree[$parent_ref][
'access'] ===
'write') {
496 $mocked_repo_helper->expects($this->atMost(1))
497 ->method(
'checkAccess')->willReturnCallback(
498 function (
string $permission,
int $ref_id) use ($tree) {
499 if (in_array($permission, [
'write',
'delete']) && $tree[$ref_id][
'access'] ===
'write') {
508 $object_child = $this->createPartialMock(ilObjFolder::class, []);
509 $object_child->setType(
'fold');
511 $dav_container->setChildcollection($object_child);
512 return $dav_container;
515 return new ilDAVContainer($object_folder, $user, $request, $mocked_dav_factory, $mocked_repo_helper);
const OBJECT_TYPE_NOT_DAVABLE
const OBJECT_TITLE_NOT_DAVABLE
testGetChilrendWithExistingNameOfFolderOrFileReturnsArrayOfObjects()
testChildExistsWithExistingNonDavableNameReturnsFalse()
getChildrenTest(int $ref_id, array $additional_information)
testChildExistsWithExistingNameOfFolderOrFileReturnsTrue()
testGetChildWithExistingNameOfFolderOrFileReturnsIlObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testChildExistsWithExistingNameOfFolderOrFileWithoutAccessReturnsFalse()
testGetChildWithExistingNonDavableNameThrowsNotFoundError()
getDAVContainerWithExpectationForFunctions(int $object_ref_id, int $expects_object, int $expects_problem_info_file=0, int $expects_child_ref=1, bool $for_create=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testChildExistsWithExistingNameOfFolderOrFileWhenOtherObjectOfSameNameExistsReturnsTrue()
testGetChildWithExistingNameOfOtherObjectTypeThrowsNotFoundError()
testGetChildWithNonExistentNameOfFolderOrFileThrowsNotFoundError()
testGetChildWithExistingNameOfFolderOrFileWithoutAccessThrowsNotFoundError()
testSetNameWithNonDavableNameThrowsForbiddenError()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testCreateFileWithoutPermissionsThrowsForbiddenError()
testCreateDirectoryWithoutPermissionsThrowsForbiddenError()
testGetNameGetsObjectTitle()
testChildExistsWithNonExistentNameOfFolderOrFileReturnsFalse()
testCreateDirectoryWithNonDavableNameThrowsForbiddenError()
testChildExistsWithExistingNameOfOtherObjectTypeReturnsFalse()
testGetChildrenFromFolderWithOnlyNonDavableNamedContentReturnsEmptyArray()
testSetNameWithoutPermissionsThrowsForbiddenError()
testDeleteWithoutPermissionsThrowsForbiddenError()
testGetChilrendWithExistingNameOfFolderOrFileReturnsArrayWithProblemInfoFile()