mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:16:13 +01:00
122 lines
3.4 KiB
PHP
122 lines
3.4 KiB
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace TTN\Tea\Tests\Unit\Controller;
|
||
|
|
||
|
use PHPUnit\Framework\MockObject\MockObject;
|
||
|
use TTN\Tea\Controller\FrontEndEditorController;
|
||
|
use TTN\Tea\Domain\Repository\Product\TeaRepository;
|
||
|
use TYPO3\CMS\Core\Context\Context;
|
||
|
use TYPO3\CMS\Core\Context\UserAspect;
|
||
|
use TYPO3\CMS\Core\Http\HtmlResponse;
|
||
|
use TYPO3\CMS\Core\Information\Typo3Version;
|
||
|
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\FrontEndEditorController
|
||
|
*/
|
||
|
final class FrontEndEditorControllerTest extends UnitTestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var FrontEndEditorController&MockObject&AccessibleObjectInterface
|
||
|
*/
|
||
|
private FrontEndEditorController $subject;
|
||
|
|
||
|
/**
|
||
|
* @var TemplateView&MockObject
|
||
|
*/
|
||
|
private TemplateView $viewMock;
|
||
|
|
||
|
private Context $context;
|
||
|
|
||
|
/**
|
||
|
* @var TeaRepository&MockObject
|
||
|
*/
|
||
|
private TeaRepository $teaRepositoryMock;
|
||
|
|
||
|
protected function setUp(): void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->context = new Context();
|
||
|
$this->teaRepositoryMock = $this->createMock(TeaRepository::class);
|
||
|
|
||
|
// We need to create an accessible mock in order to be able to set the protected `view`.
|
||
|
$methodsToMock = ['htmlResponse', 'redirect', 'redirectToUri'];
|
||
|
if ((new Typo3Version())->getMajorVersion() <= 11) {
|
||
|
$methodsToMock[] = 'forward';
|
||
|
}
|
||
|
$this->subject = $this->getAccessibleMock(
|
||
|
FrontEndEditorController::class,
|
||
|
$methodsToMock,
|
||
|
[$this->context, $this->teaRepositoryMock]
|
||
|
);
|
||
|
|
||
|
$this->viewMock = $this->createMock(TemplateView::class);
|
||
|
$this->subject->_set('view', $this->viewMock);
|
||
|
|
||
|
$responseStub = $this->createStub(HtmlResponse::class);
|
||
|
$this->subject->method('htmlResponse')->willReturn($responseStub);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int<0, max> $userUid
|
||
|
*/
|
||
|
private function setUidOfLoggedInUser(int $userUid): void
|
||
|
{
|
||
|
$userAspectMock = $this->createMock(UserAspect::class);
|
||
|
$userAspectMock->method('get')->with('id')->willReturn($userUid);
|
||
|
$this->context->setAspect('frontend.user', $userAspectMock);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function isActionController(): void
|
||
|
{
|
||
|
self::assertInstanceOf(ActionController::class, $this->subject);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function indexActionForNoLoggedInUserAssignsNothingToView(): void
|
||
|
{
|
||
|
$this->setUidOfLoggedInUser(0);
|
||
|
|
||
|
$this->viewMock->expects(self::never())->method('assign');
|
||
|
|
||
|
$this->subject->indexAction();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function indexActionForLoggedInUserAssignsTeasOwnedByTheLoggedInUserToView(): void
|
||
|
{
|
||
|
$userUid = 5;
|
||
|
$this->setUidOfLoggedInUser($userUid);
|
||
|
|
||
|
$teas = $this->createMock(QueryResultInterface::class);
|
||
|
$this->teaRepositoryMock->method('findByOwnerUid')->with($userUid)->willReturn($teas);
|
||
|
$this->viewMock->expects(self::once())->method('assign')->with('teas', $teas);
|
||
|
|
||
|
$this->subject->indexAction();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function indexActionReturnsHtmlResponse(): void
|
||
|
{
|
||
|
$result = $this->subject->indexAction();
|
||
|
|
||
|
self::assertInstanceOf(HtmlResponse::class, $result);
|
||
|
}
|
||
|
}
|