eafcf3592d
- New Configuration (Config is now only holding the instance) - New PConfiguration (PConfig is now only holding the instance) - Config & PConfig-Adapter don't need "ConfigCache" anymore - DB-Connection is now outside App->reload() for better dependency-chaining
57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Test\src\Core\Console;
|
|
|
|
use Asika\SimpleConsole\Console;
|
|
use Friendica\Core\Config\Configuration;
|
|
use Friendica\Test\MockedTest;
|
|
use Friendica\Test\Util\AppMockTrait;
|
|
use Friendica\Test\Util\Intercept;
|
|
use Friendica\Test\Util\VFSTrait;
|
|
use Friendica\Util\Profiler;
|
|
|
|
abstract class ConsoleTest extends MockedTest
|
|
{
|
|
use VFSTrait;
|
|
use AppMockTrait;
|
|
|
|
/**
|
|
* @var array The default argv for a Console Instance
|
|
*/
|
|
protected $consoleArgv = [ 'consoleTest.php' ];
|
|
|
|
protected function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
if (!getenv('MYSQL_DATABASE')) {
|
|
$this->markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.');
|
|
}
|
|
|
|
Intercept::setUp();
|
|
|
|
$this->setUpVfsDir();
|
|
$configMock = \Mockery::mock(Configuration::class);
|
|
$this->mockApp($this->root, $configMock);
|
|
$profileMock = \Mockery::mock(Profiler::class);
|
|
$this->app->shouldReceive('getProfiler')->andReturn($profileMock);
|
|
}
|
|
|
|
/**
|
|
* Dumps the execution of an console output to a string and returns it
|
|
*
|
|
* @param Console $console The current console instance
|
|
*
|
|
* @return string the output of the execution
|
|
*/
|
|
protected function dumpExecute($console)
|
|
{
|
|
Intercept::reset();
|
|
$console->execute();
|
|
$returnStr = Intercept::$cache;
|
|
Intercept::reset();
|
|
|
|
return $returnStr;
|
|
}
|
|
}
|