framework/tests/unit/Api/ExceptionHandler/FloodingExceptionHandlerTest.php

47 lines
1.2 KiB
PHP
Raw Normal View History

<?php
2015-12-05 20:01:33 +08:00
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Tests\unit\Api\ExceptionHandler;
2015-12-05 20:01:33 +08:00
use Exception;
2017-06-24 17:25:07 +08:00
use Flarum\Api\ExceptionHandler\FloodingExceptionHandler;
2017-06-24 19:43:33 +08:00
use Flarum\Post\Exception\FloodingException;
use PHPUnit\Framework\TestCase;
class FloodingExceptionHandlerTest extends TestCase
{
private $handler;
public function setUp()
{
$this->handler = new FloodingExceptionHandler;
}
public function test_it_handles_recognisable_exceptions()
{
2015-12-05 20:01:33 +08:00
$this->assertFalse($this->handler->manages(new Exception));
$this->assertTrue($this->handler->manages(new FloodingException));
}
public function test_it_provides_expected_output()
{
$result = $this->handler->handle(new FloodingException);
$this->assertEquals(429, $result->getStatus());
2015-12-05 20:01:33 +08:00
$this->assertEquals([
[
'status' => '429',
'code' => 'too_many_requests'
]
], $result->getErrors());
}
}