mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 03:36:12 +01:00
e360b1ea5a
Now all methods that conceptually should not be part of a controller (and that hence must never be executed in a unit test) are mocked for consistency. Also sort the method names. Fixes #446
86 lines
2.4 KiB
PHP
86 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace TTN\Tea\Tests\Unit\Controller;
|
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Prophecy\Prophecy\ObjectProphecy;
|
|
use Prophecy\Prophecy\ProphecySubjectInterface;
|
|
use TTN\Tea\Controller\TeaController;
|
|
use TTN\Tea\Domain\Model\Product\Tea;
|
|
use TTN\Tea\Domain\Repository\Product\TeaRepository;
|
|
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
|
|
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
|
|
use TYPO3\CMS\Fluid\View\TemplateView;
|
|
use TYPO3\TestingFramework\Core\AccessibleObjectInterface;
|
|
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
|
|
|
|
/**
|
|
* @covers \TTN\Tea\Controller\TeaController
|
|
*/
|
|
class TeaControllerTest extends UnitTestCase
|
|
{
|
|
/**
|
|
* @var TeaController&MockObject&AccessibleObjectInterface
|
|
*/
|
|
private $subject;
|
|
|
|
/**
|
|
* @var ObjectProphecy<TemplateView>
|
|
*/
|
|
private $viewProphecy;
|
|
|
|
/**
|
|
* @var ObjectProphecy<TeaRepository>
|
|
*/
|
|
private $teaRepositoryProphecy;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
// We need to create an accessible mock in order to be able to set the protected `view`.
|
|
$this->subject = $this->getAccessibleMock(TeaController::class, ['forward', 'redirect', 'redirectToUri']);
|
|
|
|
$this->viewProphecy = $this->prophesize(TemplateView::class);
|
|
$view = $this->viewProphecy->reveal();
|
|
$this->subject->_set('view', $view);
|
|
|
|
$this->teaRepositoryProphecy = $this->prophesize(TeaRepository::class);
|
|
/** @var TeaRepository&ProphecySubjectInterface $teaRepository */
|
|
$teaRepository = $this->teaRepositoryProphecy->reveal();
|
|
$this->subject->injectTeaRepository($teaRepository);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function isActionController(): void
|
|
{
|
|
self::assertInstanceOf(ActionController::class, $this->subject);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function indexActionAssignsAllTeaAsTeasToView(): void
|
|
{
|
|
$teas = $this->prophesize(QueryResultInterface::class)->reveal();
|
|
$this->teaRepositoryProphecy->findAll()->willReturn($teas);
|
|
$this->viewProphecy->assign('teas', $teas)->shouldBeCalled();
|
|
|
|
$this->subject->indexAction();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function showActionAssignsPassedTeaAsTeaToView(): void
|
|
{
|
|
$tea = new Tea();
|
|
$this->viewProphecy->assign('tea', $tea)->shouldBeCalled();
|
|
|
|
$this->subject->showAction($tea);
|
|
}
|
|
}
|