2018-10-31 10:16:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\BaseObject;
|
2019-02-07 20:44:03 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-10-31 10:16:15 +01:00
|
|
|
use Friendica\Render\FriendicaSmartyEngine;
|
2018-10-31 10:24:07 +01:00
|
|
|
use Mockery\MockInterface;
|
2018-10-31 10:16:15 +01:00
|
|
|
use org\bovigo\vfs\vfsStreamDirectory;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trait to Mock the global App instance
|
|
|
|
*/
|
|
|
|
trait AppMockTrait
|
|
|
|
{
|
|
|
|
/**
|
2018-10-31 10:24:07 +01:00
|
|
|
* @var MockInterface|App The mocked Friendica\App
|
2018-10-31 10:16:15 +01:00
|
|
|
*/
|
|
|
|
protected $app;
|
|
|
|
|
2019-02-07 20:44:03 +01:00
|
|
|
/**
|
2019-02-10 19:52:21 +01:00
|
|
|
* @var MockInterface|Config\Configuration The mocked Config Cache
|
2019-02-07 20:44:03 +01:00
|
|
|
*/
|
|
|
|
protected $configCache;
|
|
|
|
|
2018-10-31 10:16:15 +01:00
|
|
|
/**
|
|
|
|
* Mock the App
|
|
|
|
*
|
|
|
|
* @param vfsStreamDirectory $root The root directory
|
2019-02-10 19:52:21 +01:00
|
|
|
* @param MockInterface|Config\Configuration $config The config cache
|
2018-10-31 10:16:15 +01:00
|
|
|
*/
|
2019-02-10 19:52:21 +01:00
|
|
|
public function mockApp($root, Config\Configuration $config)
|
2018-10-31 10:16:15 +01:00
|
|
|
{
|
2019-02-07 20:44:03 +01:00
|
|
|
$this->configCache = $config;
|
2018-10-31 10:16:15 +01:00
|
|
|
// Mocking App and most used functions
|
2018-10-31 10:24:07 +01:00
|
|
|
$this->app = \Mockery::mock(App::class);
|
2018-10-31 10:16:15 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getBasePath')
|
|
|
|
->andReturn($root->url());
|
|
|
|
|
2019-02-04 00:04:16 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'hostname')
|
|
|
|
->andReturn(getenv('MYSQL_HOST'));
|
2019-02-04 00:04:16 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'username')
|
|
|
|
->andReturn(getenv('MYSQL_USERNAME'));
|
2019-02-04 00:04:16 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'password')
|
|
|
|
->andReturn(getenv('MYSQL_PASSWORD'));
|
2019-02-04 00:04:16 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'database')
|
|
|
|
->andReturn(getenv('MYSQL_DATABASE'));
|
2019-02-07 20:44:03 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
|
|
|
->with('config', 'hostname')
|
|
|
|
->andReturn('localhost');
|
|
|
|
$config
|
|
|
|
->shouldReceive('get')
|
2019-02-10 19:52:21 +01:00
|
|
|
->with('system', 'theme', NULL, false)
|
2019-02-07 20:44:03 +01:00
|
|
|
->andReturn('system_theme');
|
2019-02-10 19:52:21 +01:00
|
|
|
$config
|
|
|
|
->shouldReceive('getConfig')
|
|
|
|
->andReturn($config);
|
2019-02-07 20:44:03 +01:00
|
|
|
|
2019-02-04 00:04:16 +01:00
|
|
|
$this->app
|
2019-02-10 19:52:21 +01:00
|
|
|
->shouldReceive('getConfigCache')
|
2019-02-04 00:04:16 +01:00
|
|
|
->andReturn($config);
|
|
|
|
|
2018-10-31 10:16:15 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getTemplateEngine')
|
|
|
|
->andReturn(new FriendicaSmartyEngine());
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getCurrentTheme')
|
|
|
|
->andReturn('Smarty3');
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('saveTimestamp')
|
|
|
|
->andReturn(true);
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getBaseUrl')
|
|
|
|
->andReturn('http://friendica.local');
|
|
|
|
|
2019-02-07 20:44:03 +01:00
|
|
|
// Initialize empty Config
|
|
|
|
Config::init($config);
|
|
|
|
|
2018-10-31 10:16:15 +01:00
|
|
|
BaseObject::setApp($this->app);
|
|
|
|
}
|
|
|
|
}
|