ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilObjectTest Class Reference
+ Inheritance diagram for ilObjectTest:
+ Collaboration diagram for ilObjectTest:

Public Member Functions

 testCreationDeletion ()
 

Protected Member Functions

 setUp ()
 
 tearDown ()
 

Protected Attributes

ilDBInterface $db_mock
 

Private Attributes

ILIAS DI Container $dic_backup = null
 

Detailed Description

Definition at line 24 of file ilObjectTest.php.

Member Function Documentation

◆ setUp()

ilObjectTest::setUp ( )
protected

Definition at line 32 of file ilObjectTest.php.

References $DIC.

32  : 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  }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
global $DIC
Definition: shib_login.php:22

◆ tearDown()

ilObjectTest::tearDown ( )
protected

Definition at line 56 of file ilObjectTest.php.

References $DIC, and $dic_backup.

56  : void
57  {
58  global $DIC;
59  $DIC = $this->dic_backup;
60  }
ILIAS DI Container $dic_backup
global $DIC
Definition: shib_login.php:22

◆ testCreationDeletion()

ilObjectTest::testCreationDeletion ( )

Definition at line 62 of file ilObjectTest.php.

References $id, and ilObject\TABLE_OBJECT_DATA.

62  : 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  }
const TABLE_OBJECT_DATA
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23

Field Documentation

◆ $db_mock

ilDBInterface ilObjectTest::$db_mock
protected

Definition at line 30 of file ilObjectTest.php.

◆ $dic_backup

ILIAS DI Container ilObjectTest::$dic_backup = null
private

Definition at line 26 of file ilObjectTest.php.

Referenced by tearDown().


The documentation for this class was generated from the following file: