19 declare(strict_types=1);
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'],
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);
87 $protocol =
'http://';
88 $domain =
'127.0.0.1';
90 $expected = sprintf(
'%s%s:%s', $protocol, $domain, $port);
92 $this->
settings->setProtocol($protocol);
96 $this->assertSame($expected, $this->
settings->getBaseURL());
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());
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());
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());
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());
169 $protocol =
'http://';
170 $domain =
'127.0.0.1';
171 $iliasDomain =
'proxy.localhost:8080';
173 $action =
'Heartbeat';
174 $instance =
'master';
177 $this->
settings->setProtocol($protocol);
178 $this->
settings->setDomain($domain);
180 $this->
settings->setIliasUrl($iliasDomain);
181 $this->
settings->setInstance($instance);
183 $this->
settings->setIliasUrlEnabled(
false);
193 $this->assertSame($expected, $this->
settings->getURL($action));
195 $this->
settings->setIliasUrlEnabled(
false);
197 '%s%s:%s%s/%s/%s/%s',
206 $this->assertSame($expected, $this->
settings->getURL($action,
$scope));
208 $this->
settings->setIliasUrlEnabled(
true);
217 $this->assertSame($expected, $this->
settings->getURL($action));
219 $this->
settings->setIliasUrlEnabled(
true);
229 $this->assertSame($expected, $this->
settings->getURL($action,
$scope));
testGenerateClientUrlIfEnabled()
ilChatroomServerSettings $settings
testGenerateIliasUrlIfEnabled()
testGenerateIliasUrlIfDisabled()
Class ilChatroomServerSettingsTest.
testGenerateClientUrlIfDisabled()
static setterAndGettersProvider()
testSettersAndGetters(string $property, callable $assertionCallback, $value)