3 declare(strict_types=1);
45 protected function setUp(): void
48 $this->dic_backup = is_object($DIC) ? clone
$DIC :
$DIC;
51 $DIC[
'resource_storage'] = $this->storage_mock = $this->createMock(Services::class);
52 $this->manager_mock = $this->createMock(Manager::class);
53 $DIC[
'ilUser'] = $this->createMock(ilObjUser::class);
54 $DIC[
'ilUser']->expects($this->any())->method(
'getPref')->willReturn(
'en');
55 $DIC[
'ilDB'] = $this->db_mock = $this->createMock(ilDBInterface::class);
56 $DIC[
'upload'] = $this->createMock(FileUpload::class);
57 $DIC[
'ilias'] = $this->createMock(ILIAS::class);
58 $DIC[
'objDefinition'] = $this->createMock(ilObjectDefinition::class);
59 $DIC[
'ilLog'] = $this->createMock(ilLogger::class);
60 $DIC[
'ilErr'] = $this->createMock(ilErrorHandling::class);
61 $DIC[
'tree'] = $this->createMock(ilTree::class);
62 $DIC[
'tpl'] = $this->createMock(ilGlobalTemplateInterface::class);
63 $DIC[
'ilClientIniFile'] = $this->createMock(ilIniFile::class);
64 $DIC[
'ilAccess'] = $this->createMock(ilAccess::class);
65 $DIC[
'ilObjDataCache'] = $this->createMock(ilObjectDataCache::class);
66 $DIC[
'ilAppEventHandler'] = $this->createMock(ilAppEventHandler::class);
67 $DIC[
'lng'] = $this->createMock(ilLanguage::class);
68 $DIC[
'ilCtrl'] = $this->createMock(ilCtrlInterface::class);
74 if (!defined(
'ILIAS_LOG_ENABLED')) {
75 define(
'ILIAS_LOG_ENABLED',
false);
77 if (!defined(
'DEBUG')) {
78 define(
'DEBUG',
false);
90 $title =
'Revision One';
91 $file_stream = Streams::ofString(
'Test Content');
93 $this->storage_mock->expects($this->any())
95 ->willReturn($this->manager_mock);
100 $property = $r->getProperty(
'just_notified');
101 $property->setAccessible(
true);
102 $property->setValue($file,
true);
104 $this->db_mock->expects($this->any())
105 ->method(
'fetchAssoc')
117 $this->manager_mock->expects($this->any())
119 ->withConsecutive([
'-'], [
'the_identification'], [
'the_identification'])
120 ->willReturnOnConsecutiveCalls(null, $rid, $rid);
122 $this->manager_mock->expects($this->once())
128 $revision->setVersionNumber(1);
129 $revision->setTitle($title);
131 $resource->addRevision($revision);
133 $this->manager_mock->expects($this->once())
134 ->method(
'getCurrentRevision')
136 ->willReturn($revision);
139 $this->manager_mock->expects($this->any())
140 ->method(
'getResource')
142 ->willReturn($resource);
144 $revision_number = $file->appendStream($file_stream, $title);
145 $this->assertEquals(1, $revision_number);
146 $this->assertEquals(1, $file->getVersion());
147 $this->assertEquals($title, $file->getTitle());
Class ilObjFileStakeholder.
ILIAS DI Container $dic_backup
Customizing of pimple-DIC for ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ResourceIdentification.
Class StorableFileResource.