]> git.mxchange.org Git - friendica.git/blobdiff - tests/FixtureTest.php
Add .htaccess file to exclusion list in Update.md
[friendica.git] / tests / FixtureTest.php
index f30b50878b7e40825e599851206a140c4d6d5aac..e2e8ad725a393ff6cd94331673dba163839dfede 100644 (file)
@@ -1,53 +1,59 @@
 <?php
 /**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @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/>.
+ *
  * FixtureTest class.
  */
 
 namespace Friendica\Test;
 
 use Dice\Dice;
-use Friendica\Core\Config\Cache;
-use Friendica\Core\Config\IConfig;
-use Friendica\Core\Session;
-use Friendica\Core\Session\ISession;
+use Friendica\App\Arguments;
+use Friendica\App\Router;
+use Friendica\Core\Config\Capability\IManageConfigValues;
+use Friendica\Core\Config\Factory\Config;
+use Friendica\Core\Config\Util\ConfigFileManager;
+use Friendica\Core\Session\Capability\IHandleSessions;
+use Friendica\Core\Session\Type\Memory;
 use Friendica\Database\Database;
 use Friendica\Database\DBStructure;
 use Friendica\DI;
 use Friendica\Test\Util\Database\StaticDatabase;
+use Friendica\Test\Util\VFSTrait;
 
 /**
  * Parent class for test cases requiring fixtures
  */
-abstract class FixtureTest extends DatabaseTest
+abstract class FixtureTest extends MockedTest
 {
-       /** @var Dice */
-       protected $dice;
+       use FixtureTestTrait;
 
-       /**
-        * Create variables used by tests.
-        */
-       protected function setUp() : void
+       protected function setUp(): void
        {
                parent::setUp();
 
-               $this->dice = (new Dice())
-                       ->addRules(include __DIR__ . '/../static/dependencies.config.php')
-                       ->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true])
-                       ->addRule(ISession::class, ['instanceOf' => Session\Memory::class, 'shared' => true, 'call' => null]);
-               DI::init($this->dice);
-
-               /** @var IConfig $config */
-               $configCache = $this->dice->create(Cache::class);
-               $configCache->set('database', 'disable_pdo', true);
-
-               /** @var Database $dba */
-               $dba = $this->dice->create(Database::class);
-
-               $dba->setTestmode(true);
+               $this->setUpFixtures();
+       }
 
-               DBStructure::checkInitialValues();
+       protected function tearDown(): void
+       {
+               $this->tearDownFixtures();
 
-               // Load the API dataset for the whole API
-               $this->loadFixture(__DIR__ . '/datasets/api.fixture.php', $dba);
+               parent::tearDown();
        }
 }