mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace tests\Integration\Domain\ParameterManagement;
 | 
						|
 | 
						|
use Infinito\Domain\ParameterManagement\ParameterFactory;
 | 
						|
use Infinito\Domain\ParameterManagement\ValidGetParametersService;
 | 
						|
use Infinito\Exception\NotDefinedException;
 | 
						|
use Infinito\Exception\UnvalidParameterException;
 | 
						|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
 | 
						|
use Symfony\Component\HttpFoundation\Request;
 | 
						|
use Symfony\Component\HttpFoundation\RequestStack;
 | 
						|
use Symfony\Component\Validator\Validator\ValidatorInterface;
 | 
						|
use Infinito\Domain\ParameterManagement\ValidGetParameterServiceInterface;
 | 
						|
use Infinito\Domain\ParameterManagement\Parameter\VersionParameter;
 | 
						|
use Infinito\Domain\ParameterManagement\ParameterFactoryInterface;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author kevinfrantz
 | 
						|
 */
 | 
						|
class ValidGetParameterServiceTest extends KernelTestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var Request
 | 
						|
     */
 | 
						|
    private $currentRequest;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var RequestStack
 | 
						|
     */
 | 
						|
    private $requestStack;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var ValidGetParameterServiceInterface
 | 
						|
     */
 | 
						|
    private $validGetParameterService;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var ParameterFactoryInterface
 | 
						|
     */
 | 
						|
    private $parameterFactory;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var ValidatorInterface
 | 
						|
     */
 | 
						|
    private $validator;
 | 
						|
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
        self::bootKernel();
 | 
						|
        $this->currentRequest = new Request();
 | 
						|
        $this->requestStack = $this->createMock(RequestStack::class);
 | 
						|
        $this->requestStack->method('getCurrentRequest')->willReturn($this->currentRequest);
 | 
						|
        $this->parameterFactory = new ParameterFactory();
 | 
						|
        $this->validator = self::$container->get(ValidatorInterface::class);
 | 
						|
        $this->validGetParameterService = new ValidGetParametersService($this->requestStack, $this->parameterFactory, $this->validator);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testVersionCorrectType(): void
 | 
						|
    {
 | 
						|
        $key = VersionParameter::getKey();
 | 
						|
        $value = 123;
 | 
						|
        $this->currentRequest->query->set($key, $value);
 | 
						|
        $result = $this->validGetParameterService->getParameter($key);
 | 
						|
        $this->assertEquals($value, $result);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testVersionWrongType(): void
 | 
						|
    {
 | 
						|
        $key = VersionParameter::getKey();
 | 
						|
        $this->currentRequest->query->set($key, 'adasdas');
 | 
						|
        $this->expectException(UnvalidParameterException::class);
 | 
						|
        $this->validGetParameterService->getParameter($key);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testConstructor(): void
 | 
						|
    {
 | 
						|
        $this->expectException(NotDefinedException::class);
 | 
						|
        $this->currentRequest->query->set('asdwgwe', 'adasa');
 | 
						|
        new ValidGetParametersService($this->requestStack, $this->parameterFactory, $this->validator);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testSetParameterException(): void
 | 
						|
    {
 | 
						|
        $this->expectException(NotDefinedException::class);
 | 
						|
        $this->validGetParameterService->getParameter(VersionParameter::getKey());
 | 
						|
    }
 | 
						|
}
 |