mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	Implemented RightLayerCombination
This commit is contained in:
		@@ -0,0 +1,56 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace tests\Unit\Domain\RightManagement;
 | 
			
		||||
 | 
			
		||||
use PHPUnit\Framework\TestCase;
 | 
			
		||||
use App\Domain\RightManagement\RightLayerCombinationServiceInterface;
 | 
			
		||||
use App\Domain\RightManagement\RightLayerCombinationService;
 | 
			
		||||
use App\DBAL\Types\Meta\Right\CRUDType;
 | 
			
		||||
use App\DBAL\Types\Meta\Right\LayerType;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * @author kevinfrantz
 | 
			
		||||
 */
 | 
			
		||||
class RightLayerCombinationServiceTest extends TestCase
 | 
			
		||||
{
 | 
			
		||||
    /**
 | 
			
		||||
     * @var RightLayerCombinationServiceInterface
 | 
			
		||||
     */
 | 
			
		||||
    public $rightLayerCombinationService;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * {@inheritdoc}
 | 
			
		||||
     *
 | 
			
		||||
     * @see \PHPUnit\Framework\TestCase::setUp()
 | 
			
		||||
     */
 | 
			
		||||
    public function setUp()
 | 
			
		||||
    {
 | 
			
		||||
        $this->rightLayerCombinationService = new RightLayerCombinationService();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testBySource(): void
 | 
			
		||||
    {
 | 
			
		||||
        foreach (CRUDType::getChoices() as $crudType) {
 | 
			
		||||
            $layers = $this->rightLayerCombinationService->getPossibleLayers($crudType);
 | 
			
		||||
            $this->assertContains(LayerType::SOURCE, $layers);
 | 
			
		||||
            $sourceCruds = $this->rightLayerCombinationService->getPossibleCruds(LayerType::SOURCE);
 | 
			
		||||
            $this->assertContains($crudType, $sourceCruds);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public function testByLaw(): void
 | 
			
		||||
    {
 | 
			
		||||
        foreach ([CRUDType::DELETE, CRUDType::CREATE] as $crudType) {
 | 
			
		||||
            $layers = $this->rightLayerCombinationService->getPossibleLayers($crudType);
 | 
			
		||||
            $this->assertNotContains(LayerType::LAW, $layers);
 | 
			
		||||
            $sourceCruds = $this->rightLayerCombinationService->getPossibleCruds(LayerType::LAW);
 | 
			
		||||
            $this->assertNotContains($crudType, $sourceCruds);
 | 
			
		||||
        }
 | 
			
		||||
        foreach ([CRUDType::READ, CRUDType::UPDATE] as $crudType) {
 | 
			
		||||
            $layers = $this->rightLayerCombinationService->getPossibleLayers($crudType);
 | 
			
		||||
            $this->assertContains(LayerType::LAW, $layers);
 | 
			
		||||
            $sourceCruds = $this->rightLayerCombinationService->getPossibleCruds(LayerType::LAW);
 | 
			
		||||
            $this->assertContains($crudType, $sourceCruds);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user