ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilModulesFileTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
34 
36 {
41  protected ?MockObject $storage_mock = null;
45  protected ?MockObject $db_mock = null;
46  protected MockObject $manager_mock;
47 
48  protected function setUp(): void
49  {
50  global $DIC;
51  $this->dic_backup = is_object($DIC) ? clone $DIC : null;
52 
53  $DIC = new Container();
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);
75  /* $DIC['ilCtrl'] = $this->getMockBuilder(ilCtrl::class)
76  ->disableOriginalConstructor()
77  ->disableArgumentCloning()
78  ->getMock();*/
79 
80  if (!defined('ILIAS_LOG_ENABLED')) {
81  define('ILIAS_LOG_ENABLED', false);
82  }
83  }
84 
85  protected function tearDown(): void
86  {
87  global $DIC;
88  $DIC = $this->dic_backup;
89  }
90 
91  #[PreserveGlobalState(false)]
92  #[RunInSeparateProcess]
93  public function testAppendStream(): void
94  {
95  $this->markTestSkipped('Failed for some unknown reason.');
96 
97  // DB mock
98  $title = 'Revision One';
99  $file_stream = Streams::ofString('Test Content');
100 
101  $this->storage_mock->expects($this->any())
102  ->method('manage')
103  ->willReturn($this->manager_mock);
104 
105  $this->db_mock->expects($this->any())
106  ->method('query')
107  ->willReturnCallback(function ($query): MockObject {
108  $mock_object = $this->createMock(ilDBStatement::class);
109  $mock_object->expects($this->any())->method('fetchAssoc')->willReturn([$query]);
110 
111  return $mock_object;
112  });
113 
114  $this->db_mock->expects($this->any())
115  ->method('fetchAssoc')
116  ->willReturnCallback(function (ilDBStatement $statement): ?array {
117  $row = $statement->fetchAssoc();
118  $query = '';
119  if ($row !== null) {
120  $query = end($row);
121  }
122  if (str_contains($query, 'last_update')) {
123  return [
124  'last_update' => '',
125  'create_date' => ''
126  ];
127  }
128 
129  return null;
130  });
131 
132  // Create File Object with disabled news notification
133  $file = $this->getMockBuilder(ilObjFile::class)
134  ->onlyMethods(['update'])
135  ->getMock();
136  $file->method('update');
137 
138  $r = new ReflectionClass(ilObjFile::class);
139  $property = $r->getProperty('just_notified');
140  $property->setAccessible(true);
141  $property->setValue($file, true);
142  $file->setMode(ilObjFile::MODE_FILELIST);
143  $this->db_mock->expects($this->any())
144  ->method('fetchAssoc')
145  ->willReturn(
146  [
147  'last_update' => '',
148  'create_date' => ''
149  ]
150  );
151  $file->create();
152 
153  // identification
154  $rid = new ResourceIdentification('the_identification');
155 
156  $consecutive = [
157  ['-', null],
158  ['the_identification', $rid],
159  ['the_identification', $rid],
160  ];
161  $this->manager_mock
162  ->expects($this->any())
163  ->method('find')
164  ->willReturnCallback(
165  function (string $id) use (&$consecutive): ?ResourceIdentification {
166  $expected = array_shift($consecutive);
167  [$eid, $ret] = $consecutive;
168  $this->assertEquals($eid, $id);
169  return $ret;
170  }
171  );
172 
173  $this->manager_mock->expects($this->once())
174  ->method('stream')
175  ->with($file_stream, new ilObjFileStakeholder(0), $title)
176  ->willReturn($rid);
177 
178  $revision = new FileRevision($rid);
179  $revision->setVersionNumber(1);
180  $revision->setTitle($title);
181  $resource = new StorableFileResource($rid);
182  $resource->addRevision($revision);
183 
184  $this->manager_mock->expects($this->once())
185  ->method('getCurrentRevision')
186  ->with($rid)
187  ->willReturn($revision);
188 
189  $this->manager_mock->expects($this->any())
190  ->method('getResource')
191  ->with($rid)
192  ->willReturn($resource);
193 
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());
198  }
199 }
Class ilObjFileStakeholder.
Interface Observer Contains several chained tasks and infos about them.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
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...
const MODE_FILELIST
global $DIC
Definition: shib_login.php:22
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
$r