ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilChatroomAbstractTestBase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
29 abstract class ilChatroomAbstractTestBase extends TestCase
30 {
32  protected $ilChatroomMock;
35  private ?Container $dic = null;
36 
37  protected function setUp(): void
38  {
39  global $DIC;
40 
41  $this->dic = is_object($DIC) ? clone $DIC : $DIC;
42 
43  $DIC = new Container();
44 
45  $this->setGlobalVariable(
46  'tpl',
47  $this->getMockBuilder(ilGlobalTemplateInterface::class)->getMock()
48  );
49 
50  parent::setUp();
51  }
52 
53  protected function tearDown(): void
54  {
55  global $DIC;
56 
57  $DIC = $this->dic;
58 
59  parent::tearDown();
60  }
61 
66  {
67  $this->ilChatroomUserMock = $this->getMockBuilder(ilChatroomUser::class)->disableOriginalConstructor()->onlyMethods(
68  ['getUserId', 'getUsername']
69  )->getMock();
70 
72  }
73 
77  protected function createGlobalIlDBMock(): ilDBInterface
78  {
79  $db = $this->getMockBuilder(ilDBInterface::class)->getMock();
80  $db->method('quote')->willReturnCallback(static function ($arg): string {
81  return "'" . $arg . "'";
82  });
83 
84  $this->setGlobalVariable('ilDB', $db);
85 
86  return $db;
87  }
88 
89  protected function setGlobalVariable(string $name, $value): void
90  {
91  global $DIC;
92 
93  $GLOBALS[$name] = $value;
94 
95  $DIC[$name] = static function (Container $c) use ($name) {
96  return $GLOBALS[$name];
97  };
98  }
99 }
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
Class ilChatroomAbstractTest.
Class ilChatroomUser.