2015-09-14 10:54:50 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use AnimeClient\Base\Router;
|
|
|
|
use AnimeClient\Base\Config;
|
|
|
|
use AnimeClient\Base\Container;
|
2015-09-14 15:49:20 -04:00
|
|
|
use AnimeClient\Base\UrlGenerator;
|
2015-09-14 10:54:50 -04:00
|
|
|
use Aura\Web\WebFactory;
|
|
|
|
use Aura\Router\RouterFactory;
|
|
|
|
|
|
|
|
class RouterTest extends AnimeClient_TestCase {
|
|
|
|
|
|
|
|
protected $container;
|
|
|
|
protected $router;
|
|
|
|
protected $config;
|
|
|
|
|
|
|
|
protected function _set_up($config, $uri, $host)
|
|
|
|
{
|
|
|
|
// Set up the environment
|
|
|
|
$_SERVER = array_merge($_SERVER, [
|
|
|
|
'REQUEST_METHOD' => 'GET',
|
|
|
|
'REQUEST_URI' => $uri,
|
|
|
|
'PATH_INFO' => $uri,
|
|
|
|
'HTTP_HOST' => $host,
|
|
|
|
'SERVER_NAME' => $host
|
|
|
|
]);
|
|
|
|
|
|
|
|
$router_factory = new RouterFactory();
|
|
|
|
$web_factory = new WebFactory([
|
|
|
|
'_GET' => [],
|
|
|
|
'_POST' => [],
|
|
|
|
'_COOKIE' => [],
|
|
|
|
'_SERVER' => $_SERVER,
|
|
|
|
'_FILES' => []
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Add the appropriate objects to the container
|
|
|
|
$this->container = new Container([
|
|
|
|
'config' => new Config($config),
|
|
|
|
'request' => $web_factory->newRequest(),
|
|
|
|
'response' => $web_factory->newResponse(),
|
|
|
|
'aura-router' => $router_factory->newInstance(),
|
|
|
|
'error-handler' => new MockErrorHandler()
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->router = new Router($this->container);
|
|
|
|
$this->config = $this->container->get('config');
|
2015-09-14 15:49:20 -04:00
|
|
|
$this->urlGenerator = new UrlGenerator($this->container);
|
|
|
|
$this->container->set('url-generator', $this->urlGenerator);
|
2015-09-14 10:54:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRouterSanity()
|
|
|
|
{
|
|
|
|
$this->_set_up([], '/', 'localhost');
|
|
|
|
$this->assertTrue(is_object($this->router));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function dataRoute()
|
|
|
|
{
|
|
|
|
$default_config = array(
|
2015-09-14 15:49:20 -04:00
|
|
|
'routes' => [
|
|
|
|
'common' => [
|
|
|
|
'login_form' => [
|
|
|
|
'path' => '/login',
|
|
|
|
'action' => ['login'],
|
|
|
|
'verb' => 'get'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'anime' => [
|
|
|
|
'watching' => [
|
|
|
|
'path' => '/anime/watching{/view}',
|
|
|
|
'action' => ['anime_list'],
|
|
|
|
'params' => [
|
|
|
|
'type' => 'currently-watching',
|
|
|
|
'title' => WHOSE . " Anime List · Watching"
|
|
|
|
],
|
|
|
|
'tokens' => [
|
|
|
|
'view' => '[a-z_]+'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'manga' => [
|
|
|
|
'plan_to_read' => [
|
|
|
|
'path' => '/manga/plan_to_read{/view}',
|
|
|
|
'action' => ['manga_list'],
|
|
|
|
'params' => [
|
|
|
|
'type' => 'Plan to Read',
|
|
|
|
'title' => WHOSE . " Manga List · Plan to Read"
|
|
|
|
],
|
|
|
|
'tokens' => [
|
|
|
|
'view' => '[a-z_]+'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
]
|
|
|
|
],
|
2015-09-14 10:54:50 -04:00
|
|
|
'routing' => [
|
|
|
|
'anime_path' => 'anime',
|
|
|
|
'manga_path' => 'manga',
|
|
|
|
'default_list' => 'anime'
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = [
|
2015-09-14 15:49:20 -04:00
|
|
|
'anime_default_routing_manga' => array(
|
2015-09-14 10:54:50 -04:00
|
|
|
'config' => $default_config,
|
2015-09-14 15:49:20 -04:00
|
|
|
'controller' => 'manga',
|
2015-09-14 10:54:50 -04:00
|
|
|
'host' => "localhost",
|
|
|
|
'uri' => "/manga/plan_to_read",
|
|
|
|
),
|
2015-09-14 15:49:20 -04:00
|
|
|
'manga_default_routing_anime' => array(
|
2015-09-14 10:54:50 -04:00
|
|
|
'config' => $default_config,
|
2015-09-14 15:49:20 -04:00
|
|
|
'controller' => 'anime',
|
2015-09-14 10:54:50 -04:00
|
|
|
'host' => "localhost",
|
|
|
|
'uri' => "/anime/watching",
|
2015-09-14 15:49:20 -04:00
|
|
|
),
|
|
|
|
'anime_default_routing_anime' => array(
|
|
|
|
'config' => $default_config,
|
|
|
|
'controller' => 'anime',
|
|
|
|
'host' => 'localhost',
|
|
|
|
'uri' => '/anime/watching',
|
|
|
|
),
|
|
|
|
'manga_default_routing_manga' => array(
|
|
|
|
'config' => $default_config,
|
|
|
|
'controller' => 'manga',
|
|
|
|
'host' => 'localhost',
|
|
|
|
'uri' => '/manga/plan_to_read'
|
2015-09-14 10:54:50 -04:00
|
|
|
)
|
|
|
|
];
|
|
|
|
|
2015-09-14 15:49:20 -04:00
|
|
|
$data['manga_default_routing_anime']['config']['routing']['default_list'] = 'manga';
|
|
|
|
$data['manga_default_routing_manga']['config']['routing']['default_list'] = 'manga';
|
2015-09-14 10:54:50 -04:00
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataRoute
|
|
|
|
*/
|
2015-09-14 15:49:20 -04:00
|
|
|
public function testRoute($config, $controller, $host, $uri)
|
2015-09-14 10:54:50 -04:00
|
|
|
{
|
|
|
|
$this->_set_up($config, $uri, $host);
|
|
|
|
|
|
|
|
$request = $this->container->get('request');
|
|
|
|
$aura_router = $this->container->get('aura-router');
|
|
|
|
|
2015-09-14 15:49:20 -04:00
|
|
|
|
2015-09-14 10:54:50 -04:00
|
|
|
// Check route setup
|
2015-09-14 15:49:20 -04:00
|
|
|
$this->assertEquals($config['routes'], $this->config->routes, "Incorrect route path");
|
2015-09-14 10:54:50 -04:00
|
|
|
$this->assertTrue(is_array($this->router->get_output_routes()));
|
|
|
|
|
|
|
|
// Check environment variables
|
|
|
|
$this->assertEquals($uri, $request->server->get('REQUEST_URI'));
|
|
|
|
$this->assertEquals($host, $request->server->get('HTTP_HOST'));
|
|
|
|
|
|
|
|
// Make sure the route is an anime type
|
|
|
|
$this->assertTrue($aura_router->count() > 0, "0 routes");
|
2015-09-14 15:49:20 -04:00
|
|
|
$this->assertEquals($controller, $this->router->get_controller(), "Incorrect Route type");
|
2015-09-14 10:54:50 -04:00
|
|
|
|
|
|
|
// Make sure the route matches, by checking that it is actually an object
|
|
|
|
$route = $this->router->get_route();
|
|
|
|
$this->assertInstanceOf('Aura\\Router\\Route', $route, "Route is invalid, not matched");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDefaultRoute()
|
|
|
|
{
|
|
|
|
$config = [
|
|
|
|
'routing' => [
|
|
|
|
'anime_path' => 'anime',
|
|
|
|
'manga_path' => 'manga',
|
2015-09-14 15:49:20 -04:00
|
|
|
'default_anime_path' => "/anime/watching",
|
|
|
|
'default_manga_path' => '/manga/all',
|
2015-09-14 10:54:50 -04:00
|
|
|
'default_list' => 'manga'
|
|
|
|
],
|
|
|
|
'routes' => [
|
|
|
|
'common' => [
|
|
|
|
'login_form' => [
|
|
|
|
'path' => '/login',
|
|
|
|
'action' => ['login'],
|
|
|
|
'verb' => 'get'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'anime' => [
|
|
|
|
'index' => [
|
|
|
|
'path' => '/',
|
|
|
|
'action' => ['redirect'],
|
|
|
|
'params' => [
|
|
|
|
'url' => '', // Determined by config
|
|
|
|
'code' => '301'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'manga' => [
|
|
|
|
'index' => [
|
|
|
|
'path' => '/',
|
|
|
|
'action' => ['redirect'],
|
|
|
|
'params' => [
|
|
|
|
'url' => '', // Determined by config
|
|
|
|
'code' => '301',
|
|
|
|
'type' => 'manga'
|
|
|
|
]
|
|
|
|
],
|
|
|
|
]
|
|
|
|
]
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->_set_up($config, "/", "localhost");
|
2015-09-14 15:49:20 -04:00
|
|
|
$this->assertEquals('//localhost/manga/all', $this->urlGenerator->default_url('manga'), "Incorrect default url");
|
|
|
|
$this->assertEquals('//localhost/anime/watching', $this->urlGenerator->default_url('anime'), "Incorrect default url");
|
2015-09-14 10:54:50 -04:00
|
|
|
}
|
|
|
|
}
|