]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Database/DBATest.php
spelling: cached
[friendica.git] / tests / src / Database / DBATest.php
index bc8743da5b8cf5f4c8e4df38e647c6f1b79579e2..0c3c5e1604b47b92d5bddee1aa2a13f0f7561f7e 100644 (file)
@@ -1,37 +1,50 @@
 <?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/>.
+ *
+ */
+
 namespace Friendica\Test\src\Database;
 
-use Friendica\App;
-use Friendica\Core\Config;
+use Dice\Dice;
+use Friendica\Database\Database;
 use Friendica\Database\DBA;
-use Friendica\Factory;
+use Friendica\DI;
 use Friendica\Test\DatabaseTest;
-use Friendica\Util\BasePath;
-use Friendica\Util\Config\ConfigFileLoader;
+use Friendica\Test\Util\Database\StaticDatabase;
 
 class DBATest extends DatabaseTest
 {
-       public function setUp()
+       protected function setUp(): void
        {
-               $basePath = BasePath::create(dirname(__DIR__) . '/../../');
-               $mode = new App\Mode($basePath);
-               $configLoader = new ConfigFileLoader($basePath, $mode);
-               $configCache = Factory\ConfigFactory::createCache($configLoader);
-               $profiler = Factory\ProfilerFactory::create($configCache);
-               Factory\DBFactory::init($basePath, $configCache, $profiler, $_SERVER);
-               $config = Factory\ConfigFactory::createConfig($configCache);
-               Factory\ConfigFactory::createPConfig($configCache);
-               $logger = Factory\LoggerFactory::create('test', $config, $profiler);
-               $this->app = new App($basePath, $config, $mode, $logger, $profiler, false);
-
                parent::setUp();
 
+               $dice = (new Dice())
+                       ->addRules(include __DIR__ . '/../../../static/dependencies.config.php')
+                       ->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true]);
+               DI::init($dice);
+
                // Default config
-               Config::set('config', 'hostname', 'localhost');
-               Config::set('system', 'throttle_limit_day', 100);
-               Config::set('system', 'throttle_limit_week', 100);
-               Config::set('system', 'throttle_limit_month', 100);
-               Config::set('system', 'theme', 'system_theme');
+               DI::config()->set('config', 'hostname', 'localhost');
+               DI::config()->set('system', 'throttle_limit_day', 100);
+               DI::config()->set('system', 'throttle_limit_week', 100);
+               DI::config()->set('system', 'throttle_limit_month', 100);
+               DI::config()->set('system', 'theme', 'system_theme');
        }
 
        /**
@@ -39,13 +52,7 @@ class DBATest extends DatabaseTest
         */
        public function testExists() {
 
-               $this->assertTrue(DBA::exists('config', []));
-               $this->assertFalse(DBA::exists('notable', []));
-
-               $this->assertTrue(DBA::exists('config', null));
-               $this->assertFalse(DBA::exists('notable', null));
-
-               $this->assertTrue(DBA::exists('config', ['k' => 'hostname']));
-               $this->assertFalse(DBA::exists('config', ['k' => 'nonsense']));
+               self::assertTrue(DBA::exists('user', []));
+               self::assertFalse(DBA::exists('notable', []));
        }
 }