shlink/module/Core/test/Exception/ValidationExceptionTest.php

53 lines
1.5 KiB
PHP
Raw Normal View History

2019-08-08 17:20:37 +03:00
<?php
2019-10-05 18:26:10 +03:00
2019-08-08 17:20:37 +03:00
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Core\Exception;
use Fig\Http\Message\StatusCodeInterface;
2019-08-08 17:20:37 +03:00
use LogicException;
use PHPUnit\Framework\TestCase;
use RuntimeException;
use Shlinkio\Shlink\Core\Exception\ValidationException;
use Throwable;
use Zend\InputFilter\InputFilterInterface;
use function print_r;
class ValidationExceptionTest extends TestCase
{
/**
* @test
* @dataProvider provideExceptions
*/
public function createsExceptionFromInputFilter(?Throwable $prev): void
{
$invalidData = [
'foo' => 'bar',
'something' => ['baz', 'foo'],
];
$barValue = print_r(['baz', 'foo'], true);
$expectedStringRepresentation = <<<EOT
2019-08-08 17:20:37 +03:00
'foo' => bar
'something' => {$barValue}
EOT;
$inputFilter = $this->prophesize(InputFilterInterface::class);
$getMessages = $inputFilter->getMessages()->willReturn($invalidData);
$e = ValidationException::fromInputFilter($inputFilter->reveal());
$this->assertEquals($invalidData, $e->getInvalidElements());
$this->assertEquals('Provided data is not valid', $e->getMessage());
$this->assertEquals(StatusCodeInterface::STATUS_BAD_REQUEST, $e->getCode());
2019-08-08 17:20:37 +03:00
$this->assertEquals($prev, $e->getPrevious());
$this->assertStringContainsString($expectedStringRepresentation, (string) $e);
2019-08-08 17:20:37 +03:00
$getMessages->shouldHaveBeenCalledOnce();
}
public function provideExceptions(): iterable
{
return [[null, new RuntimeException(), new LogicException()]];
}
}