2019-01-23 14:28:15 +00:00
|
|
|
<?php
|
2019-02-16 17:51:24 +00:00
|
|
|
|
2019-01-23 14:28:15 +00:00
|
|
|
namespace ActivityPub\Test\Http;
|
|
|
|
|
2019-01-23 14:43:23 +00:00
|
|
|
use ActivityPub\Controllers\GetController;
|
|
|
|
use ActivityPub\Controllers\PostController;
|
|
|
|
use ActivityPub\Http\Router;
|
2019-02-07 03:48:00 +00:00
|
|
|
use ActivityPub\Test\TestConfig\APTestCase;
|
2019-01-23 14:43:23 +00:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
|
|
|
|
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
|
2019-02-07 03:48:00 +00:00
|
|
|
use Symfony\Component\HttpKernel\HttpKernel;
|
2019-01-23 14:43:23 +00:00
|
|
|
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
2019-01-23 14:28:15 +00:00
|
|
|
|
2019-02-07 03:48:00 +00:00
|
|
|
class RouterTest extends APTestCase
|
2019-01-23 14:28:15 +00:00
|
|
|
{
|
2019-01-23 14:43:23 +00:00
|
|
|
/**
|
|
|
|
* @var Router
|
|
|
|
*/
|
|
|
|
private $router;
|
|
|
|
|
|
|
|
private $getController;
|
|
|
|
private $postController;
|
|
|
|
private $kernel;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
2019-02-07 03:48:00 +00:00
|
|
|
$this->getController = $this->getMock( GetController::class );
|
|
|
|
$this->postController = $this->getMock( PostController::class );
|
2019-01-23 14:43:23 +00:00
|
|
|
$this->router = new Router( $this->getController, $this->postController );
|
2019-02-07 03:48:00 +00:00
|
|
|
$this->kernel = $this->getMock( HttpKernel::class );
|
2019-01-23 14:43:23 +00:00
|
|
|
}
|
2019-02-16 17:51:24 +00:00
|
|
|
|
2019-01-23 14:28:15 +00:00
|
|
|
public function testRouter()
|
|
|
|
{
|
2019-01-23 14:43:23 +00:00
|
|
|
$testCases = array(
|
|
|
|
array(
|
|
|
|
'id' => 'GET',
|
|
|
|
'request' => Request::create( 'https://foo.com', Request::METHOD_GET ),
|
|
|
|
'expectedController' => array( $this->getController, 'handle' ),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => 'POST',
|
|
|
|
'request' => Request::create( 'https://foo.com', Request::METHOD_POST ),
|
|
|
|
'expectedController' => array( $this->postController, 'handle' ),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => 'MethodNotAllowed',
|
|
|
|
'request' => Request::create( 'https://foo.com', Request::METHOD_PUT ),
|
|
|
|
'expectedException' => MethodNotAllowedHttpException::class,
|
|
|
|
),
|
|
|
|
);
|
2019-02-16 17:51:24 +00:00
|
|
|
foreach ( $testCases as $testCase ) {
|
2019-01-23 14:43:23 +00:00
|
|
|
$request = $testCase['request'];
|
|
|
|
$event = new GetResponseEvent(
|
|
|
|
$this->kernel, $request, HttpKernelInterface::MASTER_REQUEST
|
|
|
|
);
|
|
|
|
if ( array_key_exists( 'expectedException', $testCase ) ) {
|
2019-02-07 03:48:00 +00:00
|
|
|
$this->setExpectedException( $testCase['expectedException'] );
|
2019-01-23 14:43:23 +00:00
|
|
|
}
|
|
|
|
$this->router->route( $event );
|
|
|
|
$this->assertEquals(
|
|
|
|
$testCase['expectedController'],
|
|
|
|
$request->attributes->get( '_controller' ),
|
|
|
|
"Error on test $testCase[id]"
|
|
|
|
);
|
|
|
|
}
|
2019-01-23 14:28:15 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-07 03:48:00 +00:00
|
|
|
|