mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 09:16:10 +01:00
68 lines
2 KiB
PHP
68 lines
2 KiB
PHP
|
<?php
|
||
|
namespace Wrm\Events\Tests\Unit\Controller;
|
||
|
|
||
|
/**
|
||
|
* Test case.
|
||
|
*
|
||
|
* @author Dirk Koritnik <koritnik@werkraum-media.de>
|
||
|
*/
|
||
|
class DateControllerTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var \Wrm\Events\Controller\DateController
|
||
|
*/
|
||
|
protected $subject = null;
|
||
|
|
||
|
protected function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->subject = $this->getMockBuilder(\Wrm\Events\Controller\DateController::class)
|
||
|
->setMethods(['redirect', 'forward', 'addFlashMessage'])
|
||
|
->disableOriginalConstructor()
|
||
|
->getMock();
|
||
|
}
|
||
|
|
||
|
protected function tearDown()
|
||
|
{
|
||
|
parent::tearDown();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function listActionFetchesAllDatesFromRepositoryAndAssignsThemToView()
|
||
|
{
|
||
|
|
||
|
$allDates = $this->getMockBuilder(\TYPO3\CMS\Extbase\Persistence\ObjectStorage::class)
|
||
|
->disableOriginalConstructor()
|
||
|
->getMock();
|
||
|
|
||
|
$dateRepository = $this->getMockBuilder(\::class)
|
||
|
->setMethods(['findAll'])
|
||
|
->disableOriginalConstructor()
|
||
|
->getMock();
|
||
|
$dateRepository->expects(self::once())->method('findAll')->will(self::returnValue($allDates));
|
||
|
$this->inject($this->subject, 'dateRepository', $dateRepository);
|
||
|
|
||
|
$view = $this->getMockBuilder(\TYPO3\CMS\Extbase\Mvc\View\ViewInterface::class)->getMock();
|
||
|
$view->expects(self::once())->method('assign')->with('dates', $allDates);
|
||
|
$this->inject($this->subject, 'view', $view);
|
||
|
|
||
|
$this->subject->listAction();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function showActionAssignsTheGivenDateToView()
|
||
|
{
|
||
|
$date = new \Wrm\Events\Domain\Model\Date();
|
||
|
|
||
|
$view = $this->getMockBuilder(\TYPO3\CMS\Extbase\Mvc\View\ViewInterface::class)->getMock();
|
||
|
$this->inject($this->subject, 'view', $view);
|
||
|
$view->expects(self::once())->method('assign')->with('date', $date);
|
||
|
|
||
|
$this->subject->showAction($date);
|
||
|
}
|
||
|
}
|