Class ilChatroomServerSettingsTest.
More...
◆ setterAndGettersProvider()
static ilChatroomServerSettingsTest::setterAndGettersProvider |
( |
| ) |
|
|
static |
- Returns
- list<array{0: string, 1: callable(mixed): void, 2: mixed}>
Definition at line 34 of file ilChatroomServerSettingsTest.php.
36 $assertIsString =
static function ($actual):
void {
37 self::assertIsString($actual,
'The actual return value is not a type of "string"');
40 $assertIsInteger =
static function ($actual):
void {
41 self::assertIsInt($actual,
'The actual return value is not a type of "int"');
44 $assertIsBool =
static function ($actual):
void {
45 self::assertIsBool($actual,
'The actual return value is not a type of "bool"');
49 [
'port', $assertIsInteger, 7373],
50 [
'protocol', $assertIsString,
'http://'],
51 [
'domain', $assertIsString,
'127.0.0.1'],
53 [
'authKey', $assertIsString,
'cfdf79fc-4133-4f3b-882f-5162a87dc465'],
54 [
'authSecret', $assertIsString,
'f8072a49-0488-411f-be0a-723a762700ba'],
55 [
'clientUrlEnabled', $assertIsBool,
true],
56 [
'clientUrl', $assertIsString,
'http://proxy.localhost'],
57 [
'iliasUrlEnabled', $assertIsBool,
true],
58 [
'iliasUrl', $assertIsString,
'http://proxy.localhost'],
60 [
'instance', $assertIsString,
'123456'],
◆ setUp()
ilChatroomServerSettingsTest::setUp |
( |
| ) |
|
|
protected |
◆ testGenerateClientUrlIfDisabled()
ilChatroomServerSettingsTest::testGenerateClientUrlIfDisabled |
( |
| ) |
|
Definition at line 116 of file ilChatroomServerSettingsTest.php.
References ILIAS\Repository\settings().
118 $protocol =
'http://';
119 $domain =
'127.0.0.1';
120 $clientDomain =
'proxy.localhost';
122 $expected = sprintf(
'%s%s:%s', $protocol, $domain, $port);
124 $this->
settings->setClientUrlEnabled(
false);
125 $this->
settings->setDomain($domain);
127 $this->
settings->setProtocol($protocol);
128 $this->
settings->setClientUrl(sprintf(
'%s:%s', $clientDomain, $port));
130 $this->assertSame($expected, $this->
settings->generateClientUrl());
◆ testGenerateClientUrlIfEnabled()
ilChatroomServerSettingsTest::testGenerateClientUrlIfEnabled |
( |
| ) |
|
Definition at line 99 of file ilChatroomServerSettingsTest.php.
References ILIAS\Repository\settings().
101 $protocol =
'http://';
102 $domain =
'127.0.0.1';
103 $clientDomain =
'proxy.localhost';
105 $expected = sprintf(
'%s%s:%s', $protocol, $clientDomain, $port);
107 $this->
settings->setClientUrlEnabled(
true);
108 $this->
settings->setProtocol($protocol);
109 $this->
settings->setDomain($domain);
111 $this->
settings->setClientUrl(sprintf(
'%s:%s', $clientDomain, $port));
113 $this->assertSame($expected, $this->
settings->generateClientUrl());
◆ testGenerateIliasUrlIfDisabled()
ilChatroomServerSettingsTest::testGenerateIliasUrlIfDisabled |
( |
| ) |
|
Definition at line 150 of file ilChatroomServerSettingsTest.php.
References ILIAS\Repository\settings().
152 $protocol =
'http://';
153 $domain =
'127.0.0.1';
154 $iliasDomain =
'proxy.localhost';
156 $expected = sprintf(
'%s%s:%s', $protocol, $domain, $port);
158 $this->
settings->setIliasUrlEnabled(
false);
159 $this->
settings->setDomain($domain);
161 $this->
settings->setProtocol($protocol);
162 $this->
settings->setIliasUrl(sprintf(
'%s:%s', $iliasDomain, $port));
164 $this->assertSame($expected, $this->
settings->generateIliasUrl());
◆ testGenerateIliasUrlIfEnabled()
ilChatroomServerSettingsTest::testGenerateIliasUrlIfEnabled |
( |
| ) |
|
Definition at line 133 of file ilChatroomServerSettingsTest.php.
References ILIAS\Repository\settings().
135 $protocol =
'http://';
136 $domain =
'127.0.0.1';
137 $iliasDomain =
'proxy.localhost';
139 $expected = sprintf(
'%s%s:%s', $protocol, $iliasDomain, $port);
141 $this->
settings->setIliasUrlEnabled(
true);
142 $this->
settings->setProtocol($protocol);
143 $this->
settings->setDomain($domain);
145 $this->
settings->setIliasUrl(sprintf(
'%s:%s', $iliasDomain, $port));
147 $this->assertSame($expected, $this->
settings->generateIliasUrl());
◆ testGetBaseUrl()
ilChatroomServerSettingsTest::testGetBaseUrl |
( |
| ) |
|
◆ testGetUrl()
ilChatroomServerSettingsTest::testGetUrl |
( |
| ) |
|
◆ testSettersAndGetters()
ilChatroomServerSettingsTest::testSettersAndGetters |
( |
string |
$property, |
|
|
callable |
$assertionCallback, |
|
|
|
$value |
|
) |
| |
- Parameters
-
| callable(mixed) | void $assertionCallback |
mixed | $value | setterAndGettersProvider |
Definition at line 69 of file ilChatroomServerSettingsTest.php.
References ILIAS\Repository\settings().
71 $setter =
'set' . ucfirst($property);
72 $getter =
'get' . ucfirst(($property));
74 $this->assertTrue(method_exists($this->
settings, $setter), sprintf(
'The Setter "%s" does not exist', $setter));
75 $this->assertTrue(method_exists($this->
settings, $getter), sprintf(
'The Getter "%s" does not exist', $setter));
78 $actual = $this->
settings->$getter();
80 $this->assertSame($value, $actual, sprintf(
'The expected value "%s" is not equals to "%s"', $value, $actual));
82 $assertionCallback($actual);
◆ $settings
The documentation for this class was generated from the following file: