2018-10-31 10:16:15 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\BaseObject;
|
2019-02-04 00:04:16 +01:00
|
|
|
use Friendica\Core\Config\ConfigCache;
|
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
|
|
|
|
{
|
|
|
|
use ConfigMockTrait;
|
|
|
|
|
|
|
|
/**
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mock the App
|
|
|
|
*
|
|
|
|
* @param vfsStreamDirectory $root The root directory
|
2019-02-04 00:04:16 +01:00
|
|
|
* @param MockInterface|ConfigCache $config The config cache
|
2018-10-31 10:16:15 +01:00
|
|
|
*/
|
2019-02-04 00:04:16 +01:00
|
|
|
public function mockApp($root, $config)
|
2018-10-31 10:16:15 +01:00
|
|
|
{
|
|
|
|
$this->mockConfigGet('system', 'theme', 'testtheme');
|
|
|
|
|
|
|
|
// 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-04 00:04:16 +01:00
|
|
|
$this->app
|
|
|
|
->shouldReceive('getConfig')
|
|
|
|
->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');
|
|
|
|
|
|
|
|
BaseObject::setApp($this->app);
|
|
|
|
}
|
|
|
|
}
|