ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
24 class ilObjectTest extends TestCase
25 {
31 
32  protected function setUp(): void
33  {
34  global $DIC;
35  $this->dic_backup = is_object($DIC) ? clone $DIC : $DIC;
36 
37  $DIC = new Container();
38  $DIC['ilias'] = $this->createMock(ILIAS::class);
39  $DIC['objDefinition'] = $this->createMock(ilObjectDefinition::class);
40  $DIC['ilDB'] = $this->db_mock = $this->createMock(ilDBInterface::class);
41  $DIC['ilLog'] = $this->createMock(ilLogger::class);
42  $DIC['ilErr'] = $this->createMock(ilErrorHandling::class);
43  $DIC['tree'] = $this->createMock(ilTree::class);
44  $DIC['ilAppEventHandler'] = $this->createMock(ilAppEventHandler::class);
45  $DIC['ilUser'] = $this->createMock(ilObjUser::class);
46 
47  if (!defined('ILIAS_LOG_DIR')) {
48  define('ILIAS_LOG_DIR', '/var/log');
49  }
50 
51  if (!defined('ILIAS_LOG_ENABLED')) {
52  define('ILIAS_LOG_ENABLED', true);
53  }
54  }
55 
56  protected function tearDown(): void
57  {
58  global $DIC;
59  $DIC = $this->dic_backup;
60  }
61 
62  public function testCreationDeletion(): void
63  {
64  $obj = new ilObject();
65  $obj->setType("xxx");
66 
67  $this->db_mock->expects($this->any())
68  ->method('nextId')
70  ->willReturnOnConsecutiveCalls(21, 22, 23);
71 
72  $str = '2022-04-28 08:00:00';
73  $this->db_mock->expects($this->any())
74  ->method('fetchAssoc')
75  ->willReturnOnConsecutiveCalls(
76  ['last_update' => $str, 'create_date' => $str],
77  ['last_update' => $str, 'create_date' => $str],
78  ['last_update' => $str, 'create_date' => $str]
79  );
80 
81  $obj->create();
82  $id = $obj->getId();
83  $this->assertEquals(21, $id);
84 
85  $obj->create();
86  $id = $obj->getId();
87  $this->assertEquals(22, $id);
88 
89  $obj->create();
90  $id = $obj->getId();
91  $this->assertEquals(23, $id);
92  }
93 
94  /*
95 
96  alex, 25.1.2023
97 
98  I outcommented this test, since it fails "sometimes".
99  The way fetchAssoc is mocked seems to run into issues, if unexpected tables are queried
100  during the object instantiation.
101 
102  e.g.:
103  ilObjectTest::testSetGetLookup
104  Undefined array key "keyword"
105 
106  /home/runner/work/ILIAS/ILIAS/Services/Administration/classes/class.ilSetting.php:92
107  /home/runner/work/ILIAS/ILIAS/Services/Administration/classes/class.ilSetting.php:62
108  /home/runner/work/ILIAS/ILIAS/Services/Logging/classes/class.ilLoggingDBSettings.php:37
109  /home/runner/work/ILIAS/ILIAS/Services/Logging/classes/class.ilLoggingDBSettings.php:46
110  /home/runner/work/ILIAS/ILIAS/Services/Logging/classes/public/class.ilLoggerFactory.php:69
111  /home/runner/work/ILIAS/ILIAS/Services/Logging/classes/public/class.ilLoggerFactory.php:91
112  /home/runner/work/ILIAS/ILIAS/Services/Object/classes/class.ilObject.php:90
113  /home/runner/work/ILIAS/ILIAS/Services/Object/tests/ilObjectTest.php:106
114 
115  public function testSetGetLookup(): void
116  {
117  global $DIC;
118  $ilUser = $DIC->user();
119 
120  $this->db_mock->expects($this->any())
121  ->method('nextId')
122  ->withConsecutive([ilObject::TABLE_OBJECT_DATA], ['object_reference'])
123  ->willReturnOnConsecutiveCalls(21, 22);
124 
125  $str = '2022-04-28 08:00:00';
126  $this->db_mock->expects($this->any())
127  ->method('fetchAssoc')
128  ->willReturnOnConsecutiveCalls(
129  ['last_update' => $str, 'create_date' => $str],
130  ['last_update' => $str, 'create_date' => $str],
131  ['last_update' => $str, 'create_date' => $str]
132  );
133 
134 
135  $obj = new ilObject();
136  $obj->setType("xxx"); // otherwise type check will fail
137  $obj->setTitle("TestObject");
138  $obj->setDescription("TestDescription");
139  $obj->setImportId("imp_44");
140  $obj->create();
141  $obj->createReference();
142  $id = $obj->getId();
143  $ref_id = $obj->getRefId();
144  $this->assertEquals(21, $id);
145  $this->assertEquals(22, $ref_id);
146 
147 
148  // Reading
149  $DIC['ilDB'] = $this->db_mock = $this->createMock(ilDBInterface::class);
150  $ilDBStatement = $this->createMock(ilDBStatement::class);
151  $this->db_mock->expects($this->any())
152  ->method('query')
153  ->with("SELECT obj_id, type, title, description, owner, create_date, last_update, import_id, offline" . PHP_EOL
154  . "FROM " . ilObject::TABLE_OBJECT_DATA . PHP_EOL
155  . "WHERE obj_id = " . $this->db_mock->quote(21, "integer") . PHP_EOL)
156  ->willReturn($ilDBStatement);
157 
158  $this->db_mock->expects($this->once())
159  ->method('numRows')
160  ->with($ilDBStatement)
161  ->willReturn(1);
162 
163  $this->db_mock->expects($this->once())
164  ->method('fetchAssoc')
165  ->with($ilDBStatement)
166  ->willReturn([
167  'obj_id' => 21,
168  'type' => 'xxx',
169  'title' => 'TestObject',
170  'description' => 'TestDescription',
171  'owner' => 6,
172  'create_date' => '',
173  'last_update' => '',
174  'import_id' => 'imp_44',
175  'offline' => false,
176  ]);
177 
178  $obj = new ilObject($id, false);
179 
180  $this->assertEquals(21, $obj->getId());
181  $this->assertEquals('TestObject', $obj->getTitle());
182  $this->assertEquals('TestDescription', $obj->getDescription());
183  $this->assertEquals('imp_44', $obj->getImportId());
184  $this->assertEquals(6, $obj->getOwner());
185  }
186  */
187 }
const TABLE_OBJECT_DATA
ILIAS DI Container $dic_backup
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilDBInterface $db_mock
global $DIC
Definition: shib_login.php:22
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23