mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed domain DataAccessManagement to DataAccess
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
namespace tests\Integration\Domain\AccessManagement;
|
||||
|
||||
use Infinito\DBAL\Types\ActionType;
|
||||
use Infinito\Domain\DataAccess\ActionsResultsDAOService;
|
||||
use Infinito\Entity\EntityInterface;
|
||||
use Infinito\Logic\Result\ResultInterface;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Exception\Collection\ContainsElementException;
|
||||
use Infinito\Exception\Collection\NotSetElementException;
|
||||
use Infinito\Exception\Type\InvalidChoiceTypeException;
|
||||
use Infinito\Domain\DataAccess\ActionsResultsDAOServiceInterface;
|
||||
use Infinito\Exception\Validation\ValueInvalidException;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class ActionResultsDAOServiceTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var ActionsResultsDAOServiceInterface
|
||||
*/
|
||||
private $actionsResultsDAO;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \PHPUnit\Framework\TestCase::setUp()
|
||||
*/
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->actionsResultsDAO = new ActionsResultsDAOService();
|
||||
}
|
||||
|
||||
public function testNotValidChoiceSetException(): void
|
||||
{
|
||||
$this->expectException(InvalidChoiceTypeException::class);
|
||||
$this->actionsResultsDAO->setData('1231232N', ' ');
|
||||
}
|
||||
|
||||
public function testNotCorrectInstanceSetException(): void
|
||||
{
|
||||
$this->expectException(ValueInvalidException::class);
|
||||
$data = new class() {
|
||||
};
|
||||
$this->actionsResultsDAO->setData(ActionType::READ, $data);
|
||||
}
|
||||
|
||||
public function testNotValidChoiceGetException(): void
|
||||
{
|
||||
$this->expectException(InvalidChoiceTypeException::class);
|
||||
$this->actionsResultsDAO->getData('1231232N');
|
||||
}
|
||||
|
||||
public function testNotSetGetException(): void
|
||||
{
|
||||
$this->expectException(NotSetElementException::class);
|
||||
$this->actionsResultsDAO->getData(ActionType::READ);
|
||||
}
|
||||
|
||||
private function getActionTypeResultDataMock(string $actionType)
|
||||
{
|
||||
switch ($actionType) {
|
||||
case ActionType::READ:
|
||||
case ActionType::CREATE:
|
||||
case ActionType::UPDATE:
|
||||
return $this->createMock(EntityInterface::class);
|
||||
case ActionType::DELETE:
|
||||
return null;
|
||||
case ActionType::EXECUTE:
|
||||
return $this->createMock(ResultInterface::class);
|
||||
}
|
||||
}
|
||||
|
||||
public function testAccessors(): void
|
||||
{
|
||||
foreach (ActionType::getValues() as $actionType) {
|
||||
$this->assertFalse($this->actionsResultsDAO->isDataStored($actionType));
|
||||
$resultData = $this->getActionTypeResultDataMock($actionType);
|
||||
$this->assertNull($this->actionsResultsDAO->setData($actionType, $resultData));
|
||||
$this->assertTrue($this->actionsResultsDAO->isDataStored($actionType));
|
||||
$this->assertEquals($resultData, $this->actionsResultsDAO->getData($actionType));
|
||||
}
|
||||
$this->expectException(ContainsElementException::class);
|
||||
$this->assertNull($this->actionsResultsDAO->setData($actionType, $resultData));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user