mirror of
https://github.com/flarum/core.git
synced 2025-07-11 20:06:23 +02:00
Added validation handler tests
This commit is contained in:
30
tests/Flarum/Api/Handler/ValidationExceptionHandlerTest.php
Normal file
30
tests/Flarum/Api/Handler/ValidationExceptionHandlerTest.php
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
<?php
|
||||||
|
namespace Tests\Flarum\Api\Handler;
|
||||||
|
|
||||||
|
use Flarum\Api\Handler\ValidationExceptionHandler;
|
||||||
|
use Flarum\Core\Exception\ValidationException;
|
||||||
|
use Tests\Test\TestCase;
|
||||||
|
|
||||||
|
class ValidationExceptionHandlerTest extends TestCase
|
||||||
|
{
|
||||||
|
private $handler;
|
||||||
|
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
$this->handler = new ValidationExceptionHandler;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_it_handles_recognisable_exceptions()
|
||||||
|
{
|
||||||
|
$this->assertFalse($this->handler->manages(new \Exception));
|
||||||
|
$this->assertTrue($this->handler->manages(new ValidationException([])));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_managing_exceptions()
|
||||||
|
{
|
||||||
|
$response = $this->handler->handle(new ValidationException(['There was an error']));
|
||||||
|
|
||||||
|
$this->assertEquals(422, $response->getStatus());
|
||||||
|
$this->assertEquals([['source' => ['pointer' => '/data/attributes/0'], 'detail' => 'There was an error']], $response->getErrors());
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user