friendica/tests/Util/AppMockTrait.php

151 lines
4.1 KiB
PHP
Raw Normal View History

<?php
2020-02-09 15:45:36 +01:00
/**
* @copyright Copyright (C) 2020, Friendica
*
* @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;
2019-07-26 15:54:14 +02:00
use Dice\Dice;
use Friendica\App;
use Friendica\Core\Config;
use Friendica\DI;
use Friendica\Render\FriendicaSmartyEngine;
2019-02-17 21:41:45 +01:00
use Friendica\Util\Profiler;
use Mockery\MockInterface;
use org\bovigo\vfs\vfsStreamDirectory;
/**
* Trait to Mock the global App instance
*/
trait AppMockTrait
{
/**
* @var MockInterface|App The mocked Friendica\App
*/
protected $app;
/**
* @var MockInterface|Config\IConfig The mocked Config Cache
*/
2019-02-17 21:41:45 +01:00
protected $configMock;
/**
* @var MockInterface|Profiler The mocked profiler
*/
protected $profilerMock;
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;
/**
* Mock the App
*
* @param vfsStreamDirectory $root The root directory
* @param bool $raw If true, no config mocking will be done
*/
public function mockApp(vfsStreamDirectory $root, $raw = false)
{
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');
$this->configMock = \Mockery::mock(Config\Cache::class);
2019-07-26 15:54:14 +02:00
$this->dice->shouldReceive('create')
->with(Config\Cache::class)
2019-07-26 15:54:14 +02:00
->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)
2019-07-26 15:54:14 +02:00
->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
$config = new Config\JitConfig($this->configMock, $configModel);
2019-07-26 15:54:14 +02:00
$this->dice->shouldReceive('create')
->with(Config\IConfig::class)
2019-07-26 15:54:14 +02:00
->andReturn($config);
2019-02-17 21:41:45 +01:00
// Mocking App and most used functions
$this->app = \Mockery::mock(App::class);
2019-07-26 15:54:14 +02:00
$this->dice->shouldReceive('create')
->with(App::class)
2019-07-26 15:54:14 +02:00
->andReturn($this->app);
$this->app
->shouldReceive('getBasePath')
->andReturn($root->url());
$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)
2019-07-26 15:54:14 +02:00
->andReturn($this->profilerMock);
$this->app
->shouldReceive('getConfigCache')
->andReturn($this->configMock);
$this->app
->shouldReceive('getTemplateEngine')
->andReturn(new FriendicaSmartyEngine('frio', []));
$this->app
->shouldReceive('getCurrentTheme')
->andReturn('Smarty3');
DI::init($this->dice);
if ($raw) {
return;
}
$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')
->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')
->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')
->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')
->with('database', 'database')
->andReturn(getenv('MYSQL_DATABASE'));
2019-02-17 21:41:45 +01:00
$this->configMock
->shouldReceive('get')
->with('config', 'hostname')
->andReturn('localhost');
2019-02-17 21:41:45 +01:00
$this->configMock
->shouldReceive('get')
2019-02-17 21:41:45 +01:00
->with('system', 'theme')
->andReturn('system_theme');
}
}