ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilRTEBaseTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
25 
30 abstract class ilRTEBaseTest extends TestCase
31 {
32  protected function setUp(): void
33  {
34  $GLOBALS['DIC'] = new Container();
35  $this->setMocks();
36 
37  parent::setUp();
38  }
39 
44  protected function setGlobalVariable(string $name, $value): void
45  {
46  global $DIC;
47 
48  $GLOBALS[$name] = $value;
49 
50  unset($DIC[$name]);
51  $DIC[$name] = static function ($c) use ($name) {
52  return $GLOBALS[$name];
53  };
54  }
55 
56  protected function setMocks(): void
57  {
58  $tpl_mock = $this->createMock(ilGlobalTemplateInterface::class);
59  $this->setGlobalVariable('tpl', $tpl_mock);
60 
61  $lng = $this
62  ->getMockBuilder(ilLanguage::class)
63  ->disableOriginalConstructor()
64  ->onlyMethods(['txt', 'getInstalledLanguages', 'loadLanguageModule'])
65  ->getMock();
66  $this->setGlobalVariable('lng', $lng);
67 
68  $this->setGlobalVariable(
69  'ilCtrl',
70  $this->getMockBuilder(ilCtrlInterface::class)->disableOriginalConstructor()->getMock()
71  );
72 
73  $this->setGlobalVariable(
74  'ilClientIniFile',
75  $this->getMockBuilder(ilIniFile::class)->disableOriginalConstructor()->getMock()
76  );
77 
78  $this->setGlobalVariable(
79  'ilUser',
80  $this->getMockBuilder(ilObjUser::class)->disableOriginalConstructor()->getMock()
81  );
82 
83  $http = $this
84  ->getMockBuilder(HttpServiceImpl::class)
85  ->disableOriginalConstructor()
86  ->onlyMethods(['agent'])
87  ->getMock();
88  $http
89  ->method('agent')
90  ->willReturn(new AgentDetermination());
91  $this->setGlobalVariable('http', $http);
92  }
93 }
setGlobalVariable(string $name, $value)
$c
Definition: cli.php:38
This library is borrowed from the phpGroupWare API http://www.phpgroupware.org/api Modifications made...
$lng
Class ilRTEBaseTest.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
if($format !==null) $name
Definition: metadata.php:247
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
$http
Definition: raiseError.php:7