19 declare(strict_types=1);
48 protected function setUp(): void
51 $this->dic_backup = is_object($DIC) ? clone
$DIC :
null;
54 $DIC[
'resource_storage'] = $this->storage_mock = $this->createMock(Services::class);
55 $this->manager_mock = $this->createMock(Manager::class);
56 $DIC[
'ilUser'] = $this->createMock(ilObjUser::class);
57 $DIC[
'ilUser']->expects($this->any())->method(
'getPref')->willReturn(
'en');
58 $DIC[
'ilDB'] = $this->db_mock = $this->createMock(ilDBInterface::class);
59 $DIC[
'upload'] = $this->createMock(FileUpload::class);
60 $DIC[
'ilias'] = $this->createMock(ILIAS::class);
61 $DIC[
'objDefinition'] = $this->createMock(ilObjectDefinition::class);
62 $DIC[
'ilLog'] = $this->createMock(ilLogger::class);
63 $DIC[
'ilErr'] = $this->createMock(ilErrorHandling::class);
64 $DIC[
'tree'] = $this->createMock(ilTree::class);
65 $DIC[
'tpl'] = $this->createMock(ilGlobalTemplateInterface::class);
66 $DIC[
'ilClientIniFile'] = $this->createMock(ilIniFile::class);
67 $DIC[
'ilAccess'] = $this->createMock(ilAccess::class);
68 $DIC[
'ilObjDataCache'] = $this->createMock(ilObjectDataCache::class);
69 $DIC[
'ilAppEventHandler'] = $this->createMock(ilAppEventHandler::class);
70 $DIC[
'lng'] = $this->createMock(ilLanguage::class);
71 $DIC[
'ilCtrl'] = $this->createMock(ilCtrlInterface::class);
72 $DIC[
'refinery'] = $this->createMock(Factory::class);
73 $DIC[
'http'] = $this->createMock(\
ILIAS\
HTTP\Services::class);
74 $DIC[
'object.customicons.factory'] = $this->createMock(ilObjectCustomIconFactory::class);
80 if (!defined(
'ILIAS_LOG_ENABLED')) {
81 define(
'ILIAS_LOG_ENABLED',
false);
91 #[PreserveGlobalState(false)] 92 #[RunInSeparateProcess] 95 $this->markTestSkipped(
'Failed for some unknown reason.');
98 $title =
'Revision One';
99 $file_stream = Streams::ofString(
'Test Content');
101 $this->storage_mock->expects($this->any())
103 ->willReturn($this->manager_mock);
105 $this->db_mock->expects($this->any())
107 ->willReturnCallback(
function ($query): MockObject {
108 $mock_object = $this->createMock(ilDBStatement::class);
109 $mock_object->expects($this->any())->method(
'fetchAssoc')->willReturn([$query]);
114 $this->db_mock->expects($this->any())
115 ->method(
'fetchAssoc')
116 ->willReturnCallback(
function (
ilDBStatement $statement): ?array {
122 if (str_contains($query,
'last_update')) {
133 $file = $this->getMockBuilder(ilObjFile::class)
134 ->onlyMethods([
'update'])
136 $file->method(
'update');
139 $property =
$r->getProperty(
'just_notified');
140 $property->setAccessible(
true);
141 $property->setValue($file,
true);
143 $this->db_mock->expects($this->any())
144 ->method(
'fetchAssoc')
158 [
'the_identification', $rid],
159 [
'the_identification', $rid],
162 ->expects($this->any())
164 ->willReturnCallback(
166 $expected = array_shift($consecutive);
167 [$eid, $ret] = $consecutive;
168 $this->assertEquals($eid, $id);
173 $this->manager_mock->expects($this->once())
179 $revision->setVersionNumber(1);
180 $revision->setTitle($title);
182 $resource->addRevision($revision);
184 $this->manager_mock->expects($this->once())
185 ->method(
'getCurrentRevision')
187 ->willReturn($revision);
189 $this->manager_mock->expects($this->any())
190 ->method(
'getResource')
192 ->willReturn($resource);
194 $revision_number = $file->appendStream($file_stream, $title);
195 $this->assertEquals(1, $revision_number);
196 $this->assertEquals(1, $file->getVersion());
197 $this->assertEquals($title, $file->getTitle());
Class ilObjFileStakeholder.
Interface Observer Contains several chained tasks and infos about them.
Customizing of pimple-DIC for ILIAS.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ResourceIdentification.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins