2018-10-31 10:16:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
|
2019-07-26 15:54:14 +02:00
|
|
|
use Dice\Dice;
|
2018-10-31 10:16:15 +01:00
|
|
|
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;
|
2019-02-17 21:41:45 +01:00
|
|
|
use Friendica\Util\Profiler;
|
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
|
|
|
*/
|
2019-02-17 21:41:45 +01:00
|
|
|
protected $configMock;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var MockInterface|Profiler The mocked profiler
|
|
|
|
*/
|
|
|
|
protected $profilerMock;
|
2019-02-07 20:44:03 +01:00
|
|
|
|
2019-03-11 22:46:00 +01:00
|
|
|
/**
|
|
|
|
* @var MockInterface|App\Mode The mocked App mode
|
|
|
|
*/
|
|
|
|
protected $mode;
|
|
|
|
|
2019-07-26 15:54:14 +02:00
|
|
|
/**
|
|
|
|
* @var MockInterface|Dice The dependency injection library
|
|
|
|
*/
|
|
|
|
protected $dice;
|
|
|
|
|
2018-10-31 10:16:15 +01:00
|
|
|
/**
|
|
|
|
* Mock the App
|
|
|
|
*
|
|
|
|
* @param vfsStreamDirectory $root The root directory
|
2019-03-14 00:19:52 +01:00
|
|
|
* @param bool $raw If true, no config mocking will be done
|
2018-10-31 10:16:15 +01:00
|
|
|
*/
|
2019-03-26 22:04:31 +01:00
|
|
|
public function mockApp(vfsStreamDirectory $root, $raw = false)
|
2018-10-31 10:16:15 +01:00
|
|
|
{
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice = \Mockery::mock(Dice::class)->makePartial();
|
|
|
|
$this->dice = $this->dice->addRules(include __DIR__ . '/../../static/dependencies.config.php');
|
|
|
|
|
2019-07-12 22:38:50 +02:00
|
|
|
$this->configMock = \Mockery::mock(Config\Cache\ConfigCache::class);
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice->shouldReceive('create')
|
|
|
|
->with(Config\Cache\ConfigCache::class)
|
|
|
|
->andReturn($this->configMock);
|
2019-03-11 22:46:00 +01:00
|
|
|
$this->mode = \Mockery::mock(App\Mode::class);
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice->shouldReceive('create')
|
|
|
|
->with(App\Mode::class)
|
|
|
|
->andReturn($this->mode);
|
2019-07-12 23:01:01 +02:00
|
|
|
$configModel= \Mockery::mock(\Friendica\Model\Config\Config::class);
|
2019-02-17 21:41:45 +01:00
|
|
|
// Disable the adapter
|
2019-07-12 23:01:01 +02:00
|
|
|
$configModel->shouldReceive('isConnected')->andReturn(false);
|
2019-02-17 21:41:45 +01:00
|
|
|
|
2019-07-12 23:01:01 +02:00
|
|
|
$config = new Config\JitConfiguration($this->configMock, $configModel);
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice->shouldReceive('create')
|
|
|
|
->with(Config\Configuration::class)
|
|
|
|
->andReturn($config);
|
2019-02-17 21:41:45 +01:00
|
|
|
|
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);
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice->shouldReceive('create')
|
|
|
|
->with(App::class)
|
|
|
|
->andReturn($this->app);
|
2018-10-31 10:16:15 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getBasePath')
|
|
|
|
->andReturn($root->url());
|
|
|
|
|
2019-03-11 22:46:00 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getMode')
|
|
|
|
->andReturn($this->mode);
|
|
|
|
|
2019-03-13 23:05:33 +01:00
|
|
|
$this->profilerMock = \Mockery::mock(Profiler::class);
|
|
|
|
$this->profilerMock->shouldReceive('saveTimestamp');
|
2019-07-26 15:54:14 +02:00
|
|
|
$this->dice->shouldReceive('create')
|
|
|
|
->with(Profiler::class)
|
|
|
|
->andReturn($this->profilerMock);
|
2019-03-13 23:05:33 +01:00
|
|
|
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getConfigCache')
|
2019-03-26 22:04:31 +01:00
|
|
|
->andReturn($this->configMock);
|
2019-04-13 21:59:05 +02:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getConfig')
|
|
|
|
->andReturn($config);
|
2019-03-13 23:05:33 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getTemplateEngine')
|
|
|
|
->andReturn(new FriendicaSmartyEngine());
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getCurrentTheme')
|
|
|
|
->andReturn('Smarty3');
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getProfiler')
|
|
|
|
->andReturn($this->profilerMock);
|
|
|
|
$this->app
|
|
|
|
->shouldReceive('getBaseUrl')
|
|
|
|
->andReturnUsing(function () {
|
2019-03-26 22:04:31 +01:00
|
|
|
return $this->configMock->get('system', 'url');
|
2019-03-13 23:05:33 +01:00
|
|
|
});
|
|
|
|
|
2019-07-26 15:54:14 +02:00
|
|
|
BaseObject::setDependencyInjection($this->dice);
|
2019-03-13 23:05:33 +01:00
|
|
|
|
|
|
|
if ($raw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-14 00:19:52 +01:00
|
|
|
$this->configMock
|
|
|
|
->shouldReceive('has')
|
|
|
|
->andReturn(true);
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-04 00:04:16 +01:00
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'hostname')
|
|
|
|
->andReturn(getenv('MYSQL_HOST'));
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-04 00:04:16 +01:00
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'username')
|
|
|
|
->andReturn(getenv('MYSQL_USERNAME'));
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-04 00:04:16 +01:00
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'password')
|
|
|
|
->andReturn(getenv('MYSQL_PASSWORD'));
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-04 00:04:16 +01:00
|
|
|
->shouldReceive('get')
|
2018-10-31 10:16:15 +01:00
|
|
|
->with('database', 'database')
|
|
|
|
->andReturn(getenv('MYSQL_DATABASE'));
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-07 20:44:03 +01:00
|
|
|
->shouldReceive('get')
|
|
|
|
->with('config', 'hostname')
|
|
|
|
->andReturn('localhost');
|
2019-02-17 21:41:45 +01:00
|
|
|
$this->configMock
|
2019-02-07 20:44:03 +01:00
|
|
|
->shouldReceive('get')
|
2019-02-17 21:41:45 +01:00
|
|
|
->with('system', 'theme')
|
2019-02-07 20:44:03 +01:00
|
|
|
->andReturn('system_theme');
|
2018-10-31 10:16:15 +01:00
|
|
|
}
|
|
|
|
}
|