46 $this->
refinery =
new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
53 $this->assertInstanceOf(\ilGlobalCacheSetupAgent::class, $this->obj);
58 $this->assertTrue($this->obj->hasConfig());
61 public function testGetArrayToConfigTransformationWithNullData():
void 64 $fnc = $this->obj->getArrayToConfigTransformation();
65 $settings = $fnc(
null);
66 $config = $settings->toConfig();
68 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
69 $this->assertFalse($config->isActivated());
72 public function testGetArrayToConfigTransformationWithEmptyDataArray():
void 75 $fnc = $this->obj->getArrayToConfigTransformation();
76 $settings = $fnc(
null);
77 $config = $settings->toConfig();
79 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
80 $this->assertFalse($config->isActivated());
83 public function testGetArrayToConfigTransformationWithNullComponents():
void 86 $fnc = $this->obj->getArrayToConfigTransformation();
87 $settings = $fnc([
"components" =>
null]);
88 $config = $settings->toConfig();
90 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
91 $this->assertFalse($config->isActivated());
94 public function testGetArrayToConfigTransformationWithNullMemcachedData():
void 97 $fnc = $this->obj->getArrayToConfigTransformation();
98 $settings = $fnc([
"service" =>
"memcached"]);
99 $config = $settings->toConfig();
101 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
102 $this->assertFalse($config->isActivated());
105 public function testGetArrayToConfigTransformationWithNullMemcachedDataArray():
void 108 $fnc = $this->obj->getArrayToConfigTransformation();
109 $settings = $fnc([
"service" =>
"memcached",
"memcached_nodes" =>
null]);
110 $config = $settings->toConfig();
112 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
113 $this->assertFalse($config->isActivated());
116 public function testGetArrayToConfigTransformationWithEmptyMemcachedDataArray():
void 119 $fnc = $this->obj->getArrayToConfigTransformation();
120 $settings = $fnc([
"service" =>
"memcached",
"memcached_nodes" => []]);
121 $config = $settings->toConfig();
123 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
124 $this->assertFalse($config->isActivated());
127 public function testGetArrayToConfigTransformationWithDataServices():
void 142 foreach ($services as $key =>
$service) {
144 $fnc = $this->obj->getArrayToConfigTransformation();
149 "memcached_nodes" => [$node],
150 "components" => [
"dummy" =>
true]
153 $config = $settings->toConfig();
154 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
155 $this->assertEquals($key, $config->getAdaptorName());
161 $fnc = $this->obj->getArrayToConfigTransformation();
170 $this->expectException(\InvalidArgumentException::class);
171 $this->expectExceptionMessage(
"Unknown caching service: 'non_existing_service'");
175 "service" =>
"non_existing_service",
176 "memcached_nodes" => [$node],
177 "components" => [
"dummy"]
184 $fnc = $this->obj->getArrayToConfigTransformation();
195 "service" =>
"memcached",
196 "memcached_nodes" => [$node],
197 "components" => [
"dummy" =>
true]
201 $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
202 $this->assertIsArray($settings->getMemcachedNodes());
204 $settings = $settings->getMemcachedNodes();
205 $node = array_shift($settings);
207 $this->assertEquals(
"test.de", $node->getHost());
208 $this->assertEquals(
"9874", $node->getPort());
209 $this->assertEquals(
"10", $node->getWeight());
216 "host" =>
"my.test.de",
221 $result = $this->obj->getMServer($node);
223 $this->assertEquals(
"my.test.de", $result->getHost());
224 $this->assertEquals(
"1111", $result->getPort());
225 $this->assertEquals(
"20", $result->getWeight());
232 "host" =>
"my.test.de",
237 $result = $this->obj->getMServer($node);
239 $this->assertEquals(
"my.test.de", $result->getHost());
240 $this->assertEquals(
"1111", $result->getPort());
241 $this->assertEquals(
"20", $result->getWeight());
246 $setup_conf_mock = $this->createMock(\ilGlobalCacheSettingsAdapter::class);
247 $objective_collection = $this->obj->getInstallObjective($setup_conf_mock);
249 $this->assertEquals(
'Store configuration of components/ILIAS/GlobalCache_', $objective_collection->getLabel());
250 $this->assertFalse($objective_collection->isNotable());
255 $setup_conf_mock = $this->createMock(\ilGlobalCacheSettingsAdapter::class);
256 $objective_collection = $this->obj->getUpdateObjective($setup_conf_mock);
258 $this->assertEquals(
'Store configuration of components/ILIAS/GlobalCache_', $objective_collection->getLabel());
259 $this->assertFalse($objective_collection->isNotable());
264 $objective_collection = $this->obj->getUpdateObjective();
266 $this->assertInstanceOf(NullObjective::class, $objective_collection);
272 $objective_collection = $this->obj->getBuildObjective();
274 $this->assertInstanceOf(NullObjective::class, $objective_collection);
testGetBuildArtifactObjective()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testGetArrayToConfigTransformationWithServiceException()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
testGetArrayToConfigTransformationWithMemcachedNode()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testGetMemcachedServerInactive()
testGetInstallObjectives()
testGetUpdateObjectiveWithoutConfig()
testGetMemcachedServerActive()