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-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;
|
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();
|
|
|
|
|
2018-10-31 05:16:15 -04:00
|
|
|
Intercept::setUp();
|
|
|
|
|
2018-08-27 00:15:55 -04:00
|
|
|
$this->setUpVfsDir();
|
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
|
|
|
}
|