]> git.mxchange.org Git - friendica.git/blob - tests/src/Core/InstallerTest.php
Update install to generate config/local.config.php
[friendica.git] / tests / src / Core / InstallerTest.php
1 <?php
2
3 // this is in the same namespace as Install for mocking 'function_exists'
4 namespace Friendica\Core;
5
6 use Friendica\Test\MockedTest;
7 use Friendica\Test\Util\L10nMockTrait;
8 use Friendica\Test\Util\VFSTrait;
9
10 /**
11  * @runTestsInSeparateProcesses
12  * @preserveGlobalState disabled
13  */
14 class InstallerTest extends MockedTest
15 {
16         use VFSTrait;
17         use L10nMockTrait;
18
19         public function setUp()
20         {
21                 parent::setUp();
22
23                 $this->setUpVfsDir();
24         }
25
26         /**
27          * Mocking the L10n::t() calls for the function checks
28          */
29         private function mockFunctionL10TCalls()
30         {
31                 $this->mockL10nT('Apache mod_rewrite module', 1);
32                 $this->mockL10nT('PDO or MySQLi PHP module', 1);
33                 $this->mockL10nT('libCurl PHP module', 1);
34                 $this->mockL10nT('Error: libCURL PHP module required but not installed.', 1);
35                 $this->mockL10nT('XML PHP module', 1);
36                 $this->mockL10nT('GD graphics PHP module', 1);
37                 $this->mockL10nT('Error: GD graphics PHP module with JPEG support required but not installed.', 1);
38                 $this->mockL10nT('OpenSSL PHP module', 1);
39                 $this->mockL10nT('Error: openssl PHP module required but not installed.', 1);
40                 $this->mockL10nT('mb_string PHP module', 1);
41                 $this->mockL10nT('Error: mb_string PHP module required but not installed.', 1);
42                 $this->mockL10nT('iconv PHP module', 1);
43                 $this->mockL10nT('Error: iconv PHP module required but not installed.', 1);
44                 $this->mockL10nT('POSIX PHP module', 1);
45                 $this->mockL10nT('Error: POSIX PHP module required but not installed.', 1);
46         }
47
48         private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray)
49         {
50                 $this->assertArraySubset([$position => [
51                         'title' => $title,
52                         'status' => $status,
53                         'required' => $required,
54                         'error_msg' => null,
55                         'help' => $help]
56                 ], $assertionArray);
57         }
58
59         /**
60          * Replaces function_exists results with given mocks
61          *
62          * @param array $functions a list from function names and their result
63          */
64         private function setFunctions($functions)
65         {
66                 global $phpMock;
67                 $phpMock['function_exists'] = function($function) use ($functions) {
68                         foreach ($functions as $name => $value) {
69                                 if ($function == $name) {
70                                         return $value;
71                                 }
72                         }
73                         return '__phpunit_continue__';
74                 };
75         }
76
77         /**
78          * Replaces class_exist results with given mocks
79          *
80          * @param array $classes a list from class names and their results
81          */
82         private function setClasses($classes)
83         {
84                 global $phpMock;
85                 $phpMock['class_exists'] = function($class) use ($classes) {
86                         foreach ($classes as $name => $value) {
87                                 if ($class == $name) {
88                                         return $value;
89                                 }
90                         }
91                         return '__phpunit_continue__';
92                 };
93         }
94
95         /**
96          * @small
97          */
98         public function testCheckKeys()
99         {
100                 $this->setFunctions(['openssl_pkey_new' => false]);
101                 $install = new Installer();
102                 $this->assertFalse($install->checkKeys());
103
104                 $this->setFunctions(['openssl_pkey_new' => true]);
105                 $install = new Installer();
106                 $this->assertTrue($install->checkKeys());
107         }
108
109         /**
110          * @small
111          */
112         public function testCheckFunctions()
113         {
114                 $this->mockFunctionL10TCalls();
115                 $this->setFunctions(['curl_init' => false, 'imagecreatefromjpeg' => true]);
116                 $install = new Installer();
117                 $this->assertFalse($install->checkFunctions());
118                 $this->assertCheckExist(3,
119                         'libCurl PHP module',
120                         'Error: libCURL PHP module required but not installed.',
121                         false,
122                         true,
123                         $install->getChecks());
124
125                 $this->mockFunctionL10TCalls();
126                 $this->setFunctions(['imagecreatefromjpeg' => false]);
127                 $install = new Installer();
128                 $this->assertFalse($install->checkFunctions());
129                 $this->assertCheckExist(4,
130                         'GD graphics PHP module',
131                         'Error: GD graphics PHP module with JPEG support required but not installed.',
132                         false,
133                         true,
134                         $install->getChecks());
135
136                 $this->mockFunctionL10TCalls();
137                 $this->setFunctions(['openssl_public_encrypt' => false]);
138                 $install = new Installer();
139                 $this->assertFalse($install->checkFunctions());
140                 $this->assertCheckExist(5,
141                         'OpenSSL PHP module',
142                         'Error: openssl PHP module required but not installed.',
143                         false,
144                         true,
145                         $install->getChecks());
146
147                 $this->mockFunctionL10TCalls();
148                 $this->setFunctions(['mb_strlen' => false]);
149                 $install = new Installer();
150                 $this->assertFalse($install->checkFunctions());
151                 $this->assertCheckExist(6,
152                         'mb_string PHP module',
153                         'Error: mb_string PHP module required but not installed.',
154                         false,
155                         true,
156                         $install->getChecks());
157
158                 $this->mockFunctionL10TCalls();
159                 $this->setFunctions(['iconv_strlen' => false]);
160                 $install = new Installer();
161                 $this->assertFalse($install->checkFunctions());
162                 $this->assertCheckExist(7,
163                         'iconv PHP module',
164                         'Error: iconv PHP module required but not installed.',
165                         false,
166                         true,
167                         $install->getChecks());
168
169                 $this->mockFunctionL10TCalls();
170                 $this->setFunctions(['posix_kill' => false]);
171                 $install = new Installer();
172                 $this->assertFalse($install->checkFunctions());
173                 $this->assertCheckExist(8,
174                         'POSIX PHP module',
175                         'Error: POSIX PHP module required but not installed.',
176                         false,
177                         true,
178                         $install->getChecks());
179
180                 $this->mockFunctionL10TCalls();
181                 $this->setFunctions([
182                         'curl_init' => true,
183                         'imagecreatefromjpeg' => true,
184                         'openssl_public_encrypt' => true,
185                         'mb_strlen' => true,
186                         'iconv_strlen' => true,
187                         'posix_kill' => true
188                 ]);
189                 $install = new Installer();
190                 $this->assertTrue($install->checkFunctions());
191         }
192
193         /**
194          * @small
195          */
196         public function testCheckLocalIni()
197         {
198                 $this->assertTrue($this->root->hasChild('config/local.config.php'));
199
200                 $install = new Installer();
201                 $this->assertTrue($install->checkLocalIni());
202
203                 $this->delConfigFile('local.config.php');
204
205                 $this->assertFalse($this->root->hasChild('config/local.config.php'));
206
207                 $install = new Installer();
208                 $this->assertTrue($install->checkLocalIni());
209         }
210
211         /**
212          * @small
213          */
214         public function testCheckHtAccessFail()
215         {
216                 // Mocking the CURL Response
217                 $curlResult = \Mockery::mock('Friendica\Network\CurlResult');
218                 $curlResult
219                         ->shouldReceive('getReturnCode')
220                         ->andReturn('404');
221                 $curlResult
222                         ->shouldReceive('getRedirectUrl')
223                         ->andReturn('');
224                 $curlResult
225                         ->shouldReceive('getError')
226                         ->andReturn('test Error');
227
228                 // Mocking the CURL Request
229                 $networkMock = \Mockery::mock('alias:Friendica\Util\Network');
230                 $networkMock
231                         ->shouldReceive('fetchUrlFull')
232                         ->with('https://test/install/testrewrite')
233                         ->andReturn($curlResult);
234                 $networkMock
235                         ->shouldReceive('fetchUrlFull')
236                         ->with('http://test/install/testrewrite')
237                         ->andReturn($curlResult);
238
239                 // Mocking that we can use CURL
240                 $this->setFunctions(['curl_init' => true]);
241
242                 // needed because of "normalise_link"
243                 require_once __DIR__ . '/../../../include/text.php';
244
245                 $install = new Installer();
246
247                 $this->assertFalse($install->checkHtAccess('https://test'));
248                 $this->assertSame('test Error', $install->getChecks()[0]['error_msg']['msg']);
249         }
250
251         /**
252          * @small
253          */
254         public function testCheckHtAccessWork()
255         {
256                 // Mocking the failed CURL Response
257                 $curlResultF = \Mockery::mock('Friendica\Network\CurlResult');
258                 $curlResultF
259                         ->shouldReceive('getReturnCode')
260                         ->andReturn('404');
261
262                 // Mocking the working CURL Response
263                 $curlResultW = \Mockery::mock('Friendica\Network\CurlResult');
264                 $curlResultW
265                         ->shouldReceive('getReturnCode')
266                         ->andReturn('204');
267
268                 // Mocking the CURL Request
269                 $networkMock = \Mockery::mock('alias:Friendica\Util\Network');
270                 $networkMock
271                         ->shouldReceive('fetchUrlFull')
272                         ->with('https://test/install/testrewrite')
273                         ->andReturn($curlResultF);
274                 $networkMock
275                         ->shouldReceive('fetchUrlFull')
276                         ->with('http://test/install/testrewrite')
277                         ->andReturn($curlResultW);
278
279                 // Mocking that we can use CURL
280                 $this->setFunctions(['curl_init' => true]);
281
282                 // needed because of "normalise_link"
283                 require_once __DIR__ . '/../../../include/text.php';
284
285                 $install = new Installer();
286
287                 $this->assertTrue($install->checkHtAccess('https://test'));
288         }
289
290         /**
291          * @small
292          */
293         public function testImagick()
294         {
295                 $imageMock = \Mockery::mock('alias:Friendica\Object\Image');
296                 $imageMock
297                         ->shouldReceive('supportedTypes')
298                         ->andReturn(['image/gif' => 'gif']);
299
300                 $this->setClasses(['Imagick' => true]);
301
302                 $install = new Installer();
303
304                 // even there is no supported type, Imagick should return true (because it is not required)
305                 $this->assertTrue($install->checkImagick());
306
307                 $this->assertCheckExist(1,
308                         L10n::t('ImageMagick supports GIF'),
309                         '',
310                         true,
311                         false,
312                         $install->getChecks());
313         }
314
315         /**
316          * @small
317          */
318         public function testImagickNotFound()
319         {
320                 $imageMock = \Mockery::mock('alias:Friendica\Object\Image');
321                 $imageMock
322                         ->shouldReceive('supportedTypes')
323                         ->andReturn([]);
324
325                 $this->setClasses(['Imagick' => true]);
326
327                 $install = new Installer();
328
329                 // even there is no supported type, Imagick should return true (because it is not required)
330                 $this->assertTrue($install->checkImagick());
331                 $this->assertCheckExist(1,
332                         L10n::t('ImageMagick supports GIF'),
333                         '',
334                         false,
335                         false,
336                         $install->getChecks());
337         }
338
339         public function testImagickNotInstalled()
340         {
341                 $this->setClasses(['Imagick' => false]);
342                 $this->mockL10nT('ImageMagick PHP extension is not installed');
343
344                 $install = new Installer();
345
346                 // even there is no supported type, Imagick should return true (because it is not required)
347                 $this->assertTrue($install->checkImagick());
348                 $this->assertCheckExist(0,
349                         'ImageMagick PHP extension is not installed',
350                         '',
351                         false,
352                         false,
353                         $install->getChecks());
354         }
355 }
356
357 /**
358  * A workaround to replace the PHP native function_exists with a mocked function
359  *
360  * @param string $function_name the Name of the function
361  *
362  * @return bool true or false
363  */
364 function function_exists($function_name)
365 {
366         global $phpMock;
367         if (isset($phpMock['function_exists'])) {
368                 $result = call_user_func_array($phpMock['function_exists'], func_get_args());
369                 if ($result !== '__phpunit_continue__') {
370                         return $result;
371                 }
372         }
373         return call_user_func_array('\function_exists', func_get_args());
374 }
375
376 function class_exists($class_name)
377 {
378         global $phpMock;
379         if (isset($phpMock['class_exists'])) {
380                 $result = call_user_func_array($phpMock['class_exists'], func_get_args());
381                 if ($result !== '__phpunit_continue__') {
382                         return $result;
383                 }
384         }
385         return call_user_func_array('\class_exists', func_get_args());
386 }