Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Command/Task/SchedulerRunTest.php
2015-06-15 19:30:51 +02:00

36 lines
1.2 KiB
PHP

<?php
namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\SchedulerRun;
/**
* @group functional
* @group legacy
*/
class SchedulerRunTest extends \PhraseanetTestCase
{
public function testRunWithoutProblems()
{
self::$DI['cli']['task-manager'] = $this->getMockBuilder('Alchemy\TaskManager\TaskManager')
->disableOriginalConstructor()
->getMock();
self::$DI['cli']['task-manager']->expects($this->once())
->method('addSubscriber')
->with($this->isInstanceOf('Alchemy\TaskManager\Event\TaskManagerSubscriber\LockFileSubscriber'));
self::$DI['cli']['task-manager']->expects($this->once())
->method('start');
self::$DI['cli']['monolog'] = self::$DI['cli']->share(function () {
return $this->createMonologMock();
});
$input = $this->getMock('Symfony\Component\Console\Input\InputInterface');
$output = $this->getMock('Symfony\Component\Console\Output\OutputInterface');
$command = new SchedulerRun();
$command->setContainer(self::$DI['cli']);
$command->execute($input, $output);
}
}