]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Core/InstallerTest.php
Add testmode
[friendica.git] / tests / src / Core / InstallerTest.php
index 3b41e4739cff218fa349b5f3e65f3dbd7caeba04..f512bf17b9f4fe1d21607f82f4c50605f791f1ba 100644 (file)
@@ -1,13 +1,31 @@
 <?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\BaseObject;
-use Friendica\Core\Config\Cache\ConfigCache;
+use Friendica\Core\Config\Cache;
+use Friendica\DI;
 use Friendica\Network\CurlResult;
-use Friendica\Object\Image;
 use Friendica\Test\MockedTest;
 use Friendica\Test\Util\VFSTrait;
 use Friendica\Util\Network;
@@ -18,7 +36,7 @@ class InstallerTest extends MockedTest
        use VFSTrait;
 
        /**
-        * @var \Friendica\Core\L10n\L10n|MockInterface
+        * @var \Friendica\Core\L10n|MockInterface
         */
        private $l10nMock;
 
@@ -28,17 +46,17 @@ class InstallerTest extends MockedTest
 
                $this->setUpVfsDir();
 
-               $this->l10nMock = \Mockery::mock(\Friendica\Core\L10n\L10n::class);
+               $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\L10n::class)
+                          ->with(\Friendica\Core\L10n::class)
                           ->andReturn($this->l10nMock);
 
-               BaseObject::setDependencyInjection($dice);
+               DI::init($dice);
        }
 
        private function mockL10nT(string $text, $times = null)
@@ -47,7 +65,7 @@ class InstallerTest extends MockedTest
        }
 
        /**
-        * Mocking the L10n::t() calls for the function checks
+        * Mocking the DI::l10n()->t() calls for the function checks
         */
        private function mockFunctionL10TCalls()
        {
@@ -74,13 +92,15 @@ class InstallerTest extends MockedTest
 
        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));
        }
 
        /**
@@ -363,7 +383,7 @@ class InstallerTest extends MockedTest
                $this->assertTrue($install->checkImagick());
 
                $this->assertCheckExist(1,
-                       L10n::t('ImageMagick supports GIF'),
+                       $this->l10nMock->t('ImageMagick supports GIF'),
                        '',
                        true,
                        false,
@@ -386,7 +406,7 @@ class InstallerTest extends MockedTest
                // 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,
@@ -418,7 +438,7 @@ class InstallerTest extends MockedTest
                $this->l10nMock->shouldReceive('t')->andReturnUsing(function ($args) { return $args; });
 
                $install = new Installer();
-               $configCache = \Mockery::mock(ConfigCache::class);
+               $configCache = \Mockery::mock(Cache::class);
                $configCache->shouldReceive('set')->with('config', 'php_path', \Mockery::any())->once();
                $configCache->shouldReceive('set')->with('system', 'basepath', '/test/')->once();