mirror of
https://github.com/flarum/framework.git
synced 2025-02-21 08:39:25 +08:00
Added validation handler tests
This commit is contained in:
parent
74c756a8ba
commit
8843d84117
@ -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());
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user