mirror of
https://github.com/friendica/friendica
synced 2025-03-24 20:04:03 +00:00
Replace Addon::DIRECTORY with AddonHelper::getAddonPath()
This commit is contained in:
parent
4e9276e1c9
commit
d8470b68df
11 changed files with 83 additions and 31 deletions
12
src/App.php
12
src/App.php
|
@ -166,6 +166,8 @@ class App
|
||||||
$this->session = $this->container->create(IHandleUserSessions::class);
|
$this->session = $this->container->create(IHandleUserSessions::class);
|
||||||
$this->appHelper = $this->container->create(AppHelper::class);
|
$this->appHelper = $this->container->create(AppHelper::class);
|
||||||
|
|
||||||
|
$addonHelper = $this->container->create(AddonHelper::class);
|
||||||
|
|
||||||
$this->load(
|
$this->load(
|
||||||
$request->getServerParams(),
|
$request->getServerParams(),
|
||||||
$this->container->create(DbaDefinition::class),
|
$this->container->create(DbaDefinition::class),
|
||||||
|
@ -174,6 +176,7 @@ class App
|
||||||
$this->config,
|
$this->config,
|
||||||
$this->profiler,
|
$this->profiler,
|
||||||
$this->appHelper,
|
$this->appHelper,
|
||||||
|
$addonHelper,
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->registerTemplateEngine();
|
$this->registerTemplateEngine();
|
||||||
|
@ -182,7 +185,7 @@ class App
|
||||||
$this->container->create(IManagePersonalConfigValues::class),
|
$this->container->create(IManagePersonalConfigValues::class),
|
||||||
$this->container->create(Page::class),
|
$this->container->create(Page::class),
|
||||||
$this->container->create(Nav::class),
|
$this->container->create(Nav::class),
|
||||||
$this->container->create(AddonHelper::class),
|
$addonHelper,
|
||||||
$this->container->create(ModuleHTTPException::class),
|
$this->container->create(ModuleHTTPException::class),
|
||||||
$start_time,
|
$start_time,
|
||||||
$request
|
$request
|
||||||
|
@ -212,6 +215,7 @@ class App
|
||||||
$this->container->create(IManageConfigValues::class),
|
$this->container->create(IManageConfigValues::class),
|
||||||
$this->container->create(Profiler::class),
|
$this->container->create(Profiler::class),
|
||||||
$this->container->create(AppHelper::class),
|
$this->container->create(AppHelper::class),
|
||||||
|
$this->container->create(AddonHelper::class),
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->registerTemplateEngine();
|
$this->registerTemplateEngine();
|
||||||
|
@ -240,6 +244,7 @@ class App
|
||||||
$this->container->create(IManageConfigValues::class),
|
$this->container->create(IManageConfigValues::class),
|
||||||
$this->container->create(Profiler::class),
|
$this->container->create(Profiler::class),
|
||||||
$this->container->create(AppHelper::class),
|
$this->container->create(AppHelper::class),
|
||||||
|
$this->container->create(AddonHelper::class),
|
||||||
);
|
);
|
||||||
|
|
||||||
/** @var BasePath */
|
/** @var BasePath */
|
||||||
|
@ -318,7 +323,8 @@ class App
|
||||||
Mode $mode,
|
Mode $mode,
|
||||||
IManageConfigValues $config,
|
IManageConfigValues $config,
|
||||||
Profiler $profiler,
|
Profiler $profiler,
|
||||||
AppHelper $appHelper
|
AppHelper $appHelper,
|
||||||
|
AddonHelper $addonHelper
|
||||||
): void {
|
): void {
|
||||||
if ($config->get('system', 'ini_max_execution_time') !== false) {
|
if ($config->get('system', 'ini_max_execution_time') !== false) {
|
||||||
set_time_limit((int) $config->get('system', 'ini_max_execution_time'));
|
set_time_limit((int) $config->get('system', 'ini_max_execution_time'));
|
||||||
|
@ -340,7 +346,7 @@ class App
|
||||||
|
|
||||||
if ($mode->has(Mode::DBAVAILABLE)) {
|
if ($mode->has(Mode::DBAVAILABLE)) {
|
||||||
Core\Hook::loadHooks();
|
Core\Hook::loadHooks();
|
||||||
$loader = (new Config())->createConfigFileManager($appHelper->getBasePath(), $serverParams);
|
$loader = (new Config())->createConfigFileManager($appHelper->getBasePath(), $addonHelper->getAddonPath(), $serverParams);
|
||||||
Core\Hook::callAll('load_config', $loader);
|
Core\Hook::callAll('load_config', $loader);
|
||||||
|
|
||||||
// Hooks are now working, reload the whole definitions with hook enabled
|
// Hooks are now working, reload the whole definitions with hook enabled
|
||||||
|
|
|
@ -42,7 +42,7 @@ class Config
|
||||||
*
|
*
|
||||||
* @return Util\ConfigFileManager
|
* @return Util\ConfigFileManager
|
||||||
*/
|
*/
|
||||||
public function createConfigFileManager(string $basePath, array $server = []): Util\ConfigFileManager
|
public function createConfigFileManager(string $basePath, string $addonPath, array $server = []): Util\ConfigFileManager
|
||||||
{
|
{
|
||||||
if (!empty($server[self::CONFIG_DIR_ENV]) && is_dir($server[self::CONFIG_DIR_ENV])) {
|
if (!empty($server[self::CONFIG_DIR_ENV]) && is_dir($server[self::CONFIG_DIR_ENV])) {
|
||||||
$configDir = $server[self::CONFIG_DIR_ENV];
|
$configDir = $server[self::CONFIG_DIR_ENV];
|
||||||
|
@ -51,7 +51,7 @@ class Config
|
||||||
}
|
}
|
||||||
$staticDir = $basePath . DIRECTORY_SEPARATOR . self::STATIC_DIR;
|
$staticDir = $basePath . DIRECTORY_SEPARATOR . self::STATIC_DIR;
|
||||||
|
|
||||||
return new Util\ConfigFileManager($basePath, $configDir, $staticDir, $server);
|
return new Util\ConfigFileManager($basePath, $addonPath, $configDir, $staticDir, $server);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
namespace Friendica\Core\Config\Util;
|
namespace Friendica\Core\Config\Util;
|
||||||
|
|
||||||
use Friendica\Core\Addon;
|
|
||||||
use Friendica\Core\Config\Exception\ConfigFileException;
|
use Friendica\Core\Config\Exception\ConfigFileException;
|
||||||
use Friendica\Core\Config\ValueObject\Cache;
|
use Friendica\Core\Config\ValueObject\Cache;
|
||||||
|
|
||||||
|
@ -46,6 +45,7 @@ class ConfigFileManager
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
private $baseDir;
|
private $baseDir;
|
||||||
|
private string $addonDir;
|
||||||
/**
|
/**
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
|
@ -65,9 +65,10 @@ class ConfigFileManager
|
||||||
* @param string $configDir
|
* @param string $configDir
|
||||||
* @param string $staticDir
|
* @param string $staticDir
|
||||||
*/
|
*/
|
||||||
public function __construct(string $baseDir, string $configDir, string $staticDir, array $server = [])
|
public function __construct(string $baseDir, string $addonDir, string $configDir, string $staticDir, array $server = [])
|
||||||
{
|
{
|
||||||
$this->baseDir = $baseDir;
|
$this->baseDir = $baseDir;
|
||||||
|
$this->addonDir = $addonDir;
|
||||||
$this->configDir = $configDir;
|
$this->configDir = $configDir;
|
||||||
$this->staticDir = $staticDir;
|
$this->staticDir = $staticDir;
|
||||||
$this->server = $server;
|
$this->server = $server;
|
||||||
|
@ -160,17 +161,16 @@ class ConfigFileManager
|
||||||
*/
|
*/
|
||||||
public function loadAddonConfig(string $name): array
|
public function loadAddonConfig(string $name): array
|
||||||
{
|
{
|
||||||
$filepath = $this->baseDir . DIRECTORY_SEPARATOR . // /var/www/html/
|
$filepath = $this->addonDir . DIRECTORY_SEPARATOR . // /var/www/html/addon/
|
||||||
Addon::DIRECTORY . DIRECTORY_SEPARATOR . // addon/
|
$name . DIRECTORY_SEPARATOR . // openstreetmap/
|
||||||
$name . DIRECTORY_SEPARATOR . // openstreetmap/
|
'config' . DIRECTORY_SEPARATOR . // config/
|
||||||
'config' . DIRECTORY_SEPARATOR . // config/
|
$name . ".config.php"; // openstreetmap.config.php
|
||||||
$name . ".config.php"; // openstreetmap.config.php
|
|
||||||
|
|
||||||
if (file_exists($filepath)) {
|
if (!file_exists($filepath)) {
|
||||||
return $this->loadConfigFile($filepath);
|
|
||||||
} else {
|
|
||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $this->loadConfigFile($filepath);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -26,7 +26,8 @@ class Summary extends BaseAdmin
|
||||||
{
|
{
|
||||||
parent::content();
|
parent::content();
|
||||||
|
|
||||||
$basePath = DI::appHelper()->getBasePath();
|
$basePath = DI::appHelper()->getBasePath();
|
||||||
|
$addonPath = DI::addonHelper()->getAddonPath();
|
||||||
|
|
||||||
// are there MyISAM tables in the DB? If so, trigger a warning message
|
// are there MyISAM tables in the DB? If so, trigger a warning message
|
||||||
$warningtext = [];
|
$warningtext = [];
|
||||||
|
@ -117,7 +118,7 @@ class Summary extends BaseAdmin
|
||||||
}
|
}
|
||||||
|
|
||||||
// check legacy basepath settings
|
// check legacy basepath settings
|
||||||
$configLoader = (new Config())->createConfigFileManager($basePath, $_SERVER);
|
$configLoader = (new Config())->createConfigFileManager($basePath, $addonPath, $_SERVER);
|
||||||
$configCache = new Cache();
|
$configCache = new Cache();
|
||||||
$configLoader->setupCache($configCache);
|
$configLoader->setupCache($configCache);
|
||||||
$confBasepath = $configCache->get('system', 'basepath');
|
$confBasepath = $configCache->get('system', 'basepath');
|
||||||
|
|
|
@ -87,6 +87,7 @@ return (function(string $basepath, array $getVars, array $serverVars, array $coo
|
||||||
'call' => [
|
'call' => [
|
||||||
['createConfigFileManager', [
|
['createConfigFileManager', [
|
||||||
$basepath,
|
$basepath,
|
||||||
|
$basepath . '/addon',
|
||||||
$serverVars,
|
$serverVars,
|
||||||
], Dice::CHAIN_CALL],
|
], Dice::CHAIN_CALL],
|
||||||
],
|
],
|
||||||
|
|
|
@ -32,7 +32,12 @@ trait CreateDatabaseTrait
|
||||||
return $this->dba;
|
return $this->dba;
|
||||||
}
|
}
|
||||||
|
|
||||||
$configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/');
|
$configFileManager = new ConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
$this->root->url() . '/config',
|
||||||
|
$this->root->url() . '/static'
|
||||||
|
);
|
||||||
$config = new ReadOnlyFileConfig(new Cache([
|
$config = new ReadOnlyFileConfig(new Cache([
|
||||||
'database' => [
|
'database' => [
|
||||||
'disable_pdo' => true
|
'disable_pdo' => true
|
||||||
|
|
|
@ -34,6 +34,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -61,6 +62,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -90,6 +92,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -127,6 +130,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -163,6 +167,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -217,6 +222,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -254,6 +260,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -288,6 +295,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -322,6 +330,7 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
|
|
||||||
$configFileLoader = new ConfigFileManager(
|
$configFileLoader = new ConfigFileManager(
|
||||||
$this->root->url(),
|
$this->root->url(),
|
||||||
|
$this->root->url() . DIRECTORY_SEPARATOR . 'addon',
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::CONFIG_DIR,
|
||||||
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
$this->root->url() . DIRECTORY_SEPARATOR . Config::STATIC_DIR
|
||||||
);
|
);
|
||||||
|
@ -341,7 +350,11 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
{
|
{
|
||||||
$this->delConfigFile('local.config.php');
|
$this->delConfigFile('local.config.php');
|
||||||
|
|
||||||
$configFileManager = (new Config())->createConfigFileManager($this->root->url(), ['FRIENDICA_CONFIG_DIR' => '/a/wrong/dir/']);
|
$configFileManager = (new Config())->createConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
['FRIENDICA_CONFIG_DIR' => '/a/wrong/dir/'],
|
||||||
|
);
|
||||||
$configCache = new Cache();
|
$configCache = new Cache();
|
||||||
|
|
||||||
$configFileManager->setupCache($configCache);
|
$configFileManager->setupCache($configCache);
|
||||||
|
@ -367,10 +380,11 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
->at($this->root->getChild('config2'))
|
->at($this->root->getChild('config2'))
|
||||||
->setContent(file_get_contents($fileDir . 'B.config.php'));
|
->setContent(file_get_contents($fileDir . 'B.config.php'));
|
||||||
|
|
||||||
$configFileManager = (new Config())->createConfigFileManager($this->root->url(),
|
$configFileManager = (new Config())->createConfigFileManager(
|
||||||
[
|
$this->root->url(),
|
||||||
'FRIENDICA_CONFIG_DIR' => $this->root->getChild('config2')->url(),
|
$this->root->url() . '/addon',
|
||||||
]);
|
['FRIENDICA_CONFIG_DIR' => $this->root->getChild('config2')->url()],
|
||||||
|
);
|
||||||
$configCache = new Cache();
|
$configCache = new Cache();
|
||||||
|
|
||||||
$configFileManager->setupCache($configCache);
|
$configFileManager->setupCache($configCache);
|
||||||
|
@ -389,11 +403,12 @@ class ConfigFileManagerTest extends MockedTestCase
|
||||||
->at($this->root->getChild('config'))
|
->at($this->root->getChild('config'))
|
||||||
->setContent('');
|
->setContent('');
|
||||||
|
|
||||||
$configFileManager = (new Config())->createConfigFileManager($this->root->url());
|
$configFileManager = (new Config())->createConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
);
|
||||||
$configCache = new Cache();
|
$configCache = new Cache();
|
||||||
|
|
||||||
$configFileManager->setupCache($configCache);
|
$configFileManager->setupCache($configCache);
|
||||||
|
|
||||||
self::assertEquals(1,1);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,12 @@ class ConfigTest extends DatabaseTestCase
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->configCache = new Cache();
|
$this->configCache = new Cache();
|
||||||
$this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/');
|
$this->configFileManager = new ConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
$this->root->url() . '/config',
|
||||||
|
$this->root->url() . '/static'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -608,7 +613,13 @@ class ConfigTest extends DatabaseTestCase
|
||||||
$this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'env.config.php', true);
|
$this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'env.config.php', true);
|
||||||
$this->loadDirectFixture($this->configToDbArray($data), $this->getDbInstance());
|
$this->loadDirectFixture($this->configToDbArray($data), $this->getDbInstance());
|
||||||
|
|
||||||
$configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/', $server);
|
$configFileManager = new ConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
$this->root->url() . '/config',
|
||||||
|
$this->root->url() . '/static',
|
||||||
|
$server
|
||||||
|
);
|
||||||
$configFileManager->setupCache($this->configCache);
|
$configFileManager->setupCache($this->configCache);
|
||||||
$config = new DatabaseConfig($this->getDbInstance(), $this->configCache);
|
$config = new DatabaseConfig($this->getDbInstance(), $this->configCache);
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,12 @@ class ConfigTransactionTest extends FixtureTestCase
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/');
|
$this->configFileManager = new ConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
$this->root->url() . '/config',
|
||||||
|
$this->root->url() . '/static'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function dataTests(): array
|
public function dataTests(): array
|
||||||
|
|
|
@ -64,7 +64,10 @@ class StorageManagerTest extends DatabaseTestCase
|
||||||
$this->database = $this->getDbInstance();
|
$this->database = $this->getDbInstance();
|
||||||
|
|
||||||
$configFactory = new Config();
|
$configFactory = new Config();
|
||||||
$configFileManager = $configFactory->createConfigFileManager($this->root->url());
|
$configFileManager = $configFactory->createConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
);
|
||||||
$configCache = $configFactory->createCache($configFileManager);
|
$configCache = $configFactory->createCache($configFileManager);
|
||||||
|
|
||||||
$this->config = new \Friendica\Core\Config\Model\DatabaseConfig($this->database, $configCache);
|
$this->config = new \Friendica\Core\Config\Model\DatabaseConfig($this->database, $configCache);
|
||||||
|
|
|
@ -32,7 +32,12 @@ class DatabaseTest extends FixtureTestCase
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
$this->configCache = new Cache();
|
$this->configCache = new Cache();
|
||||||
$this->configFileManager = new ConfigFileManager($this->root->url(), $this->root->url() . '/config/', $this->root->url() . '/static/');
|
$this->configFileManager = new ConfigFileManager(
|
||||||
|
$this->root->url(),
|
||||||
|
$this->root->url() . '/addon',
|
||||||
|
$this->root->url() . '/config',
|
||||||
|
$this->root->url() . '/static'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue