Files
Phraseanet/tests/module/console/module_console_tasklistTest.php
Romain Neutron 26aca64645 Upgrade tests
2012-07-27 18:30:18 +02:00

37 lines
1.2 KiB
PHP

<?php
require_once __DIR__ . '/../../PhraseanetWebTestCaseAuthenticatedAbstract.class.inc';
use Alchemy\Phrasea\CLI;
use Symfony\Component\Console\Tester\CommandTester;
class module_console_tasklistTest extends PHPUnit_Framework_TestCase
{
/**
* @covers module_console_tasklist::execute
*/
public function testExecute()
{
// mock the Kernel or create one depending on your needs
$application = new CLI('test');
$application->command(new module_console_tasklist('task:list'));
$command = $application['console']->find('task:list');
$commandTester = new CommandTester($command);
$commandTester->execute(array('command' => $command->getName()));
$task_manager = new task_manager(appbox::get_instance(\bootstrap::getCore()));
$lines = explode("\n", trim($commandTester->getDisplay()));
if (count($task_manager->getTasks()) > 0) {
$this->assertEquals(count($task_manager->getTasks()), count($lines));
foreach ($task_manager->getTasks() as $task) {
$this->assertTrue(strpos($commandTester->getDisplay(), $task->getTitle()) !== false);
}
} else {
$this->assertEquals(1, count($lines));
}
}
}