mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
73 lines
2.3 KiB
PHP
73 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace tests\Unit\Domain\SecureCRUDManagement\CRUD\Read;
|
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Domain\ActionManagement\Read\ReadAction;
|
|
use App\Domain\ActionManagement\ActionServiceInterface;
|
|
use App\Domain\ActionManagement\Read\ReadActionInterface;
|
|
use App\Exception\NotSecureException;
|
|
use App\Domain\RequestManagement\Action\RequestedActionInterface;
|
|
use App\Domain\RequestManagement\Entity\RequestedEntityInterface;
|
|
use App\Entity\Source\SourceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
class ReadSourceActionTest extends TestCase
|
|
{
|
|
/**
|
|
* @var EntityManagerInterface
|
|
*/
|
|
private $entityManager;
|
|
|
|
/**
|
|
* @var ActionServiceInterface
|
|
*/
|
|
private $actionService;
|
|
|
|
/**
|
|
* @var ReadActionInterface
|
|
*/
|
|
private $sourceReadAction;
|
|
|
|
/**
|
|
* @var RequestedEntityInterface
|
|
*/
|
|
private $requestedEntity;
|
|
|
|
/**
|
|
* @var SourceInterface
|
|
*/
|
|
private $entity;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->entity = $this->createMock(SourceInterface::class);
|
|
$this->requestedEntity = $this->createMock(RequestedEntityInterface::class);
|
|
$this->requestedEntity->method('getEntity')->willReturn($this->entity);
|
|
$this->entityManager = $this->createMock(EntityManagerInterface::class);
|
|
$this->requestedAction = $this->createMock(RequestedActionInterface::class);
|
|
$this->requestedAction->method('getRequestedEntity')->willReturn($this->requestedEntity);
|
|
$this->actionService = $this->createMock(ActionServiceInterface::class);
|
|
$this->actionService->method('getEntityManager')->willReturn($this->entityManager);
|
|
$this->actionService->method('getRequestedAction')->willReturn($this->requestedAction);
|
|
$this->sourceReadAction = new ReadAction($this->actionService);
|
|
}
|
|
|
|
public function testNotSecureException(): void
|
|
{
|
|
$this->actionService->method('isRequestedActionSecure')->willReturn(false);
|
|
$this->expectException(NotSecureException::class);
|
|
$this->sourceReadAction->execute();
|
|
}
|
|
|
|
public function testGranted(): void
|
|
{
|
|
$this->actionService->method('isRequestedActionSecure')->willReturn(true);
|
|
$result = $this->sourceReadAction->execute();
|
|
$this->assertEquals($this->entity, $result);
|
|
}
|
|
}
|