2007-02-03 22:20:13 +00:00
|
|
|
<?php
|
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
* Short description for file.
|
|
|
|
*
|
|
|
|
* Long description for file
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) Tests <https://trac.cakephp.org/wiki/Developement/TestSuite>
|
|
|
|
* Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The Open Group Test Suite License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
|
|
|
* @copyright Copyright 2005-2007, Cake Software Foundation, Inc.
|
|
|
|
* @link https://trac.cakephp.org/wiki/Developement/TestSuite CakePHP(tm) Tests
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
* @since CakePHP(tm) v 1.2.0.4206
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
|
|
|
*/
|
2007-07-08 01:17:57 +00:00
|
|
|
uses('router', 'debugger');
|
2007-02-26 02:11:30 +00:00
|
|
|
|
2007-07-08 01:17:57 +00:00
|
|
|
if (!defined('CAKE_ADMIN')) {
|
|
|
|
define('CAKE_ADMIN', 'admin');
|
|
|
|
}
|
2007-02-03 22:20:13 +00:00
|
|
|
/**
|
|
|
|
* Short description for class.
|
|
|
|
*
|
|
|
|
* @package cake.tests
|
|
|
|
* @subpackage cake.tests.cases.libs
|
|
|
|
*/
|
|
|
|
class RouterTest extends UnitTestCase {
|
|
|
|
|
2007-08-15 14:18:39 +00:00
|
|
|
function RouterTest() {
|
|
|
|
parent::UnitTestCase();
|
|
|
|
$this->startTime = getMicrotime();
|
|
|
|
}
|
|
|
|
|
2007-02-22 23:41:00 +00:00
|
|
|
function setUp() {
|
|
|
|
$this->router =& Router::getInstance();
|
2007-02-26 02:11:30 +00:00
|
|
|
//$this->router->reload();
|
2007-02-22 23:41:00 +00:00
|
|
|
}
|
|
|
|
|
2007-02-03 22:20:13 +00:00
|
|
|
function testReturnedInstanceReference() {
|
2007-02-22 23:41:00 +00:00
|
|
|
$this->router->testVar = 'test';
|
|
|
|
$this->assertIdentical($this->router, Router::getInstance());
|
|
|
|
unset($this->router->testVar);
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testRouteWriting() {
|
2007-02-22 23:41:00 +00:00
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/');
|
|
|
|
$this->assertEqual($this->router->routes[0][0], '/');
|
|
|
|
$this->assertEqual($this->router->routes[0][1], '/^[\/]*$/');
|
|
|
|
$this->assertEqual($this->router->routes[0][2], array());
|
|
|
|
|
2007-08-15 14:18:39 +00:00
|
|
|
$this->router->reload();
|
2007-02-22 23:41:00 +00:00
|
|
|
$this->router->connect('/', array('controller' => 'testing'));
|
|
|
|
$this->assertTrue(is_array($this->router->routes[0][3]) && !empty($this->router->routes[0][3]));
|
|
|
|
$this->assertEqual($this->router->routes[0][3]['controller'], 'testing');
|
|
|
|
$this->assertEqual($this->router->routes[0][3]['action'], 'index');
|
|
|
|
$this->assertEqual(count($this->router->routes[0][3]), 3);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/:controller', array('controller' => 'testing2'));
|
|
|
|
$this->assertTrue(is_array($this->router->routes[0][3]) && !empty($this->router->routes[0][3]), '/');
|
|
|
|
$this->assertEqual($this->router->routes[0][3]['controller'], 'testing2');
|
|
|
|
$this->assertEqual($this->router->routes[0][3]['action'], 'index');
|
|
|
|
$this->assertEqual(count($this->router->routes[0][3]), 3);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/:controller/:action', array('controller' => 'testing3'));
|
|
|
|
$this->assertEqual($this->router->routes[0][0], '/:controller/:action');
|
|
|
|
$this->assertEqual($this->router->routes[0][1], '#^(?:\/([^\/]+))?(?:\/([^\/]+))?[\/]*$#');
|
|
|
|
$this->assertEqual($this->router->routes[0][2], array('controller', 'action'));
|
|
|
|
$this->assertEqual($this->router->routes[0][3], array('controller' => 'testing3', 'action' => 'index', 'plugin' => null));
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/:controller/:action/:id', array('controller' => 'testing4', 'id' => null), array('id' => $this->router->__named['ID']));
|
|
|
|
$this->assertEqual($this->router->routes[0][0], '/:controller/:action/:id');
|
|
|
|
$this->assertEqual($this->router->routes[0][1], '#^(?:\/([^\/]+))?(?:\/([^\/]+))?(?:\/([0-9]+))?[\/]*$#');
|
|
|
|
$this->assertEqual($this->router->routes[0][2], array('controller', 'action', 'id'));
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/:controller/:action/:id', array('controller' => 'testing4'), array('id' => $this->router->__named['ID']));
|
|
|
|
$this->assertEqual($this->router->routes[0][1], '#^(?:\/([^\/]+))?(?:\/([^\/]+))?(?:\/([0-9]+))[\/]*$#');
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testRouterIdentity() {
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->router->reload();
|
|
|
|
$this->router->__admin = array(
|
|
|
|
'/:' . CAKE_ADMIN . '/:controller/:action/*',
|
|
|
|
'/^(?:\/(?:(' . CAKE_ADMIN . ')(?:\\/([a-zA-Z0-9_\\-\\.\\;\\:]+)(?:\\/([a-zA-Z0-9_\\-\\.\\;\\:]+)(?:[\\/\\?](.*))?)?)?))[\/]*$/',
|
|
|
|
array(CAKE_ADMIN, 'controller', 'action'), array()
|
|
|
|
);
|
2007-02-03 22:20:13 +00:00
|
|
|
$router2 = new Router();
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual(get_object_vars($this->router), get_object_vars($router2));
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 13:50:50 +00:00
|
|
|
function testResourceRoutes() {
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->mapResources('Posts');
|
|
|
|
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'GET';
|
|
|
|
$result = $this->router->parse('/posts');
|
|
|
|
$this->assertEqual($result, array ('pass' => array(), 'plugin' => '', 'controller' => 'posts', 'action' => 'index', '[method]' => 'GET'));
|
|
|
|
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'GET';
|
|
|
|
$result = $this->router->parse('/posts/13');
|
|
|
|
$this->assertEqual($result, array ('pass' => array(), 'plugin' => '', 'controller' => 'posts', 'action' => 'view', 'id' => '13', '[method]' => 'GET'));
|
|
|
|
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
|
|
|
$result = $this->router->parse('/posts');
|
|
|
|
$this->assertEqual($result, array ('pass' => array(), 'plugin' => '', 'controller' => 'posts', 'action' => 'add', '[method]' => 'POST'));
|
|
|
|
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'PUT';
|
|
|
|
$result = $this->router->parse('/posts/13');
|
|
|
|
$this->assertEqual($result, array ('pass' => array(), 'plugin' => '', 'controller' => 'posts', 'action' => 'edit', 'id' => '13', '[method]' => 'PUT'));
|
|
|
|
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'DELETE';
|
|
|
|
$result = $this->router->parse('/posts/13');
|
|
|
|
$this->assertEqual($result, array ('pass' => array(), 'plugin' => '', 'controller' => 'posts', 'action' => 'delete', 'id' => '13', '[method]' => 'DELETE'));
|
|
|
|
}
|
|
|
|
|
2007-02-03 22:20:13 +00:00
|
|
|
function testUrlGeneration() {
|
2007-08-15 14:18:39 +00:00
|
|
|
$this->router->reload();
|
2007-02-26 02:11:30 +00:00
|
|
|
extract($this->router->getNamedExpressions());
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-08-15 14:18:39 +00:00
|
|
|
$this->router->connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
|
|
|
|
$out = $this->router->url(array('controller' => 'pages', 'action' => 'display', 'home'));
|
2007-02-04 09:06:44 +00:00
|
|
|
$this->assertEqual($out, '/');
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->router->connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
|
|
|
|
$result = $this->router->url(array('controller' => 'pages', 'action' => 'display', 'about'));
|
2007-02-03 22:20:13 +00:00
|
|
|
$expected = '/pages/about';
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/:plugin/:id/*', array('controller' => 'posts', 'action' => 'view'), array('id' => $ID));
|
|
|
|
$result = $this->router->url(array('plugin' => 'cake_plugin', 'controller' => 'posts', 'action' => 'view', 'id' => '1'));
|
|
|
|
$expected = '/cake_plugin/1/';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$result = $this->router->url(array('plugin' => 'cake_plugin', 'controller' => 'posts', 'action' => 'view', 'id' => '1', '0'));
|
|
|
|
$expected = '/cake_plugin/1/0';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/:controller/:action/:id', array(), array('id' => $ID));
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'view', 'id' => '1'));
|
2007-02-03 22:20:13 +00:00
|
|
|
$expected = '/posts/view/1';
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/:controller/:id', array('action' => 'view', 'id' => '1'));
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'view', 'id' => '1'));
|
2007-02-03 22:20:13 +00:00
|
|
|
$expected = '/posts/1';
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
|
2007-02-26 02:11:30 +00:00
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'index', '0'));
|
2007-02-03 22:20:13 +00:00
|
|
|
$expected = '/posts/index/0';
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action'=>'index', '0', '?' => 'var=test&var2=test2'));
|
|
|
|
$expected = '/posts/index/0?var=test&var2=test2';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', '0', '?' => 'var=test&var2=test2'));
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-04-12 07:17:39 +00:00
|
|
|
|
2007-04-17 07:51:01 +00:00
|
|
|
$result = $this->router->url(array('controller' => 'posts', '0', '?' => array('var' => 'test', 'var2' => 'test2')));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', '0', '?' => 'var=test&var2=test2', '#' => 'unencoded string %'));
|
|
|
|
$expected = '/posts/index/0?var=test&var2=test2#unencoded+string+%25';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-05-02 18:37:28 +00:00
|
|
|
|
|
|
|
$this->router->connect('/view/*', array('controller' => 'posts', 'action' => 'view'));
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'view', '1'));
|
|
|
|
$expected = '/view/1';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-07-30 13:15:59 +00:00
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/admin/subscriptions/:action/*', array('controller' => 'subscribe', 'admin' => 'admin'));
|
|
|
|
Router::setRequestInfo(array(
|
|
|
|
array(
|
|
|
|
'pass' => array(), 'action' => 'admin_index', 'plugin' => null, 'controller' => 'subscribe',
|
|
|
|
'admin' => 'admin', 'url' => array('url' => 'admin/subscriptions/index/page:2'), 'bare' => 0, 'webservices' => ''
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'base' => '/magazine', 'here' => '/magazine/admin/subscriptions/index/page:2',
|
|
|
|
'webroot' => '/magazine/', 'passedArgs' => array('page' => 2), 'argSeparator' => ':', 'namedArgs' => array('page' => 2),
|
|
|
|
'webservices' => null
|
|
|
|
)
|
|
|
|
));
|
2007-08-12 22:52:15 +00:00
|
|
|
|
2007-07-30 13:15:59 +00:00
|
|
|
$result = $this->router->url(array('page' => 3));
|
|
|
|
$expected = '/magazine/admin/subscriptions/index/page:3';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-08-12 22:52:15 +00:00
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
Router::setRequestInfo(array(
|
|
|
|
array(
|
|
|
|
'pass' => array(), 'action' => 'index', 'plugin' => null, 'controller' => 'real_controller_name',
|
|
|
|
'url' => array('url' => ''), 'bare' => 0, 'webservices' => ''
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'base' => '/', 'here' => '/',
|
|
|
|
'webroot' => '/', 'passedArgs' => array('page' => 2), 'argSeparator' => ':', 'namedArgs' => array('page' => 2),
|
|
|
|
'webservices' => null
|
|
|
|
)
|
|
|
|
));
|
|
|
|
$this->router->connect('short_controller_name/index/*', array('controller' => 'real_controller_name'));
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'real_controller_name', 'page' => '1'));
|
|
|
|
$expected = '/short_controller_name/index/page:1';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-08-14 18:51:34 +00:00
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
|
|
|
|
$this->router->connect(
|
|
|
|
':language/galleries',
|
|
|
|
array('controller' => 'galleries', 'action' => 'index'),
|
|
|
|
array('language' => '[a-z]{3}')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->router->connect(
|
2007-08-15 14:18:39 +00:00
|
|
|
'/:language/:admin/:controller/:action/*',
|
|
|
|
array('admin' => 'admin'),
|
|
|
|
array('language' => '[a-z]{3}', 'admin' => 'admin')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->router->connect('/:language/:controller/:action/*',
|
|
|
|
array(),
|
|
|
|
array('language' => '[a-z]{3}')
|
|
|
|
);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('admin' => false, 'language' => 'dan', 'action' => 'index', 'controller' => 'galleries'));
|
|
|
|
$expected = '/dan/galleries';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('admin' => false, 'language' => 'eng', 'action' => 'index', 'controller' => 'galleries'));
|
|
|
|
$expected = '/eng/galleries';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->connect('/:language/pages',
|
|
|
|
array(
|
|
|
|
'controller' => 'pages',
|
|
|
|
'action' => 'index'
|
|
|
|
),
|
|
|
|
array('language' => '[a-z]{3}')
|
2007-08-14 18:51:34 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$this->router->connect('/:language/:controller/:action/*',
|
|
|
|
array(),
|
|
|
|
array('language' => '[a-z]{3}')
|
|
|
|
);
|
|
|
|
|
2007-08-15 14:18:39 +00:00
|
|
|
$result = $this->router->url(array('language' => 'eng', 'action' => 'index', 'controller' => 'pages'));
|
|
|
|
$expected = '/eng/pages'; // Passes as expected
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('language' => 'eng', 'controller' => 'pages'));
|
2007-08-14 18:51:34 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-08-15 14:18:39 +00:00
|
|
|
$result = $this->router->url(array('language' => 'eng', 'controller' => 'pages', 'action' => 'add'));
|
|
|
|
$expected = '/eng/pages/add/';
|
2007-08-14 18:51:34 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
2007-04-17 07:51:01 +00:00
|
|
|
}
|
|
|
|
|
2007-07-17 13:45:20 +00:00
|
|
|
function testUrlGenerationWithExtensions() {
|
2007-07-30 13:15:59 +00:00
|
|
|
$this->router->reload();
|
2007-07-17 13:45:20 +00:00
|
|
|
$result = $this->router->url(array('plugin' => null, 'controller' => 'articles', 'action' => 'add', 'id' => null, 'ext' => 'json'));
|
|
|
|
$expected = '/articles/add.json';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-07-22 04:07:06 +00:00
|
|
|
|
|
|
|
$result = $this->router->url(array('plugin' => null, 'controller' => 'articles', 'action' => 'add', 'ext' => 'json'));
|
|
|
|
$expected = '/articles/add.json';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('plugin' => null, 'controller' => 'articles', 'action' => 'index', 'id' => null, 'ext' => 'json'));
|
|
|
|
$expected = '/articles.json';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('plugin' => null, 'controller' => 'articles', 'action' => 'index', 'ext' => 'json'));
|
|
|
|
$expected = '/articles.json';
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-07-17 13:45:20 +00:00
|
|
|
}
|
|
|
|
|
2007-05-20 01:40:34 +00:00
|
|
|
function testPluginUrlGeneration() {
|
|
|
|
$this->router->setRequestInfo(array(
|
|
|
|
array(
|
|
|
|
'controller' => 'controller', 'action' => 'index', 'form' => array(),
|
|
|
|
'url' => array (), 'bare' => 0, 'webservices' => null, 'plugin' => 'test'
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'base' => '/base', 'here' => '/clients/sage/portal/donations', 'webroot' => '/base/',
|
|
|
|
'passedArgs' => array (), 'argSeparator' => ':', 'namedArgs' => array (), 'webservices' => null
|
|
|
|
)
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->assertEqual($this->router->url('read/1'), '/base/test/controller/read/1');
|
|
|
|
$this->router->reload();
|
|
|
|
}
|
|
|
|
|
2007-04-17 07:51:01 +00:00
|
|
|
function testUrlParsing() {
|
|
|
|
extract($this->router->getNamedExpressions());
|
|
|
|
|
2007-04-12 07:17:39 +00:00
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/posts/:value/:somevalue/:othervalue/*', array('controller' => 'posts', 'action' => 'view'), array('value','somevalue', 'othervalue'));
|
|
|
|
$result = $this->router->parse('/posts/2007/08/01/title-of-post-here');
|
|
|
|
$expected = array('value' => '2007', 'somevalue' => '08', 'othervalue' => '01', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array('0' => 'title-of-post-here'));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/posts/:year/:month/:day/*', array('controller' => 'posts', 'action' => 'view'), array('year' => $Year, 'month' => $Month, 'day' => $Day));
|
|
|
|
$result = $this->router->parse('/posts/2007/08/01/title-of-post-here');
|
|
|
|
$expected = array('year' => '2007', 'month' => '08', 'day' => '01', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array('0' => 'title-of-post-here'));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/posts/:day/:year/:month/*', array('controller' => 'posts', 'action' => 'view'), array('year' => $Year, 'month' => $Month, 'day' => $Day));
|
|
|
|
$result = $this->router->parse('/posts/01/2007/08/title-of-post-here');
|
|
|
|
$expected = array('day' => '01', 'year' => '2007', 'month' => '08', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array('0' => 'title-of-post-here'));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/posts/:month/:day/:year//*', array('controller' => 'posts', 'action' => 'view'), array('year' => $Year, 'month' => $Month, 'day' => $Day));
|
|
|
|
$result = $this->router->parse('/posts/08/01/2007/title-of-post-here');
|
|
|
|
$expected = array('month' => '08', 'day' => '01', 'year' => '2007', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array('0' => 'title-of-post-here'));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$this->router->connect('/posts/:year/:month/:day/*', array('controller' => 'posts', 'action' => 'view'));
|
|
|
|
$result = $this->router->parse('/posts/2007/08/01/title-of-post-here');
|
|
|
|
$expected = array('year' => '2007', 'month' => '08', 'day' => '01', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array('0' => 'title-of-post-here'));
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-07-27 13:32:26 +00:00
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
$result = $this->router->parse('/pages/display/home');
|
2007-08-15 14:18:39 +00:00
|
|
|
$expected = array('plugin' => null, 'pass' => array('home'), 'controller' => 'pages', 'action' => 'display');
|
2007-07-27 13:32:26 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
2007-07-27 17:51:33 +00:00
|
|
|
|
2007-07-27 13:32:26 +00:00
|
|
|
$result = $this->router->parse('pages/display/home/');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->parse('pages/display/home');
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-26 02:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testAdminRouting() {
|
|
|
|
$out = $this->router->url(array(CAKE_ADMIN => true, 'controller' => 'posts', 'action'=>'index', '0', '?' => 'var=test&var2=test2'));
|
|
|
|
$expected = '/' . CAKE_ADMIN . '/posts/index/0?var=test&var2=test2';
|
2007-02-04 09:06:44 +00:00
|
|
|
$this->assertEqual($out, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function testExtensionParsingSetting() {
|
2007-02-26 02:11:30 +00:00
|
|
|
$router = Router::getInstance();
|
|
|
|
$this->router->reload();
|
|
|
|
$this->assertFalse($this->router->__parseExtensions);
|
|
|
|
|
|
|
|
$router->parseExtensions();
|
|
|
|
$this->assertTrue($this->router->__parseExtensions);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testExtensionParsing() {
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->parseExtensions();
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts.rss');
|
2007-08-14 18:51:34 +00:00
|
|
|
$expected = array('plugin' => null, 'controller' => 'posts', 'action' => 'index', 'url' => array('ext' => 'rss'), 'pass'=> array());
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts/view/1.rss');
|
2007-08-15 14:18:39 +00:00
|
|
|
$expected = array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'pass' => array('1'), 'url' => array('ext' => 'rss'));
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts/view/1.rss?query=test');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts/view/1.atom');
|
|
|
|
$expected['url'] = array('ext' => 'atom');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->parseExtensions('rss', 'xml');
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts.xml');
|
2007-08-14 18:51:34 +00:00
|
|
|
$expected = array('plugin' => null, 'controller' => 'posts', 'action' => 'index', 'url' => array ('ext' => 'xml'), 'pass'=> array());
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->parse('/posts.atom?hello=goodbye');
|
2007-08-14 18:51:34 +00:00
|
|
|
$expected = array('plugin' => null, 'controller' => 'posts.atom', 'action' => 'index', 'pass' => array());
|
2007-02-26 02:11:30 +00:00
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->reload();
|
|
|
|
$this->router->parseExtensions();
|
|
|
|
$result = $this->router->__parseExtension('/posts.atom');
|
|
|
|
$expected = array('ext' => 'atom', 'url' => '/posts');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testQuerystringGeneration() {
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action'=>'index', '0', '?' => 'var=test&var2=test2'));
|
|
|
|
$expected = '/posts/index/0?var=test&var2=test2';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action'=>'index', '0', '?' => array('var' => 'test', 'var2' => 'test2')));
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$expected .= '&more=test+data';
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action'=>'index', '0', '?' => array('var' => 'test', 'var2' => 'test2', 'more' => 'test data')));
|
|
|
|
$this->assertEqual($result, $expected);
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
2007-04-29 11:10:11 +00:00
|
|
|
|
|
|
|
function testNamedArgsUrlGeneration() {
|
|
|
|
Router::setRequestInfo(array(null, array('base' => '/', 'argSeparator' => ':')));
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'index', 'published' => 1, 'deleted' => 1));
|
|
|
|
$expected = '/posts/index/published:1/deleted:1';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$result = $this->router->url(array('controller' => 'posts', 'action' => 'index', 'published' => 0, 'deleted' => 0));
|
|
|
|
$expected = '/posts/index/published:0/deleted:0';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2007-07-24 14:40:34 +00:00
|
|
|
|
2007-07-24 13:50:50 +00:00
|
|
|
function testParamsUrlParsing() {
|
|
|
|
$this->router->routes = array();
|
|
|
|
Router::connect('/', array('controller' => 'posts', 'action' => 'index'));
|
|
|
|
Router::connect('/view/:user/*', array('controller' => 'posts', 'action' => 'view'), array('user'));
|
|
|
|
$result = $this->router->parse('/view/gwoo/');
|
|
|
|
$expected = array('user' => 'gwoo', 'controller' => 'posts', 'action' => 'view', 'plugin' =>'', 'pass' => array());
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2007-07-27 02:46:30 +00:00
|
|
|
|
|
|
|
function testPagesUrlParsing() {
|
|
|
|
$this->router->routes = array();
|
2007-07-27 17:51:33 +00:00
|
|
|
Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
|
|
|
|
Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
|
|
|
|
|
|
|
|
$result = $this->router->parse('/');
|
|
|
|
$expected = array('pass'=>array('home'), 'plugin'=> null, 'controller'=>'pages', 'action'=>'display');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
2007-07-27 02:46:30 +00:00
|
|
|
$result = $this->router->parse('/pages/home/');
|
|
|
|
$expected = array('pass'=>array('home'), 'plugin'=> null, 'controller'=>'pages', 'action'=>'display');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$this->router->routes = array();
|
|
|
|
Router::connect('/', array('controller' => 'posts', 'action' => 'index'));
|
|
|
|
Router::connect('/pages/*', array('controller' => 'pages', 'action' => 'display'));
|
|
|
|
$result = $this->router->parse('/pages/contact/');
|
|
|
|
|
|
|
|
$expected = array('pass'=>array('contact'), 'plugin'=> null, 'controller'=>'pages', 'action'=>'display');
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
2007-08-15 14:18:39 +00:00
|
|
|
|
|
|
|
function testEnd() {
|
|
|
|
pr(round(getMicrotime() - $this->startTime, 5));
|
|
|
|
}
|
2007-02-03 22:20:13 +00:00
|
|
|
}
|
2007-02-26 02:11:30 +00:00
|
|
|
|
2007-02-04 09:06:44 +00:00
|
|
|
?>
|