ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilRPCServerSettingsTest Class Reference

Unit tests for class ilRPCServerSettings. More...

+ Inheritance diagram for ilRPCServerSettingsTest:
+ Collaboration diagram for ilRPCServerSettingsTest:

Public Member Functions

 testConstruct ()
 

Protected Member Functions

 setUp ()
 
 setGlobalVariable (string $name, $value)
 
 initDependencies ()
 

Protected Attributes

Container $dic
 

Detailed Description

Unit tests for class ilRPCServerSettings.

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 13 of file ilRPCServerSettingsTest.php.

Member Function Documentation

◆ initDependencies()

ilRPCServerSettingsTest::initDependencies ( )
protected

Definition at line 40 of file ilRPCServerSettingsTest.php.

References $dic, $GLOBALS, and setGlobalVariable().

Referenced by setUp().

40  : void
41  {
42  $this->dic = new Container();
43  $GLOBALS['DIC'] = $this->dic;
44 
45  $this->setGlobalVariable('ilSetting', $this->createMock(ilSetting::class));
46 
47  $logger = $this->getMockBuilder(ilLogger::class)
48  ->disableOriginalConstructor()
49  ->getMock();
50 
51  $logger_factory = $this->getMockBuilder(ilLoggerFactory::class)
52  ->disableOriginalConstructor()
53  ->onlyMethods(['getComponentLogger'])
54  ->getMock();
55  $logger_factory->method('getComponentLogger')->willReturn($logger);
56  $this->setGlobalVariable('ilLoggerFactory', $logger_factory);
57  }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
setGlobalVariable(string $name, $value)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ setGlobalVariable()

ilRPCServerSettingsTest::setGlobalVariable ( string  $name,
  $value 
)
protected

Definition at line 29 of file ilRPCServerSettingsTest.php.

References $c, $DIC, $GLOBALS, and $name.

Referenced by initDependencies().

29  : void
30  {
31  global $DIC;
32 
33  $GLOBALS[$name] = $value;
34  unset($DIC[$name]);
35  $DIC[$name] = static function (\ILIAS\DI\Container $c) use ($value) {
36  return $value;
37  };
38  }
$c
Definition: cli.php:38
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
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
+ Here is the caller graph for this function:

◆ setUp()

ilRPCServerSettingsTest::setUp ( )
protected

Definition at line 17 of file ilRPCServerSettingsTest.php.

References initDependencies().

17  : void
18  {
19  $this->initDependencies();
20  parent::setUp();
21  }
+ Here is the call graph for this function:

◆ testConstruct()

ilRPCServerSettingsTest::testConstruct ( )

Definition at line 23 of file ilRPCServerSettingsTest.php.

References ilRPCServerSettings\getInstance().

23  : void
24  {
25  $rpc_settings = ilRPCServerSettings::getInstance();
26  $this->assertInstanceOf(ilRPCServerSettings::class, $rpc_settings);
27  }
+ Here is the call graph for this function:

Field Documentation

◆ $dic

Container ilRPCServerSettingsTest::$dic
protected

Definition at line 15 of file ilRPCServerSettingsTest.php.

Referenced by initDependencies().


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