framework/tests/integration/extenders/RoutesTest.php
2020-02-08 00:04:32 +01:00

59 lines
1.4 KiB
PHP

<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Tests\integration\extenders;
use Flarum\Extend;
use Flarum\Tests\integration\TestCase;
use Laminas\Diactoros\Response\TextResponse;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\RequestHandlerInterface;
class RoutesTest extends TestCase
{
/**
* @test
*/
public function custom_route_does_not_exist_by_default()
{
$response = $this->send(
$this->request('GET', '/custom')
);
$this->assertEquals(404, $response->getStatusCode());
}
/**
* @test
*/
public function custom_route_can_be_added_by_extender()
{
$this->extend(
(new Extend\Routes('forum'))
->get('/custom', 'custom', CustomRoute::class)
);
$response = $this->send(
$this->request('GET', '/custom')
);
$this->assertEquals(200, $response->getStatusCode());
$this->assertEquals('Hello Flarumites!', $response->getBody());
}
}
class CustomRoute implements RequestHandlerInterface
{
public function handle(ServerRequestInterface $request): ResponseInterface
{
return new TextResponse('Hello Flarumites!');
}
}