Replace Config-Cache dependency with Config-Model (no more DB-waiting necessary)

This commit is contained in:
Philipp Holzer 2023-01-15 16:12:25 +01:00
parent a6fb683bcd
commit ab6efea9b2
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
18 changed files with 210 additions and 325 deletions

View File

@ -357,8 +357,6 @@ class App
$this->profiler->reset(); $this->profiler->reset();
if ($this->mode->has(App\Mode::DBAVAILABLE)) { if ($this->mode->has(App\Mode::DBAVAILABLE)) {
$this->profiler->update($this->config);
Core\Hook::loadHooks(); Core\Hook::loadHooks();
$loader = (new Config())->createConfigFileManager($this->getBasePath(), $_SERVER); $loader = (new Config())->createConfigFileManager($this->getBasePath(), $_SERVER);
Core\Hook::callAll('load_config', $loader); Core\Hook::callAll('load_config', $loader);

View File

@ -22,7 +22,7 @@
namespace Friendica\App; namespace Friendica\App;
use Detection\MobileDetect; use Detection\MobileDetect;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Database\Database; use Friendica\Database\Database;
/** /**
@ -128,7 +128,7 @@ class Mode
* *
* @throws \Exception * @throws \Exception
*/ */
public function determine(string $basePath, Database $database, Cache $configCache): Mode public function determine(string $basePath, Database $database, IManageConfigValues $config): Mode
{ {
$mode = 0; $mode = 0;
@ -146,7 +146,7 @@ class Mode
$mode |= Mode::DBAVAILABLE; $mode |= Mode::DBAVAILABLE;
if (!empty($configCache->get('system', 'maintenance'))) { if (!empty($config->get('system', 'maintenance'))) {
return new Mode($mode); return new Mode($mode);
} }

View File

@ -21,7 +21,7 @@
namespace Friendica\Console; namespace Friendica\Console;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\Update; use Friendica\Core\Update;
use Friendica\Database\Database; use Friendica\Database\Database;
use Friendica\Database\DBStructure; use Friendica\Database\DBStructure;
@ -43,8 +43,8 @@ class DatabaseStructure extends \Asika\SimpleConsole\Console
/** @var Database */ /** @var Database */
private $dba; private $dba;
/** @var Cache */ /** @var IManageConfigValues */
private $configCache; private $config;
/** @var DbaDefinition */ /** @var DbaDefinition */
private $dbaDefinition; private $dbaDefinition;
@ -83,14 +83,14 @@ HELP;
return $help; return $help;
} }
public function __construct(Database $dba, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition, BasePath $basePath, Cache $configCache, $argv = null) public function __construct(Database $dba, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition, BasePath $basePath, IManageConfigValues $config, $argv = null)
{ {
parent::__construct($argv); parent::__construct($argv);
$this->dba = $dba; $this->dba = $dba;
$this->dbaDefinition = $dbaDefinition; $this->dbaDefinition = $dbaDefinition;
$this->viewDefinition = $viewDefinition; $this->viewDefinition = $viewDefinition;
$this->configCache = $configCache; $this->config = $config;
$this->basePath = $basePath->getPath(); $this->basePath = $basePath->getPath();
} }
@ -117,7 +117,7 @@ HELP;
throw new RuntimeException('Unable to connect to database'); throw new RuntimeException('Unable to connect to database');
} }
$basePath = $this->configCache->get('system', 'basepath'); $basePath = $this->config->get('system', 'basepath');
switch ($this->getArgument(0)) { switch ($this->getArgument(0)) {
case "dryrun": case "dryrun":

View File

@ -21,7 +21,7 @@
namespace Friendica\Core\PConfig\Factory; namespace Friendica\Core\PConfig\Factory;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues; use Friendica\Core\PConfig\Capability\IManagePersonalConfigValues;
use Friendica\Core\PConfig\Repository; use Friendica\Core\PConfig\Repository;
use Friendica\Core\PConfig\Type; use Friendica\Core\PConfig\Type;
@ -30,15 +30,15 @@ use Friendica\Core\PConfig\ValueObject;
class PConfig class PConfig
{ {
/** /**
* @param Cache $configCache The config cache * @param IManageConfigValues $config The config
* @param ValueObject\Cache $pConfigCache The personal config cache * @param ValueObject\Cache $pConfigCache The personal config cache
* @param Repository\PConfig $configRepo The configuration model * @param Repository\PConfig $configRepo The configuration model
* *
* @return IManagePersonalConfigValues * @return IManagePersonalConfigValues
*/ */
public function create(Cache $configCache, ValueObject\Cache $pConfigCache, Repository\PConfig $configRepo): IManagePersonalConfigValues public function create(IManageConfigValues $config, ValueObject\Cache $pConfigCache, Repository\PConfig $configRepo): IManagePersonalConfigValues
{ {
if ($configCache->get('system', 'config_adapter') === 'preload') { if ($config->get('system', 'config_adapter') === 'preload') {
$configuration = new Type\PreloadPConfig($pConfigCache, $configRepo); $configuration = new Type\PreloadPConfig($pConfigCache, $configRepo);
} else { } else {
$configuration = new Type\JitPConfig($pConfigCache, $configRepo); $configuration = new Type\JitPConfig($pConfigCache, $configRepo);

View File

@ -21,7 +21,7 @@
namespace Friendica\Database; namespace Friendica\Database;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Database\Definition\DbaDefinition; use Friendica\Database\Definition\DbaDefinition;
use Friendica\Database\Definition\ViewDefinition; use Friendica\Database\Definition\ViewDefinition;
@ -53,9 +53,9 @@ class Database
protected $connected = false; protected $connected = false;
/** /**
* @var \Friendica\Core\Config\ValueObject\Cache * @var IManageConfigValues
*/ */
protected $configCache; protected $config;
/** /**
* @var Profiler * @var Profiler
*/ */
@ -81,11 +81,11 @@ class Database
/** @var ViewDefinition */ /** @var ViewDefinition */
protected $viewDefinition; protected $viewDefinition;
public function __construct(Cache $configCache, Profiler $profiler, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition) public function __construct(IManageConfigValues $config, Profiler $profiler, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
{ {
// We are storing these values for being able to perform a reconnect // We are storing these values for being able to perform a reconnect
$this->configCache = $configCache; $this->config = $config;
$this->profiler = $profiler; $this->profiler = $profiler;
$this->dbaDefinition = $dbaDefinition; $this->dbaDefinition = $dbaDefinition;
$this->viewDefinition = $viewDefinition; $this->viewDefinition = $viewDefinition;
@ -110,32 +110,32 @@ class Database
$this->connected = false; $this->connected = false;
$port = 0; $port = 0;
$serveraddr = trim($this->configCache->get('database', 'hostname') ?? ''); $serveraddr = trim($this->config->get('database', 'hostname') ?? '');
$serverdata = explode(':', $serveraddr); $serverdata = explode(':', $serveraddr);
$host = trim($serverdata[0]); $host = trim($serverdata[0]);
if (count($serverdata) > 1) { if (count($serverdata) > 1) {
$port = trim($serverdata[1]); $port = trim($serverdata[1]);
} }
if (trim($this->configCache->get('database', 'port') ?? 0)) { if (trim($this->config->get('database', 'port') ?? 0)) {
$port = trim($this->configCache->get('database', 'port') ?? 0); $port = trim($this->config->get('database', 'port') ?? 0);
} }
$user = trim($this->configCache->get('database', 'username')); $user = trim($this->config->get('database', 'username'));
$pass = trim($this->configCache->get('database', 'password')); $pass = trim($this->config->get('database', 'password'));
$database = trim($this->configCache->get('database', 'database')); $database = trim($this->config->get('database', 'database'));
$charset = trim($this->configCache->get('database', 'charset')); $charset = trim($this->config->get('database', 'charset'));
$socket = trim($this->configCache->get('database', 'socket')); $socket = trim($this->config->get('database', 'socket'));
if (!$host && !$socket || !$user) { if (!$host && !$socket || !$user) {
return false; return false;
} }
$persistent = (bool)$this->configCache->get('database', 'persistent'); $persistent = (bool)$this->config->get('database', 'persistent');
$this->pdo_emulate_prepares = (bool)$this->configCache->get('database', 'pdo_emulate_prepares'); $this->pdo_emulate_prepares = (bool)$this->config->get('database', 'pdo_emulate_prepares');
if (!$this->configCache->get('database', 'disable_pdo') && class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) { if (!$this->config->get('database', 'disable_pdo') && class_exists('\PDO') && in_array('mysql', PDO::getAvailableDrivers())) {
$this->driver = self::PDO; $this->driver = self::PDO;
if ($socket) { if ($socket) {
$connect = 'mysql:unix_socket=' . $socket; $connect = 'mysql:unix_socket=' . $socket;
@ -317,7 +317,7 @@ class Database
private function logIndex(string $query) private function logIndex(string $query)
{ {
if (!$this->configCache->get('system', 'db_log_index')) { if (!$this->config->get('system', 'db_log_index')) {
return; return;
} }
@ -336,18 +336,18 @@ class Database
return; return;
} }
$watchlist = explode(',', $this->configCache->get('system', 'db_log_index_watch')); $watchlist = explode(',', $this->config->get('system', 'db_log_index_watch'));
$denylist = explode(',', $this->configCache->get('system', 'db_log_index_denylist')); $denylist = explode(',', $this->config->get('system', 'db_log_index_denylist'));
while ($row = $this->fetch($r)) { while ($row = $this->fetch($r)) {
if ((intval($this->configCache->get('system', 'db_loglimit_index')) > 0)) { if ((intval($this->config->get('system', 'db_loglimit_index')) > 0)) {
$log = (in_array($row['key'], $watchlist) && $log = (in_array($row['key'], $watchlist) &&
($row['rows'] >= intval($this->configCache->get('system', 'db_loglimit_index')))); ($row['rows'] >= intval($this->config->get('system', 'db_loglimit_index'))));
} else { } else {
$log = false; $log = false;
} }
if ((intval($this->configCache->get('system', 'db_loglimit_index_high')) > 0) && ($row['rows'] >= intval($this->configCache->get('system', 'db_loglimit_index_high')))) { if ((intval($this->config->get('system', 'db_loglimit_index_high')) > 0) && ($row['rows'] >= intval($this->config->get('system', 'db_loglimit_index_high')))) {
$log = true; $log = true;
} }
@ -358,7 +358,7 @@ class Database
if ($log) { if ($log) {
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
@file_put_contents( @file_put_contents(
$this->configCache->get('system', 'db_log_index'), $this->config->get('system', 'db_log_index'),
DateTimeFormat::utcNow() . "\t" . DateTimeFormat::utcNow() . "\t" .
$row['key'] . "\t" . $row['rows'] . "\t" . $row['Extra'] . "\t" . $row['key'] . "\t" . $row['rows'] . "\t" . $row['Extra'] . "\t" .
basename($backtrace[1]["file"]) . "\t" . basename($backtrace[1]["file"]) . "\t" .
@ -533,7 +533,7 @@ class Database
$orig_sql = $sql; $orig_sql = $sql;
if ($this->configCache->get('system', 'db_callstack') !== null) { if ($this->config->get('system', 'db_callstack') !== null) {
$sql = "/*" . System::callstack() . " */ " . $sql; $sql = "/*" . System::callstack() . " */ " . $sql;
} }
@ -738,16 +738,16 @@ class Database
$this->profiler->stopRecording(); $this->profiler->stopRecording();
if ($this->configCache->get('system', 'db_log')) { if ($this->config->get('system', 'db_log')) {
$stamp2 = microtime(true); $stamp2 = microtime(true);
$duration = (float)($stamp2 - $stamp1); $duration = (float)($stamp2 - $stamp1);
if (($duration > $this->configCache->get('system', 'db_loglimit'))) { if (($duration > $this->config->get('system', 'db_loglimit'))) {
$duration = round($duration, 3); $duration = round($duration, 3);
$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
@file_put_contents( @file_put_contents(
$this->configCache->get('system', 'db_log'), $this->config->get('system', 'db_log'),
DateTimeFormat::utcNow() . "\t" . $duration . "\t" . DateTimeFormat::utcNow() . "\t" . $duration . "\t" .
basename($backtrace[1]["file"]) . "\t" . basename($backtrace[1]["file"]) . "\t" .
$backtrace[1]["line"] . "\t" . $backtrace[2]["function"] . "\t" . $backtrace[1]["line"] . "\t" . $backtrace[2]["function"] . "\t" .

View File

@ -25,14 +25,12 @@ use Friendica\App;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config\Util\ConfigFileManager; use Friendica\Core\Config\Util\ConfigFileManager;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Logger;
use Friendica\Core\Renderer; use Friendica\Core\Renderer;
use Friendica\Core\Update; use Friendica\Core\Update;
use Friendica\Database\DBA; use Friendica\Database\DBA;
use Friendica\Database\DBStructure; use Friendica\Database\DBStructure;
use Friendica\DI; use Friendica\DI;
use Friendica\Core\Config\Factory\Config; use Friendica\Core\Config\Factory\Config;
use Friendica\Model\Register;
use Friendica\Module\BaseAdmin; use Friendica\Module\BaseAdmin;
use Friendica\Network\HTTPClient\Client\HttpClientAccept; use Friendica\Network\HTTPClient\Client\HttpClientAccept;
use Friendica\Network\HTTPException\ServiceUnavailableException; use Friendica\Network\HTTPException\ServiceUnavailableException;

View File

@ -21,7 +21,6 @@
namespace Friendica\Util; namespace Friendica\Util;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Config\Capability\IManageConfigValues; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\System; use Friendica\Core\System;
use Psr\Container\ContainerExceptionInterface; use Psr\Container\ContainerExceptionInterface;
@ -66,30 +65,10 @@ class Profiler implements ContainerInterface
return $this->rendertime; return $this->rendertime;
} }
/** public function __construct(IManageConfigValues $config)
* Updates the enabling of the current profiler
*
* Note: The reason there are two different ways of updating the configuration of this class is because it can
* be used even with no available database connection which IManageConfigValues doesn't ensure.
*
* @param IManageConfigValues $config
*/
public function update(IManageConfigValues $config)
{ {
$this->enabled = (bool) $config->get('system', 'profiler') ?? false; $this->enabled = (bool)$config->get('system', 'profiler') ?? false;
$this->rendertime = (bool) $config->get('rendertime', 'callstack') ?? false; $this->rendertime = (bool)$config->get('rendertime', 'callstack') ?? false;
}
/**
* Note: The reason we are using a Config Cache object to initialize this class is to ensure it'll work even with no
* available database connection.
*
* @param \Friendica\Core\Config\ValueObject\Cache $configCache The configuration cache
*/
public function __construct(Cache $configCache)
{
$this->enabled = (bool) $configCache->get('system', 'profiler') ?? false;
$this->rendertime = (bool) $configCache->get('rendertime', 'callstack') ?? false;
$this->reset(); $this->reset();
} }
@ -125,7 +104,7 @@ class Profiler implements ContainerInterface
$timestamp = array_pop($this->timestamps); $timestamp = array_pop($this->timestamps);
$duration = floatval(microtime(true) - $timestamp['stamp'] - $timestamp['credit']); $duration = floatval(microtime(true) - $timestamp['stamp'] - $timestamp['credit']);
$value = $timestamp['value']; $value = $timestamp['value'];
foreach ($this->timestamps as $key => $stamp) { foreach ($this->timestamps as $key => $stamp) {
$this->timestamps[$key]['credit'] += $duration; $this->timestamps[$key]['credit'] += $duration;
@ -137,15 +116,15 @@ class Profiler implements ContainerInterface
$this->performance[$value] = 0; $this->performance[$value] = 0;
} }
$this->performance[$value] += (float) $duration; $this->performance[$value] += (float)$duration;
$this->performance['marktime'] += (float) $duration; $this->performance['marktime'] += (float)$duration;
if (!isset($this->callstack[$value][$callstack])) { if (!isset($this->callstack[$value][$callstack])) {
// Prevent ugly E_NOTICE // Prevent ugly E_NOTICE
$this->callstack[$value][$callstack] = 0; $this->callstack[$value][$callstack] = 0;
} }
$this->callstack[$value][$callstack] += (float) $duration; $this->callstack[$value][$callstack] += (float)$duration;
} }
/** /**
@ -173,15 +152,15 @@ class Profiler implements ContainerInterface
$this->performance[$value] = 0; $this->performance[$value] = 0;
} }
$this->performance[$value] += (float) $duration; $this->performance[$value] += (float)$duration;
$this->performance['marktime'] += (float) $duration; $this->performance['marktime'] += (float)$duration;
if (!isset($this->callstack[$value][$callstack])) { if (!isset($this->callstack[$value][$callstack])) {
// Prevent ugly E_NOTICE // Prevent ugly E_NOTICE
$this->callstack[$value][$callstack] = 0; $this->callstack[$value][$callstack] = 0;
} }
$this->callstack[$value][$callstack] += (float) $duration; $this->callstack[$value][$callstack] += (float)$duration;
} }
/** /**
@ -202,23 +181,22 @@ class Profiler implements ContainerInterface
*/ */
public function resetPerformance() public function resetPerformance()
{ {
$this->performance = []; $this->performance = [];
$this->performance['start'] = microtime(true); $this->performance['start'] = microtime(true);
$this->performance['ready'] = 0; $this->performance['ready'] = 0;
$this->performance['database'] = 0; $this->performance['database'] = 0;
$this->performance['database_write'] = 0; $this->performance['database_write'] = 0;
$this->performance['cache'] = 0; $this->performance['cache'] = 0;
$this->performance['cache_write'] = 0; $this->performance['cache_write'] = 0;
$this->performance['network'] = 0; $this->performance['network'] = 0;
$this->performance['file'] = 0; $this->performance['file'] = 0;
$this->performance['rendering'] = 0; $this->performance['rendering'] = 0;
$this->performance['session'] = 0; $this->performance['session'] = 0;
$this->performance['marktime'] = 0; $this->performance['marktime'] = microtime(true);
$this->performance['marktime'] = microtime(true); $this->performance['classcreate'] = 0;
$this->performance['classcreate'] = 0; $this->performance['classinit'] = 0;
$this->performance['classinit'] = 0; $this->performance['init'] = 0;
$this->performance['init'] = 0; $this->performance['content'] = 0;
$this->performance['content'] = 0;
} }
/** /**
@ -228,19 +206,20 @@ class Profiler implements ContainerInterface
*/ */
public function resetCallstack() public function resetCallstack()
{ {
$this->callstack = []; $this->callstack = [];
$this->callstack['database'] = []; $this->callstack['database'] = [];
$this->callstack['database_write'] = []; $this->callstack['database_write'] = [];
$this->callstack['cache'] = []; $this->callstack['cache'] = [];
$this->callstack['cache_write'] = []; $this->callstack['cache_write'] = [];
$this->callstack['network'] = []; $this->callstack['network'] = [];
$this->callstack['file'] = []; $this->callstack['file'] = [];
$this->callstack['rendering'] = []; $this->callstack['rendering'] = [];
$this->callstack['session'] = []; $this->callstack['session'] = [];
} }
/** /**
* Returns the rendertime string * Returns the rendertime string
*
* @param float $limit Minimal limit for displaying the execution duration * @param float $limit Minimal limit for displaying the execution duration
* *
* @return string the rendertime * @return string the rendertime
@ -330,17 +309,17 @@ class Profiler implements ContainerInterface
$logger->info( $logger->info(
$message, $message,
[ [
'action' => 'profiling', 'action' => 'profiling',
'database_read' => round($this->get('database') - $this->get('database_write'), 3), 'database_read' => round($this->get('database') - $this->get('database_write'), 3),
'database_write' => round($this->get('database_write'), 3), 'database_write' => round($this->get('database_write'), 3),
'cache_read' => round($this->get('cache'), 3), 'cache_read' => round($this->get('cache'), 3),
'cache_write' => round($this->get('cache_write'), 3), 'cache_write' => round($this->get('cache_write'), 3),
'network_io' => round($this->get('network'), 2), 'network_io' => round($this->get('network'), 2),
'file_io' => round($this->get('file'), 2), 'file_io' => round($this->get('file'), 2),
'other_io' => round($duration - ($this->get('database') 'other_io' => round($duration - ($this->get('database')
+ $this->get('cache') + $this->get('cache_write') + $this->get('cache') + $this->get('cache_write')
+ $this->get('network') + $this->get('file')), 2), + $this->get('network') + $this->get('file')), 2),
'total' => round($duration, 2) 'total' => round($duration, 2)
] ]
); );
@ -355,10 +334,10 @@ class Profiler implements ContainerInterface
* *
* @param string $id Identifier of the entry to look for. * @param string $id Identifier of the entry to look for.
* *
* @throws NotFoundExceptionInterface No entry was found for **this** identifier. * @return float Entry.
* @throws ContainerExceptionInterface Error while retrieving the entry. * @throws ContainerExceptionInterface Error while retrieving the entry.
* *
* @return float Entry. * @throws NotFoundExceptionInterface No entry was found for **this** identifier.
*/ */
public function get(string $id): float public function get(string $id): float
{ {

View File

@ -25,9 +25,9 @@ namespace Friendica\Test;
use Dice\Dice; use Dice\Dice;
use Friendica\App\Arguments; use Friendica\App\Arguments;
use Friendica\App\Router; use Friendica\App\Router;
use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\Config\Factory\Config; use Friendica\Core\Config\Factory\Config;
use Friendica\Core\Config\Util\ConfigFileManager; use Friendica\Core\Config\Util\ConfigFileManager;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Session\Capability\IHandleSessions; use Friendica\Core\Session\Capability\IHandleSessions;
use Friendica\Core\Session\Type\Memory; use Friendica\Core\Session\Type\Memory;
use Friendica\Database\Database; use Friendica\Database\Database;
@ -74,8 +74,8 @@ abstract class FixtureTest extends DatabaseTest
]); ]);
DI::init($this->dice); DI::init($this->dice);
$configCache = $this->dice->create(Cache::class); $config = $this->dice->create(IManageConfigValues::class);
$configCache->set('database', 'disable_pdo', true); $config->set('database', 'disable_pdo', true);
/** @var Database $dba */ /** @var Database $dba */
$dba = $this->dice->create(Database::class); $dba = $this->dice->create(Database::class);

View File

@ -0,0 +1,53 @@
<?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\Util;
use Friendica\Core\Config\Model\Config;
use Friendica\Core\Config\Util\ConfigFileManager;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Database\Database;
use Friendica\Database\Definition\DbaDefinition;
use Friendica\Database\Definition\ViewDefinition;
use Friendica\Test\DatabaseTestTrait;
use Friendica\Test\Util\Database\StaticDatabase;
use Friendica\Util\Profiler;
trait CreateDatabaseTrait
{
use DatabaseTestTrait;
use VFSTrait;
public function getDbInstance(): Database
{
$configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/');
$config = new Config($configFileManager, new Cache([
'database' => [
'disable_pdo' => true
],
]));
$database = new StaticDatabase($config, new Profiler($config), (new DbaDefinition($this->root->url()))->load(), (new ViewDefinition($this->root->url()))->load());
$database->setTestmode(true);
return $database;
}
}

View File

@ -25,6 +25,7 @@ use Dice\Dice;
use Friendica\App; use Friendica\App;
use Friendica\Core\Cache\Capability\ICanCache; use Friendica\Core\Cache\Capability\ICanCache;
use Friendica\Core\Cache\Capability\ICanCacheInMemory; use Friendica\Core\Cache\Capability\ICanCacheInMemory;
use Friendica\Core\Config\Model\Config;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Config\Capability\IManageConfigValues; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\Lock\Capability\ICanLock; use Friendica\Core\Lock\Capability\ICanLock;
@ -86,33 +87,6 @@ class DependencyCheckTest extends TestCase
self::assertArrayHasKey('system', $configCache->getAll()); self::assertArrayHasKey('system', $configCache->getAll());
} }
/**
* Test the construction of a profiler class with DI
*/
public function testProfiler()
{
/** @var Profiler $profiler */
$profiler = $this->dice->create(Profiler::class);
self::assertInstanceOf(Profiler::class, $profiler);
$configCache = new Cache([
'system' => [
'profiler' => true,
],
'rendertime' => [
'callstack' => true,
]
]);
// create new DI-library because of shared instance rule (so the Profiler wouldn't get created twice)
$this->dice = new Dice();
$profiler = $this->dice->create(Profiler::class, [$configCache]);
self::assertInstanceOf(Profiler::class, $profiler);
self::assertTrue($profiler->isRendertime());
}
public function testDatabase() public function testDatabase()
{ {
// PDO needs to be disabled for PHP 7.2, see https://jira.mariadb.org/browse/MDEV-24121 // PDO needs to be disabled for PHP 7.2, see https://jira.mariadb.org/browse/MDEV-24121

View File

@ -24,7 +24,7 @@ namespace Friendica\Test\src\App;
use Detection\MobileDetect; use Detection\MobileDetect;
use Friendica\App\Arguments; use Friendica\App\Arguments;
use Friendica\App\Mode; use Friendica\App\Mode;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Database\Database; use Friendica\Database\Database;
use Friendica\Test\MockedTest; use Friendica\Test\MockedTest;
use Friendica\Test\Util\VFSTrait; use Friendica\Test\Util\VFSTrait;
@ -47,9 +47,9 @@ class ModeTest extends MockedTest
private $databaseMock; private $databaseMock;
/** /**
* @var Cache|MockInterface * @var IManageConfigValues|MockInterface
*/ */
private $configCacheMock; private $configMock;
protected function setUp(): void protected function setUp(): void
{ {
@ -57,8 +57,8 @@ class ModeTest extends MockedTest
$this->setUpVfsDir(); $this->setUpVfsDir();
$this->databaseMock = Mockery::mock(Database::class); $this->databaseMock = Mockery::mock(Database::class);
$this->configCacheMock = Mockery::mock(Cache::class); $this->configMock = Mockery::mock(IManageConfigValues::class);
} }
public function testItEmpty() public function testItEmpty()
@ -76,7 +76,7 @@ class ModeTest extends MockedTest
self::assertFalse($this->root->hasChild('config/local.config.php')); self::assertFalse($this->root->hasChild('config/local.config.php'));
$mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configCacheMock); $mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configMock);
self::assertTrue($mode->isInstall()); self::assertTrue($mode->isInstall());
self::assertFalse($mode->isNormal()); self::assertFalse($mode->isNormal());
@ -88,7 +88,7 @@ class ModeTest extends MockedTest
{ {
$this->databaseMock->shouldReceive('connected')->andReturn(false)->once(); $this->databaseMock->shouldReceive('connected')->andReturn(false)->once();
$mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configCacheMock); $mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configMock);
self::assertFalse($mode->isNormal()); self::assertFalse($mode->isNormal());
self::assertTrue($mode->isInstall()); self::assertTrue($mode->isInstall());
@ -100,10 +100,10 @@ class ModeTest extends MockedTest
public function testWithMaintenanceMode() public function testWithMaintenanceMode()
{ {
$this->databaseMock->shouldReceive('connected')->andReturn(true)->once(); $this->databaseMock->shouldReceive('connected')->andReturn(true)->once();
$this->configCacheMock->shouldReceive('get')->with('system', 'maintenance') $this->configMock->shouldReceive('get')->with('system', 'maintenance')
->andReturn(true)->once(); ->andReturn(true)->once();
$mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configCacheMock); $mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configMock);
self::assertFalse($mode->isNormal()); self::assertFalse($mode->isNormal());
self::assertFalse($mode->isInstall()); self::assertFalse($mode->isInstall());
@ -114,10 +114,10 @@ class ModeTest extends MockedTest
public function testNormalMode() public function testNormalMode()
{ {
$this->databaseMock->shouldReceive('connected')->andReturn(true)->once(); $this->databaseMock->shouldReceive('connected')->andReturn(true)->once();
$this->configCacheMock->shouldReceive('get')->with('system', 'maintenance') $this->configMock->shouldReceive('get')->with('system', 'maintenance')
->andReturn(false)->once(); ->andReturn(false)->once();
$mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configCacheMock); $mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configMock);
self::assertTrue($mode->isNormal()); self::assertTrue($mode->isNormal());
self::assertFalse($mode->isInstall()); self::assertFalse($mode->isInstall());
@ -131,10 +131,10 @@ class ModeTest extends MockedTest
public function testDisabledMaintenance() public function testDisabledMaintenance()
{ {
$this->databaseMock->shouldReceive('connected')->andReturn(true)->once(); $this->databaseMock->shouldReceive('connected')->andReturn(true)->once();
$this->configCacheMock->shouldReceive('get')->with('system', 'maintenance') $this->configMock->shouldReceive('get')->with('system', 'maintenance')
->andReturn(false)->once(); ->andReturn(false)->once();
$mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configCacheMock); $mode = (new Mode())->determine($this->root->url(), $this->databaseMock, $this->configMock);
self::assertTrue($mode->isNormal()); self::assertTrue($mode->isNormal());
self::assertFalse($mode->isInstall()); self::assertFalse($mode->isInstall());
@ -149,7 +149,7 @@ class ModeTest extends MockedTest
{ {
$mode = new Mode(); $mode = new Mode();
$modeNew = $mode->determine('', $this->databaseMock, $this->configCacheMock); $modeNew = $mode->determine('', $this->databaseMock, $this->configMock);
self::assertNotSame($modeNew, $mode); self::assertNotSame($modeNew, $mode);
} }

View File

@ -57,11 +57,12 @@ class DatabaseCacheTest extends CacheTest
$configFactory = new Config(); $configFactory = new Config();
$configFileManager = (new Config())->createConfigFileManager($this->root->url(), []); $configFileManager = (new Config())->createConfigFileManager($this->root->url(), []);
$configCache = $configFactory->createCache($configFileManager); $configCache = $configFactory->createCache($configFileManager);
$config = new \Friendica\Core\Config\Model\Config($configFileManager, $configCache);
$dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load(); $dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load();
$viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load(); $viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load();
$dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition); $dba = new StaticDatabase($config, $profiler, $dbaDefinition, $viewDefinition);
$this->cache = new Cache\Type\DatabaseCache('database', $dba); $this->cache = new Cache\Type\DatabaseCache('database', $dba);
return $this->cache; return $this->cache;

View File

@ -21,20 +21,14 @@
namespace Friendica\Test\src\Core\KeyValueStorage; namespace Friendica\Test\src\Core\KeyValueStorage;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs; use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
use Friendica\Core\KeyValueStorage\Type\DBKeyValueStorage; use Friendica\Core\KeyValueStorage\Type\DBKeyValueStorage;
use Friendica\Database\Database; use Friendica\Database\Database;
use Friendica\Database\Definition\DbaDefinition; use Friendica\Test\Util\CreateDatabaseTrait;
use Friendica\Database\Definition\ViewDefinition;
use Friendica\Test\DatabaseTestTrait;
use Friendica\Test\Util\Database\StaticDatabase;
use Friendica\Util\BasePath;
use Friendica\Util\Profiler;
class DBKeyValueStorageTest extends KeyValueStorageTest class DBKeyValueStorageTest extends KeyValueStorageTest
{ {
use DatabaseTestTrait; use CreateDatabaseTrait;
/** @var Database */ /** @var Database */
protected $database; protected $database;
@ -43,6 +37,7 @@ class DBKeyValueStorageTest extends KeyValueStorageTest
{ {
parent::setUp(); parent::setUp();
$this->setUpVfsDir();
$this->setUpDb(); $this->setUpDb();
} }
@ -55,13 +50,7 @@ class DBKeyValueStorageTest extends KeyValueStorageTest
public function getInstance(): IManageKeyValuePairs public function getInstance(): IManageKeyValuePairs
{ {
$cache = new Cache(); $this->database = $this->getDbInstance();
$cache->set('database', 'disable_pdo', true);
$basePath = new BasePath(dirname(__FILE__, 5), $_SERVER);
$this->database = new StaticDatabase($cache, new Profiler($cache), (new DbaDefinition($basePath->getPath()))->load(), (new ViewDefinition($basePath->getPath()))->load());
$this->database->setTestmode(true);
return new DBKeyValueStorage($this->database); return new DBKeyValueStorage($this->database);
} }

View File

@ -21,27 +21,15 @@
namespace Friendica\Test\src\Core\Lock; namespace Friendica\Test\src\Core\Lock;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Lock\Type\DatabaseLock; use Friendica\Core\Lock\Type\DatabaseLock;
use Friendica\Database\Database; use Friendica\Test\Util\CreateDatabaseTrait;
use Friendica\Database\Definition\DbaDefinition;
use Friendica\Database\Definition\ViewDefinition;
use Friendica\Test\DatabaseTestTrait;
use Friendica\Test\Util\Database\StaticDatabase;
use Friendica\Test\Util\VFSTrait;
use Friendica\Util\BasePath;
use Friendica\Util\Profiler;
class DatabaseLockDriverTest extends LockTest class DatabaseLockDriverTest extends LockTest
{ {
use VFSTrait; use CreateDatabaseTrait;
use DatabaseTestTrait;
protected $pid = 123; protected $pid = 123;
/** @var Database */
protected $database;
protected function setUp(): void protected function setUp(): void
{ {
$this->setUpVfsDir(); $this->setUpVfsDir();
@ -53,21 +41,13 @@ class DatabaseLockDriverTest extends LockTest
protected function getInstance() protected function getInstance()
{ {
$cache = new Cache(); return new DatabaseLock($this->getDbInstance(), $this->pid);
$cache->set('database', 'disable_pdo', true);
$basePath = new BasePath(dirname(__FILE__, 5), $_SERVER);
$this->database = new StaticDatabase($cache, new Profiler($cache), (new DbaDefinition($basePath->getPath()))->load(), (new ViewDefinition($basePath->getPath()))->load());
$this->database->setTestmode(true);
return new DatabaseLock($this->database, $this->pid);
} }
protected function tearDown(): void protected function tearDown(): void
{ {
$this->tearDownDb();
parent::tearDown(); parent::tearDown();
$this->tearDownDb();
} }
} }

View File

@ -21,20 +21,12 @@
namespace Friendica\Test\src\Core\Storage; namespace Friendica\Test\src\Core\Storage;
use Friendica\Core\Config\Factory\Config;
use Friendica\Core\Storage\Type\Database; use Friendica\Core\Storage\Type\Database;
use Friendica\Database\Definition\DbaDefinition; use Friendica\Test\Util\CreateDatabaseTrait;
use Friendica\Database\Definition\ViewDefinition;
use Friendica\Test\DatabaseTestTrait;
use Friendica\Test\Util\Database\StaticDatabase;
use Friendica\Test\Util\VFSTrait;
use Friendica\Util\Profiler;
use Psr\Log\NullLogger;
class DatabaseStorageTest extends StorageTest class DatabaseStorageTest extends StorageTest
{ {
use DatabaseTestTrait; use CreateDatabaseTrait;
use VFSTrait;
protected function setUp(): void protected function setUp(): void
{ {
@ -47,28 +39,13 @@ class DatabaseStorageTest extends StorageTest
protected function getInstance() protected function getInstance()
{ {
$profiler = \Mockery::mock(Profiler::class); return new Database($this->getDbInstance());
$profiler->shouldReceive('startRecording');
$profiler->shouldReceive('stopRecording');
$profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true);
// load real config to avoid mocking every config-entry which is related to the Database class
$configFactory = new Config();
$configFileManager = (new Config())->createConfigFileManager($this->root->url());
$configCache = $configFactory->createCache($configFileManager);
$dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load();
$viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load();
$dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition);
return new Database($dba);
} }
protected function tearDown(): void protected function tearDown(): void
{ {
$this->tearDownDb();
parent::tearDown(); parent::tearDown();
$this->tearDownDb();
} }
} }

View File

@ -41,6 +41,7 @@ use Friendica\DI;
use Friendica\Core\Config\Factory\Config; use Friendica\Core\Config\Factory\Config;
use Friendica\Core\Storage\Type; use Friendica\Core\Storage\Type;
use Friendica\Test\DatabaseTest; use Friendica\Test\DatabaseTest;
use Friendica\Test\Util\CreateDatabaseTrait;
use Friendica\Test\Util\Database\StaticDatabase; use Friendica\Test\Util\Database\StaticDatabase;
use Friendica\Test\Util\VFSTrait; use Friendica\Test\Util\VFSTrait;
use Friendica\Util\Profiler; use Friendica\Util\Profiler;
@ -51,10 +52,8 @@ use Friendica\Test\Util\SampleStorageBackend;
class StorageManagerTest extends DatabaseTest class StorageManagerTest extends DatabaseTest
{ {
use VFSTrait; use CreateDatabaseTrait;
/** @var Database */
private $dba;
/** @var IManageConfigValues */ /** @var IManageConfigValues */
private $config; private $config;
/** @var LoggerInterface */ /** @var LoggerInterface */
@ -62,37 +61,33 @@ class StorageManagerTest extends DatabaseTest
/** @var L10n */ /** @var L10n */
private $l10n; private $l10n;
/** @var Database */
protected $database;
protected function setUp(): void protected function setUp(): void
{ {
parent::setUp(); parent::setUp();
$this->setUpVfsDir(); $this->setUpVfsDir();
$this->setUpDb();
vfsStream::newDirectory(Type\FilesystemConfig::DEFAULT_BASE_FOLDER, 0777)->at($this->root); vfsStream::newDirectory(Type\FilesystemConfig::DEFAULT_BASE_FOLDER, 0777)->at($this->root);
$this->logger = new NullLogger(); $this->logger = new NullLogger();
$profiler = \Mockery::mock(Profiler::class);
$profiler->shouldReceive('startRecording');
$profiler->shouldReceive('stopRecording');
$profiler->shouldReceive('saveTimestamp')->withAnyArgs()->andReturn(true);
// load real config to avoid mocking every config-entry which is related to the Database class
$configFactory = new Config(); $configFactory = new Config();
$configFileManager = $configFactory->createConfigFileManager($this->root->url()); $configFileManager = $configFactory->createConfigFileManager($this->root->url());
$configCache = $configFactory->createCache($configFileManager); $configCache = $configFactory->createCache($configFileManager);
$dbaDefinition = (new DbaDefinition($configCache->get('system', 'basepath')))->load();
$viewDefinition = (new ViewDefinition($configCache->get('system', 'basepath')))->load();
$this->dba = new StaticDatabase($configCache, $profiler, $dbaDefinition, $viewDefinition);
$this->config = new \Friendica\Core\Config\Model\Config($configFileManager, $configCache); $this->config = new \Friendica\Core\Config\Model\Config($configFileManager, $configCache);
$this->config->set('storage', 'name', 'Database'); $this->config->set('storage', 'name', 'Database');
$this->config->set('storage', 'filesystem_path', $this->root->getChild(Type\FilesystemConfig::DEFAULT_BASE_FOLDER) $this->config->set('storage', 'filesystem_path', $this->root->getChild(Type\FilesystemConfig::DEFAULT_BASE_FOLDER)
->url()); ->url());
$this->l10n = \Mockery::mock(L10n::class); $this->l10n = \Mockery::mock(L10n::class);
$this->database = $this->getDbInstance();
} }
protected function tearDown(): void protected function tearDown(): void
@ -107,7 +102,7 @@ class StorageManagerTest extends DatabaseTest
*/ */
public function testInstance() public function testInstance()
{ {
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
self::assertInstanceOf(StorageManager::class, $storageManager); self::assertInstanceOf(StorageManager::class, $storageManager);
} }
@ -169,7 +164,7 @@ class StorageManagerTest extends DatabaseTest
$this->config->set('storage', 'name', $name); $this->config->set('storage', 'name', $name);
} }
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
if ($interface === ICanWriteToStorage::class) { if ($interface === ICanWriteToStorage::class) {
$storage = $storageManager->getWritableStorageByName($name); $storage = $storageManager->getWritableStorageByName($name);
@ -189,7 +184,7 @@ class StorageManagerTest extends DatabaseTest
*/ */
public function testIsValidBackend($name, $valid, $interface, $assert, $assertName) public function testIsValidBackend($name, $valid, $interface, $assert, $assertName)
{ {
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
// true in every of the backends // true in every of the backends
self::assertEquals(!empty($assertName), $storageManager->isValidBackend($name)); self::assertEquals(!empty($assertName), $storageManager->isValidBackend($name));
@ -203,7 +198,7 @@ class StorageManagerTest extends DatabaseTest
*/ */
public function testListBackends() public function testListBackends()
{ {
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
self::assertEquals(StorageManager::DEFAULT_BACKENDS, $storageManager->listBackends()); self::assertEquals(StorageManager::DEFAULT_BACKENDS, $storageManager->listBackends());
} }
@ -219,7 +214,7 @@ class StorageManagerTest extends DatabaseTest
static::markTestSkipped('only works for ICanWriteToStorage'); static::markTestSkipped('only works for ICanWriteToStorage');
} }
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
$selBackend = $storageManager->getWritableStorageByName($name); $selBackend = $storageManager->getWritableStorageByName($name);
$storageManager->setBackend($selBackend); $storageManager->setBackend($selBackend);
@ -239,7 +234,7 @@ class StorageManagerTest extends DatabaseTest
$this->expectException(InvalidClassStorageException::class); $this->expectException(InvalidClassStorageException::class);
} }
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
self::assertInstanceOf($assert, $storageManager->getBackend()); self::assertInstanceOf($assert, $storageManager->getBackend());
} }
@ -260,7 +255,7 @@ class StorageManagerTest extends DatabaseTest
->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]); ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]);
DI::init($dice); DI::init($dice);
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
self::assertTrue($storageManager->register(SampleStorageBackend::class)); self::assertTrue($storageManager->register(SampleStorageBackend::class));
@ -288,7 +283,7 @@ class StorageManagerTest extends DatabaseTest
->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]); ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null]);
DI::init($dice); DI::init($dice);
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
self::assertTrue($storageManager->register(SampleStorageBackend::class)); self::assertTrue($storageManager->register(SampleStorageBackend::class));
@ -325,15 +320,15 @@ class StorageManagerTest extends DatabaseTest
self::markTestSkipped("No user backend"); self::markTestSkipped("No user backend");
} }
$this->loadFixture(__DIR__ . '/../../../../datasets/storage/database.fixture.php', $this->dba); $this->loadFixture(__DIR__ . '/../../../../datasets/storage/database.fixture.php', $this->database);
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
$storage = $storageManager->getWritableStorageByName($name); $storage = $storageManager->getWritableStorageByName($name);
$storageManager->move($storage); $storageManager->move($storage);
$photos = $this->dba->select('photo', ['backend-ref', 'backend-class', 'id', 'data']); $photos = $this->database->select('photo', ['backend-ref', 'backend-class', 'id', 'data']);
while ($photo = $this->dba->fetch($photos)) { while ($photo = $this->database->fetch($photos)) {
self::assertEmpty($photo['data']); self::assertEmpty($photo['data']);
$storage = $storageManager->getByName($photo['backend-class']); $storage = $storageManager->getByName($photo['backend-class']);
@ -351,7 +346,7 @@ class StorageManagerTest extends DatabaseTest
$this->expectException(InvalidClassStorageException::class); $this->expectException(InvalidClassStorageException::class);
$this->expectExceptionMessage('Backend SystemResource is not valid'); $this->expectExceptionMessage('Backend SystemResource is not valid');
$storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, false); $storageManager = new StorageManager($this->database, $this->config, $this->logger, $this->l10n, false);
$storage = $storageManager->getWritableStorageByName(SystemResource::getName()); $storage = $storageManager->getWritableStorageByName(SystemResource::getName());
$storageManager->move($storage); $storageManager->move($storage);
} }

View File

@ -23,9 +23,7 @@ namespace Friendica\Test\src\Util;
use Friendica\App\BaseURL; use Friendica\App\BaseURL;
use Friendica\Core\Config\Capability\IManageConfigValues; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Core\Config\Capability\ISetConfigValuesTransactionally;
use Friendica\Core\Config\Model\Config; use Friendica\Core\Config\Model\Config;
use Friendica\Core\Config\Model\ConfigTransaction;
use Friendica\Core\Config\Util\ConfigFileManager; use Friendica\Core\Config\Util\ConfigFileManager;
use Friendica\Core\Config\ValueObject\Cache; use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Test\MockedTest; use Friendica\Test\MockedTest;

View File

@ -21,7 +21,6 @@
namespace Friendica\Test\src\Util; namespace Friendica\Test\src\Util;
use Friendica\Core\Config\ValueObject\Cache;
use Friendica\Core\Config\Capability\IManageConfigValues; use Friendica\Core\Config\Capability\IManageConfigValues;
use Friendica\Test\MockedTest; use Friendica\Test\MockedTest;
use Friendica\Util\Profiler; use Friendica\Util\Profiler;
@ -47,12 +46,12 @@ class ProfilerTest extends MockedTest
*/ */
public function testSetUp() public function testSetUp()
{ {
$configCache = \Mockery::mock(Cache::class); $config = \Mockery::mock(IManageConfigValues::class);
$configCache->shouldReceive('get') $config->shouldReceive('get')
->withAnyArgs() ->withAnyArgs()
->andReturn(true) ->andReturn(true)
->twice(); ->twice();
$profiler = new Profiler($configCache); $profiler = new Profiler($config);
self::assertInstanceOf(Profiler::class, $profiler); self::assertInstanceOf(Profiler::class, $profiler);
} }
@ -124,13 +123,13 @@ class ProfilerTest extends MockedTest
*/ */
public function testSaveTimestamp($timestamp, $name, array $functions) public function testSaveTimestamp($timestamp, $name, array $functions)
{ {
$configCache = \Mockery::mock(Cache::class); $config = \Mockery::mock(IManageConfigValues::class);
$configCache->shouldReceive('get') $config->shouldReceive('get')
->withAnyArgs() ->withAnyArgs()
->andReturn(true) ->andReturn(true)
->twice(); ->twice();
$profiler = new Profiler($configCache); $profiler = new Profiler($config);
foreach ($functions as $function) { foreach ($functions as $function) {
$profiler->saveTimestamp($timestamp, $name, $function); $profiler->saveTimestamp($timestamp, $name, $function);
@ -145,13 +144,13 @@ class ProfilerTest extends MockedTest
*/ */
public function testReset($timestamp, $name) public function testReset($timestamp, $name)
{ {
$configCache = \Mockery::mock(Cache::class); $config = \Mockery::mock(IManageConfigValues::class);
$configCache->shouldReceive('get') $config->shouldReceive('get')
->withAnyArgs() ->withAnyArgs()
->andReturn(true) ->andReturn(true)
->twice(); ->twice();
$profiler = new Profiler($configCache); $profiler = new Profiler($config);
$profiler->saveTimestamp($timestamp, $name); $profiler->saveTimestamp($timestamp, $name);
$profiler->reset(); $profiler->reset();
@ -208,13 +207,13 @@ class ProfilerTest extends MockedTest
->shouldReceive('info') ->shouldReceive('info')
->once(); ->once();
$configCache = \Mockery::mock(Cache::class); $config = \Mockery::mock(IManageConfigValues::class);
$configCache->shouldReceive('get') $config->shouldReceive('get')
->withAnyArgs() ->withAnyArgs()
->andReturn(true) ->andReturn(true)
->twice(); ->twice();
$profiler = new Profiler($configCache); $profiler = new Profiler($config);
foreach ($data as $perf => $items) { foreach ($data as $perf => $items) {
foreach ($items['functions'] as $function) { foreach ($items['functions'] as $function) {
@ -233,60 +232,4 @@ class ProfilerTest extends MockedTest
} }
} }
} }
/**
* Test different enable and disable states of the profiler
*/
public function testEnableDisable()
{
$configCache = \Mockery::mock(Cache::class);
$configCache->shouldReceive('get')
->with('system', 'profiler')
->andReturn(true)
->once();
$configCache->shouldReceive('get')
->with('rendertime', 'callstack')
->andReturn(false)
->once();
$profiler = new Profiler($configCache);
self::assertFalse($profiler->isRendertime());
self::assertEmpty($profiler->getRendertimeString());
$profiler->saveTimestamp(time(), 'network', 'test1');
$config = \Mockery::mock(IManageConfigValues::class);
$config->shouldReceive('get')
->with('system', 'profiler')
->andReturn(false)
->once();
$config->shouldReceive('get')
->with('rendertime', 'callstack')
->andReturn(false)
->once();
$profiler->update($config);
self::assertFalse($profiler->isRendertime());
self::assertEmpty($profiler->getRendertimeString());
$config->shouldReceive('get')
->with('system', 'profiler')
->andReturn(true)
->once();
$config->shouldReceive('get')
->with('rendertime', 'callstack')
->andReturn(true)
->once();
$profiler->update($config);
$profiler->saveTimestamp(time(), 'database', 'test2');
self::assertTrue($profiler->isRendertime());
$output = $profiler->getRendertimeString();
self::assertMatchesRegularExpression('/test1: \d+/', $output);
self::assertMatchesRegularExpression('/test2: \d+/', $output);
}
} }