ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilGlobalCacheSetupAgentTest.php
Go to the documentation of this file.
1 <?php
2 
20 
27 
29 {
30  public function getMServer(array $node): Node
31  {
32  return $this->convertNode($node);
33  }
34 }
35 
36 class ilGlobalCacheSetupAgentTest extends TestCase
37 {
42  protected $obj;
43 
44  public function setUp(): void
45  {
46  $this->refinery = new Refinery($this->createMock(DataFactory::class), $this->createMock(\ilLanguage::class));
47 
48  $this->obj = new TestObj($this->refinery);
49  }
50 
51  public function testCreate(): void
52  {
53  $this->assertInstanceOf(\ilGlobalCacheSetupAgent::class, $this->obj);
54  }
55 
56  public function testHasConfig(): void
57  {
58  $this->assertTrue($this->obj->hasConfig());
59  }
60 
61  public function testGetArrayToConfigTransformationWithNullData(): void
62  {
64  $fnc = $this->obj->getArrayToConfigTransformation();
65  $settings = $fnc(null);
66  $config = $settings->toConfig();
67 
68  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
69  $this->assertFalse($config->isActivated());
70  }
71 
72  public function testGetArrayToConfigTransformationWithEmptyDataArray(): void
73  {
75  $fnc = $this->obj->getArrayToConfigTransformation();
76  $settings = $fnc(null);
77  $config = $settings->toConfig();
78 
79  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
80  $this->assertFalse($config->isActivated());
81  }
82 
83  public function testGetArrayToConfigTransformationWithNullComponents(): void
84  {
86  $fnc = $this->obj->getArrayToConfigTransformation();
87  $settings = $fnc(["components" => null]);
88  $config = $settings->toConfig();
89 
90  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
91  $this->assertFalse($config->isActivated());
92  }
93 
94  public function testGetArrayToConfigTransformationWithNullMemcachedData(): void
95  {
97  $fnc = $this->obj->getArrayToConfigTransformation();
98  $settings = $fnc(["service" => "memcached"]);
99  $config = $settings->toConfig();
100 
101  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
102  $this->assertFalse($config->isActivated());
103  }
104 
105  public function testGetArrayToConfigTransformationWithNullMemcachedDataArray(): void
106  {
108  $fnc = $this->obj->getArrayToConfigTransformation();
109  $settings = $fnc(["service" => "memcached", "memcached_nodes" => null]);
110  $config = $settings->toConfig();
111 
112  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
113  $this->assertFalse($config->isActivated());
114  }
115 
116  public function testGetArrayToConfigTransformationWithEmptyMemcachedDataArray(): void
117  {
119  $fnc = $this->obj->getArrayToConfigTransformation();
120  $settings = $fnc(["service" => "memcached", "memcached_nodes" => []]);
121  $config = $settings->toConfig();
122 
123  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
124  $this->assertFalse($config->isActivated());
125  }
126 
127  public function testGetArrayToConfigTransformationWithDataServices(): void
128  {
129  $services = [
130  Config::PHPSTATIC => "static",
131  Config::MEMCACHED => "memcached",
132  Config::APCU => "apc"
133  ];
134 
135  $node = [
136  "active" => "1",
137  "host" => "test.de",
138  "port" => "9874",
139  "weight" => "10"
140  ];
141 
142  foreach ($services as $key => $service) {
144  $fnc = $this->obj->getArrayToConfigTransformation();
145 
146  $settings = $fnc(
147  [
148  "service" => $service,
149  "memcached_nodes" => [$node],
150  "components" => ["dummy" => true]
151  ]
152  );
153  $config = $settings->toConfig();
154  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
155  $this->assertEquals($key, $config->getAdaptorName());
156  }
157  }
158 
160  {
161  $fnc = $this->obj->getArrayToConfigTransformation();
162 
163  $node = [
164  "active" => "1",
165  "host" => "test.de",
166  "port" => "9874",
167  "weight" => "10"
168  ];
169 
170  $this->expectException(\InvalidArgumentException::class);
171  $this->expectExceptionMessage("Unknown caching service: 'non_existing_service'");
172 
173  $fnc(
174  [
175  "service" => "non_existing_service",
176  "memcached_nodes" => [$node],
177  "components" => ["dummy"]
178  ]
179  );
180  }
181 
183  {
184  $fnc = $this->obj->getArrayToConfigTransformation();
185 
186  $node = [
187  "active" => "1",
188  "host" => "test.de",
189  "port" => "9874",
190  "weight" => "10"
191  ];
192 
193  $settings = $fnc(
194  [
195  "service" => "memcached",
196  "memcached_nodes" => [$node],
197  "components" => ["dummy" => true]
198  ]
199  );
200 
201  $this->assertInstanceOf(\ilGlobalCacheSettingsAdapter::class, $settings);
202  $this->assertIsArray($settings->getMemcachedNodes());
203 
204  $settings = $settings->getMemcachedNodes();
205  $node = array_shift($settings);
206 
207  $this->assertEquals("test.de", $node->getHost());
208  $this->assertEquals("9874", $node->getPort());
209  $this->assertEquals("10", $node->getWeight());
210  }
211 
212  public function testGetMemcachedServerActive(): void
213  {
214  $node = $node = [
215  "active" => "1",
216  "host" => "my.test.de",
217  "port" => "1111",
218  "weight" => "20"
219  ];
220 
221  $result = $this->obj->getMServer($node);
222 
223  $this->assertEquals("my.test.de", $result->getHost());
224  $this->assertEquals("1111", $result->getPort());
225  $this->assertEquals("20", $result->getWeight());
226  }
227 
228  public function testGetMemcachedServerInactive(): void
229  {
230  $node = $node = [
231  "active" => "0",
232  "host" => "my.test.de",
233  "port" => "1111",
234  "weight" => "20"
235  ];
236 
237  $result = $this->obj->getMServer($node);
238 
239  $this->assertEquals("my.test.de", $result->getHost());
240  $this->assertEquals("1111", $result->getPort());
241  $this->assertEquals("20", $result->getWeight());
242  }
243 
244  public function testGetInstallObjectives(): void
245  {
246  $setup_conf_mock = $this->createMock(\ilGlobalCacheSettingsAdapter::class);
247  $objective_collection = $this->obj->getInstallObjective($setup_conf_mock);
248 
249  $this->assertEquals('Store configuration of components/ILIAS/GlobalCache_', $objective_collection->getLabel());
250  $this->assertFalse($objective_collection->isNotable());
251  }
252 
253  public function testGetUpdateObjective(): void
254  {
255  $setup_conf_mock = $this->createMock(\ilGlobalCacheSettingsAdapter::class);
256  $objective_collection = $this->obj->getUpdateObjective($setup_conf_mock);
257 
258  $this->assertEquals('Store configuration of components/ILIAS/GlobalCache_', $objective_collection->getLabel());
259  $this->assertFalse($objective_collection->isNotable());
260  }
261 
262  public function testGetUpdateObjectiveWithoutConfig(): void
263  {
264  $objective_collection = $this->obj->getUpdateObjective();
265 
266  $this->assertInstanceOf(NullObjective::class, $objective_collection);
267  }
268 
269 
270  public function testGetBuildArtifactObjective(): void
271  {
272  $objective_collection = $this->obj->getBuildObjective();
273 
274  $this->assertInstanceOf(NullObjective::class, $objective_collection);
275  }
276 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$service
Definition: ltiservices.php:40