]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Database/DBATest.php
spelling: cached
[friendica.git] / tests / src / Database / DBATest.php
index 530430feb1e9f827441a4bae7405edd5036821cb..0c3c5e1604b47b92d5bddee1aa2a13f0f7561f7e 100644 (file)
@@ -1,35 +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 Friendica\Core\Config\Cache\PConfigCache;
+use Dice\Dice;
+use Friendica\Database\Database;
 use Friendica\Database\DBA;
-use Friendica\Factory;
+use Friendica\DI;
 use Friendica\Test\DatabaseTest;
-use Friendica\Util\BaseURL;
+use Friendica\Test\Util\Database\StaticDatabase;
 
 class DBATest extends DatabaseTest
 {
-       public function setUp()
+       protected function setUp(): void
        {
-               $configModel = new \Friendica\Model\Config\Config(self::$dba);
-               $config = Factory\ConfigFactory::createConfig(self::$configCache, $configModel);
-               $pconfigModel = new \Friendica\Model\Config\PConfig(self::$dba);
-               Factory\ConfigFactory::createPConfig(self::$configCache, new PConfigCache(), $pconfigModel);
-               $logger = Factory\LoggerFactory::create('test', self::$dba, $config, self::$profiler);
-               $baseUrl = new BaseURL($config, $_SERVER);
-               $router = new App\Router();
-               $this->app = new App(self::$dba, $config, self::$mode, $router, $baseUrl, $logger, self::$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');
        }
 
        /**
@@ -37,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', []));
        }
 }