ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilChatroomAbstractTaskTestBase.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 
30 {
32  protected $gui;
36  protected $object;
37 
38  protected function setUp(): void
39  {
40  parent::setUp();
41 
42  if (!defined('ROOT_FOLDER_ID')) {
43  define('ROOT_FOLDER_ID', time());
44  }
45  }
46 
47  protected function createGlobalIlLanguageMock(): ilLanguage
48  {
49  $lng = $this->getMockBuilder(ilLanguage::class)->disableOriginalConstructor()->onlyMethods(
50  ['loadLanguageModule', 'txt']
51  )->getMock();
52 
53  $lng->method('loadLanguageModule')->with(
54  $this->logicalOr(
55  $this->equalTo('chatroom'),
56  $this->equalTo('meta')
57  )
58  );
59  $lng->method('txt');
60 
61  $this->setGlobalVariable('lng', $lng);
62 
63  return $lng;
64  }
65 
67  {
68  $rbacsystem = $this->getMockBuilder(ilRbacSystem::class)->disableOriginalConstructor()->onlyMethods(
69  ['checkAccess']
70  )->getMock();
71 
72  $this->setGlobalVariable('rbacsystem', $rbacsystem);
73 
74  return $rbacsystem;
75  }
76 
78  string $permission,
79  bool $result,
80  ?InvocationOrder $times = null
81  ) {
82  if ($times === null) {
83  $times = $this->any();
84  }
85 
86  return $GLOBALS['rbacsystem']->expects($times)
87  ->method('checkAccess')
88  ->with($this->equalTo($permission))->willReturn(
89  $result
90  );
91  }
92 
94  {
95  $ctrl = $this->createMock(ilCtrlInterface::class);
96 
97  $this->setGlobalVariable('ilCtrl', $ctrl);
98 
99  return $GLOBALS['ilCtrl'];
100  }
101 
102  protected function createGlobalIlUserMock(): ilObjUser
103  {
104  $user = $this->getMockBuilder(ilObjUser::class)->disableOriginalConstructor()->getMock();
105 
106  $this->setGlobalVariable('ilUser', $user);
107 
108  return $user;
109  }
110 
111  protected function createIlObjChatroomGUIGetConnectorMock($returnValue): void
112  {
113  $this->gui->method('getConnector')->willReturn($returnValue);
114  }
115 
117  int $userId,
118  int $subRoomId,
119  bool $result
120  ): InvocationMocker {
121  return $this->ilChatroomMock->method('isOwnerOfPrivateRoom')->with(
122  $this->equalTo($userId),
123  $this->equalTo($subRoomId)
124  )->willReturn($result);
125  }
126 
127  protected function createIlChatroomUserGetUserIdMock(int $userId): InvocationMocker
128  {
129  return $this->ilChatroomUserMock->method('getUserId')->willReturn($userId);
130  }
131 
133  ilChatroomServerSettings $settings
135  $this->ilChatroomServerConnectorMock = $this->getMockBuilder(ilChatroomServerConnector::class)->setConstructorArgs(
136  [$settings]
137  )->onlyMethods(['file_get_contents'])->getMock();
138 
140  }
141 
142  protected function createIlChatroomServerConnectorFileGetContentsMock($returnValue): InvocationMocker
143  {
144  return $this->ilChatroomServerConnectorMock->method('file_get_contents')->willReturn(
145  $returnValue
146  );
147  }
148 
149  protected function createIlObjChatroomMock(int $id): ilObjChatroom
150  {
151  $this->object = $this->getMockBuilder(ilObjChatroom::class)->disableOriginalConstructor()->onlyMethods(
152  ['getId']
153  )->getMock();
154  $this->object->method('getId')->willReturn($id);
155 
156  return $this->object;
157  }
158 
159  protected function createSendResponseMock(MockObject $mock, $response): void
160  {
161  $mock->expects($this->once())->method('sendResponse')->with(
162  $this->equalTo($response)
163  )->willReturnCallback(
164  static function (): never {
165  throw new Exception('Exit', 0);
166  }
167  );
168  }
169 }
$response
Definition: xapitoken.php:93
createIlChatroomServerConnectorMock(ilChatroomServerSettings $settings)
createGlobalRbacSystemCheckAccessMock(string $permission, bool $result, ?InvocationOrder $times=null)
createSendResponseMock(MockObject $mock, $response)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$GLOBALS["DIC"]
Definition: wac.php:53
Class ilChatroomAbstractTaskTest.
Class ilChatroomServerConnector.
createIlChatroomIsOwnerOfPrivateRoomMock(int $userId, int $subRoomId, bool $result)
Class ilChatroomAbstractTest.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
global $lng
Definition: privfeed.php:31