2018-08-17 15:41:46 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\src\Core\Console;
|
|
|
|
|
2018-10-31 05:16:15 -04:00
|
|
|
use Asika\SimpleConsole\Console;
|
2019-02-10 13:52:21 -05:00
|
|
|
use Friendica\Core\Config\Configuration;
|
2019-02-02 13:21:48 -05:00
|
|
|
use Friendica\Test\MockedTest;
|
2018-10-31 05:16:15 -04:00
|
|
|
use Friendica\Test\Util\AppMockTrait;
|
2018-08-17 15:41:46 -04:00
|
|
|
use Friendica\Test\Util\Intercept;
|
2018-10-06 10:27:20 -04:00
|
|
|
use Friendica\Test\Util\VFSTrait;
|
2019-02-16 19:18:21 -05:00
|
|
|
use Friendica\Util\Profiler;
|
2018-08-17 15:41:46 -04:00
|
|
|
|
2019-02-02 13:21:48 -05:00
|
|
|
abstract class ConsoleTest extends MockedTest
|
2018-08-17 15:41:46 -04:00
|
|
|
{
|
2018-10-06 10:27:20 -04:00
|
|
|
use VFSTrait;
|
2018-10-31 05:16:15 -04:00
|
|
|
use AppMockTrait;
|
2018-08-17 15:41:46 -04:00
|
|
|
|
2018-10-31 06:57:51 -04:00
|
|
|
/**
|
|
|
|
* @var array The default argv for a Console Instance
|
|
|
|
*/
|
|
|
|
protected $consoleArgv = [ 'consoleTest.php' ];
|
2018-08-17 15:41:46 -04:00
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
if (!getenv('MYSQL_DATABASE')) {
|
|
|
|
$this->markTestSkipped('Please set the MYSQL_* environment variables to your test database credentials.');
|
|
|
|
}
|
|
|
|
|
2018-10-31 05:16:15 -04:00
|
|
|
Intercept::setUp();
|
|
|
|
|
2018-08-27 00:15:55 -04:00
|
|
|
$this->setUpVfsDir();
|
2019-02-10 13:52:21 -05:00
|
|
|
$configMock = \Mockery::mock(Configuration::class);
|
2019-02-03 18:04:16 -05:00
|
|
|
$this->mockApp($this->root, $configMock);
|
2019-02-16 19:18:21 -05:00
|
|
|
$profileMock = \Mockery::mock(Profiler::class);
|
|
|
|
$this->app->shouldReceive('getProfiler')->andReturn($profileMock);
|
2018-10-31 05:16:15 -04:00
|
|
|
}
|
2018-08-27 00:15:55 -04:00
|
|
|
|
2018-10-31 05:16:15 -04:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2018-08-17 15:41:46 -04:00
|
|
|
Intercept::reset();
|
2018-10-31 05:16:15 -04:00
|
|
|
$console->execute();
|
2018-08-17 15:41:46 -04:00
|
|
|
$returnStr = Intercept::$cache;
|
|
|
|
Intercept::reset();
|
2018-08-27 00:15:55 -04:00
|
|
|
|
2018-10-31 05:16:15 -04:00
|
|
|
return $returnStr;
|
2018-08-27 00:15:55 -04:00
|
|
|
}
|
2018-08-17 15:41:46 -04:00
|
|
|
}
|