]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/InstallerTest.php
Add testmode
[friendica.git] / tests / src / Core / InstallerTest.php
index a4ee20b8ce22df4d5a6e52bbba1e7435fa0c40af..f512bf17b9f4fe1d21607f82f4c50605f791f1ba 100644 (file)
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 // this is in the same namespace as Install for mocking 'function_exists'
 namespace Friendica\Core;
 
+use Dice\Dice;
+use Friendica\Core\Config\Cache;
+use Friendica\DI;
+use Friendica\Network\CurlResult;
+use Friendica\Test\MockedTest;
 use Friendica\Test\Util\VFSTrait;
-use PHPUnit\Framework\TestCase;
+use Friendica\Util\Network;
+use Mockery\MockInterface;
 
-/**
- * @runTestsInSeparateProcesses
- * @preserveGlobalState disabled
- */
-class InstallerTest extends TestCase
+class InstallerTest extends MockedTest
 {
        use VFSTrait;
 
+       /**
+        * @var \Friendica\Core\L10n|MockInterface
+        */
+       private $l10nMock;
+
        public function setUp()
        {
-               parent::setUp(); // TODO: Change the autogenerated stub
+               parent::setUp();
 
                $this->setUpVfsDir();
+
+               $this->l10nMock = \Mockery::mock(\Friendica\Core\L10n::class);
+
+               /** @var Dice|MockInterface $dice */
+               $dice = \Mockery::mock(Dice::class)->makePartial();
+               $dice = $dice->addRules(include __DIR__ . '/../../../static/dependencies.config.php');
+
+               $dice->shouldReceive('create')
+                          ->with(\Friendica\Core\L10n::class)
+                          ->andReturn($this->l10nMock);
+
+               DI::init($dice);
+       }
+
+       private function mockL10nT(string $text, $times = null)
+       {
+               $this->l10nMock->shouldReceive('t')->with($text)->andReturn($text)->times($times);
+       }
+
+       /**
+        * Mocking the DI::l10n()->t() calls for the function checks
+        */
+       private function mockFunctionL10TCalls()
+       {
+               $this->mockL10nT('Apache mod_rewrite module', 1);
+               $this->mockL10nT('PDO or MySQLi PHP module', 1);
+               $this->mockL10nT('libCurl PHP module', 1);
+               $this->mockL10nT('Error: libCURL PHP module required but not installed.', 1);
+               $this->mockL10nT('XML PHP module', 1);
+               $this->mockL10nT('GD graphics PHP module', 1);
+               $this->mockL10nT('Error: GD graphics PHP module with JPEG support required but not installed.', 1);
+               $this->mockL10nT('OpenSSL PHP module', 1);
+               $this->mockL10nT('Error: openssl PHP module required but not installed.', 1);
+               $this->mockL10nT('mb_string PHP module', 1);
+               $this->mockL10nT('Error: mb_string PHP module required but not installed.', 1);
+               $this->mockL10nT('iconv PHP module', 1);
+               $this->mockL10nT('Error: iconv PHP module required but not installed.', 1);
+               $this->mockL10nT('POSIX PHP module', 1);
+               $this->mockL10nT('Error: POSIX PHP module required but not installed.', 1);
+               $this->mockL10nT('JSON PHP module', 1);
+               $this->mockL10nT('Error: JSON PHP module required but not installed.', 1);
+               $this->mockL10nT('File Information PHP module', 1);
+               $this->mockL10nT('Error: File Information PHP module required but not installed.', 1);
        }
 
        private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray)
        {
-               $this->assertArraySubset([$position => [
+               $subSet = [$position => [
                        'title' => $title,
                        'status' => $status,
                        'required' => $required,
                        'error_msg' => null,
                        'help' => $help]
-               ], $assertionArray);
+               ];
+
+               $this->assertArraySubset($subSet, $assertionArray, false, "expected subset: " . PHP_EOL . print_r($subSet, true) . PHP_EOL . "current subset: " . print_r($assertionArray, true));
        }
 
        /**
@@ -73,6 +144,8 @@ class InstallerTest extends TestCase
         */
        public function testCheckKeys()
        {
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
+
                $this->setFunctions(['openssl_pkey_new' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkKeys());
@@ -87,73 +160,104 @@ class InstallerTest extends TestCase
         */
        public function testCheckFunctions()
        {
-               $this->setFunctions(['curl_init' => false]);
+               $this->mockFunctionL10TCalls();
+               $this->setFunctions(['curl_init' => false, 'imagecreatefromjpeg' => true]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(3,
-                       L10n::t('libCurl PHP module'),
-                       L10n::t('Error: libCURL PHP module required but not installed.'),
+                       'libCurl PHP module',
+                       'Error: libCURL PHP module required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
                $this->setFunctions(['imagecreatefromjpeg' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(4,
-                       L10n::t('GD graphics PHP module'),
-                       L10n::t('Error: GD graphics PHP module with JPEG support required but not installed.'),
+                       'GD graphics PHP module',
+                       'Error: GD graphics PHP module with JPEG support required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
                $this->setFunctions(['openssl_public_encrypt' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(5,
-                       L10n::t('OpenSSL PHP module'),
-                       L10n::t('Error: openssl PHP module required but not installed.'),
+                       'OpenSSL PHP module',
+                       'Error: openssl PHP module required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
                $this->setFunctions(['mb_strlen' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(6,
-                       L10n::t('mb_string PHP module'),
-                       L10n::t('Error: mb_string PHP module required but not installed.'),
+                       'mb_string PHP module',
+                       'Error: mb_string PHP module required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
                $this->setFunctions(['iconv_strlen' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(7,
-                       L10n::t('iconv PHP module'),
-                       L10n::t('Error: iconv PHP module required but not installed.'),
+                       'iconv PHP module',
+                       'Error: iconv PHP module required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
                $this->setFunctions(['posix_kill' => false]);
                $install = new Installer();
                $this->assertFalse($install->checkFunctions());
                $this->assertCheckExist(8,
-                       L10n::t('POSIX PHP module'),
-                       L10n::t('Error: POSIX PHP module required but not installed.'),
+                       'POSIX PHP module',
+                       'Error: POSIX PHP module required but not installed.',
                        false,
                        true,
                        $install->getChecks());
 
+               $this->mockFunctionL10TCalls();
+               $this->setFunctions(['json_encode' => false]);
+               $install = new Installer();
+               $this->assertFalse($install->checkFunctions());
+               $this->assertCheckExist(9,
+                       'JSON PHP module',
+                       'Error: JSON PHP module required but not installed.',
+                       false,
+                       true,
+                       $install->getChecks());
+
+               $this->mockFunctionL10TCalls();
+               $this->setFunctions(['finfo_open' => false]);
+               $install = new Installer();
+               $this->assertFalse($install->checkFunctions());
+               $this->assertCheckExist(10,
+                       'File Information PHP module',
+                       'Error: File Information PHP module required but not installed.',
+                       false,
+                       true,
+                       $install->getChecks());
+
+               $this->mockFunctionL10TCalls();
                $this->setFunctions([
                        'curl_init' => true,
                        'imagecreatefromjpeg' => true,
                        'openssl_public_encrypt' => true,
                        'mb_strlen' => true,
                        'iconv_strlen' => true,
-                       'posix_kill' => true
+                       'posix_kill' => true,
+                       'json_encode' => true,
+                       'finfo_open' => true,
                ]);
                $install = new Installer();
                $this->assertTrue($install->checkFunctions());
@@ -164,14 +268,16 @@ class InstallerTest extends TestCase
         */
        public function testCheckLocalIni()
        {
-               $this->assertTrue($this->root->hasChild('config/local.ini.php'));
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
+
+               $this->assertTrue($this->root->hasChild('config/local.config.php'));
 
                $install = new Installer();
                $this->assertTrue($install->checkLocalIni());
 
-               $this->delConfigFile('local.ini.php');
+               $this->delConfigFile('local.config.php');
 
-               $this->assertFalse($this->root->hasChild('config/local.ini.php'));
+               $this->assertFalse($this->root->hasChild('config/local.config.php'));
 
                $install = new Installer();
                $this->assertTrue($install->checkLocalIni());
@@ -179,11 +285,15 @@ class InstallerTest extends TestCase
 
        /**
         * @small
+        * @runInSeparateProcess
+        * @preserveGlobalState disabled
         */
        public function testCheckHtAccessFail()
        {
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
+
                // Mocking the CURL Response
-               $curlResult = \Mockery::mock('Friendica\Network\CurlResult');
+               $curlResult = \Mockery::mock(CurlResult::class);
                $curlResult
                        ->shouldReceive('getReturnCode')
                        ->andReturn('404');
@@ -195,7 +305,7 @@ class InstallerTest extends TestCase
                        ->andReturn('test Error');
 
                // Mocking the CURL Request
-               $networkMock = \Mockery::mock('alias:Friendica\Util\Network');
+               $networkMock = \Mockery::mock('alias:' . Network::class);
                $networkMock
                        ->shouldReceive('fetchUrlFull')
                        ->with('https://test/install/testrewrite')
@@ -208,9 +318,6 @@ class InstallerTest extends TestCase
                // Mocking that we can use CURL
                $this->setFunctions(['curl_init' => true]);
 
-               // needed because of "normalise_link"
-               require_once __DIR__ . '/../../../include/text.php';
-
                $install = new Installer();
 
                $this->assertFalse($install->checkHtAccess('https://test'));
@@ -219,23 +326,27 @@ class InstallerTest extends TestCase
 
        /**
         * @small
+        * @runInSeparateProcess
+        * @preserveGlobalState disabled
         */
        public function testCheckHtAccessWork()
        {
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
+
                // Mocking the failed CURL Response
-               $curlResultF = \Mockery::mock('Friendica\Network\CurlResult');
+               $curlResultF = \Mockery::mock(CurlResult::class);
                $curlResultF
                        ->shouldReceive('getReturnCode')
                        ->andReturn('404');
 
                // Mocking the working CURL Response
-               $curlResultW = \Mockery::mock('Friendica\Network\CurlResult');
+               $curlResultW = \Mockery::mock(CurlResult::class);
                $curlResultW
                        ->shouldReceive('getReturnCode')
                        ->andReturn('204');
 
                // Mocking the CURL Request
-               $networkMock = \Mockery::mock('alias:Friendica\Util\Network');
+               $networkMock = \Mockery::mock('alias:' . Network::class);
                $networkMock
                        ->shouldReceive('fetchUrlFull')
                        ->with('https://test/install/testrewrite')
@@ -248,9 +359,6 @@ class InstallerTest extends TestCase
                // Mocking that we can use CURL
                $this->setFunctions(['curl_init' => true]);
 
-               // needed because of "normalise_link"
-               require_once __DIR__ . '/../../../include/text.php';
-
                $install = new Installer();
 
                $this->assertTrue($install->checkHtAccess('https://test'));
@@ -258,13 +366,14 @@ class InstallerTest extends TestCase
 
        /**
         * @small
+        * @runInSeparateProcess
+        * @preserveGlobalState disabled
         */
        public function testImagick()
        {
-               $imageMock = \Mockery::mock('alias:Friendica\Object\Image');
-               $imageMock
-                       ->shouldReceive('supportedTypes')
-                       ->andReturn(['image/gif' => 'gif']);
+               $this->markTestIncomplete('needs adapted class_exists() mock');
+
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
 
                $this->setClasses(['Imagick' => true]);
 
@@ -274,7 +383,7 @@ class InstallerTest extends TestCase
                $this->assertTrue($install->checkImagick());
 
                $this->assertCheckExist(1,
-                       L10n::t('ImageMagick supports GIF'),
+                       $this->l10nMock->t('ImageMagick supports GIF'),
                        '',
                        true,
                        false,
@@ -283,13 +392,12 @@ class InstallerTest extends TestCase
 
        /**
         * @small
+        * @runInSeparateProcess
+        * @preserveGlobalState disabled
         */
        public function testImagickNotFound()
        {
-               $imageMock = \Mockery::mock('alias:Friendica\Object\Image');
-               $imageMock
-                       ->shouldReceive('supportedTypes')
-                       ->andReturn([]);
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
 
                $this->setClasses(['Imagick' => true]);
 
@@ -298,7 +406,7 @@ class InstallerTest extends TestCase
                // even there is no supported type, Imagick should return true (because it is not required)
                $this->assertTrue($install->checkImagick());
                $this->assertCheckExist(1,
-                       L10n::t('ImageMagick supports GIF'),
+                       $this->l10nMock->t('ImageMagick supports GIF'),
                        '',
                        false,
                        false,
@@ -308,18 +416,34 @@ class InstallerTest extends TestCase
        public function testImagickNotInstalled()
        {
                $this->setClasses(['Imagick' => false]);
+               $this->mockL10nT('ImageMagick PHP extension is not installed');
 
                $install = new Installer();
 
                // even there is no supported type, Imagick should return true (because it is not required)
                $this->assertTrue($install->checkImagick());
                $this->assertCheckExist(0,
-                       L10n::t('ImageMagick PHP extension is not installed'),
+                       'ImageMagick PHP extension is not installed',
                        '',
                        false,
                        false,
                        $install->getChecks());
        }
+
+       /**
+        * Test the setup of the config cache for installation
+        */
+       public function testSetUpCache()
+       {
+               $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
+
+               $install = new Installer();
+               $configCache = \Mockery::mock(Cache::class);
+               $configCache->shouldReceive('set')->with('config', 'php_path', \Mockery::any())->once();
+               $configCache->shouldReceive('set')->with('system', 'basepath', '/test/')->once();
+
+               $install->setUpCache($configCache, '/test/');
+       }
 }
 
 /**