123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906 |
- <?php
- /**
- * CakeRequest Test case file.
- *
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @package Cake.Test.Case.Routing.Route
- * @since CakePHP(tm) v 2.0
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('CakeRoute', 'Routing/Route');
- App::uses('Router', 'Routing');
- /**
- * Test case for CakeRoute
- *
- * @package Cake.Test.Case.Routing.Route
- */
- class CakeRouteTest extends CakeTestCase {
- /**
- * setUp method
- *
- * @return void
- */
- public function setUp() {
- parent::setUp();
- Configure::write('Routing', array('admin' => null, 'prefixes' => array()));
- }
- /**
- * Test the construction of a CakeRoute
- *
- * @return void
- */
- public function testConstruction() {
- $route = new CakeRoute('/:controller/:action/:id', array(), array('id' => '[0-9]+'));
- $this->assertEquals('/:controller/:action/:id', $route->template);
- $this->assertEquals(array(), $route->defaults);
- $this->assertEquals(array('id' => '[0-9]+'), $route->options);
- $this->assertFalse($route->compiled());
- }
- /**
- * test Route compiling.
- *
- * @return void
- */
- public function testBasicRouteCompiling() {
- $route = new CakeRoute('/', array('controller' => 'pages', 'action' => 'display', 'home'));
- $result = $route->compile();
- $expected = '#^/*$#';
- $this->assertEquals($expected, $result);
- $this->assertEquals(array(), $route->keys);
- $route = new CakeRoute('/:controller/:action', array('controller' => 'posts'));
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/edit');
- $this->assertRegExp($result, '/posts/super_delete');
- $this->assertNotRegExp($result, '/posts');
- $this->assertNotRegExp($result, '/posts/super_delete/1');
- $route = new CakeRoute('/posts/foo:id', array('controller' => 'posts', 'action' => 'view'));
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/foo:1');
- $this->assertRegExp($result, '/posts/foo:param');
- $this->assertNotRegExp($result, '/posts');
- $this->assertNotRegExp($result, '/posts/');
- $this->assertEquals(array('id'), $route->keys);
- $route = new CakeRoute('/:plugin/:controller/:action/*', array('plugin' => 'test_plugin', 'action' => 'index'));
- $result = $route->compile();
- $this->assertRegExp($result, '/test_plugin/posts/index');
- $this->assertRegExp($result, '/test_plugin/posts/edit/5');
- $this->assertRegExp($result, '/test_plugin/posts/edit/5/name:value/nick:name');
- }
- /**
- * test that route parameters that overlap don't cause errors.
- *
- * @return void
- */
- public function testRouteParameterOverlap() {
- $route = new CakeRoute('/invoices/add/:idd/:id', array('controller' => 'invoices', 'action' => 'add'));
- $result = $route->compile();
- $this->assertRegExp($result, '/invoices/add/1/3');
- $route = new CakeRoute('/invoices/add/:id/:idd', array('controller' => 'invoices', 'action' => 'add'));
- $result = $route->compile();
- $this->assertRegExp($result, '/invoices/add/1/3');
- }
- /**
- * test compiling routes with keys that have patterns
- *
- * @return void
- */
- public function testRouteCompilingWithParamPatterns() {
- $route = new CakeRoute(
- '/:controller/:action/:id',
- array(),
- array('id' => Router::ID)
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/edit/1');
- $this->assertRegExp($result, '/posts/view/518098');
- $this->assertNotRegExp($result, '/posts/edit/name-of-post');
- $this->assertNotRegExp($result, '/posts/edit/4/other:param');
- $this->assertEquals(array('controller', 'action', 'id'), $route->keys);
- $route = new CakeRoute(
- '/:lang/:controller/:action/:id',
- array('controller' => 'testing4'),
- array('id' => Router::ID, 'lang' => '[a-z]{3}')
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/eng/posts/edit/1');
- $this->assertRegExp($result, '/cze/articles/view/1');
- $this->assertNotRegExp($result, '/language/articles/view/2');
- $this->assertNotRegExp($result, '/eng/articles/view/name-of-article');
- $this->assertEquals(array('lang', 'controller', 'action', 'id'), $route->keys);
- foreach (array(':', '@', ';', '$', '-') as $delim) {
- $route = new CakeRoute('/posts/:id' . $delim . ':title');
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/1' . $delim . 'name-of-article');
- $this->assertRegExp($result, '/posts/13244' . $delim . 'name-of_Article[]');
- $this->assertNotRegExp($result, '/posts/11!nameofarticle');
- $this->assertNotRegExp($result, '/posts/11');
- $this->assertEquals(array('id', 'title'), $route->keys);
- }
- $route = new CakeRoute(
- '/posts/:id::title/:year',
- array('controller' => 'posts', 'action' => 'view'),
- array('id' => Router::ID, 'year' => Router::YEAR, 'title' => '[a-z-_]+')
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/1:name-of-article/2009/');
- $this->assertRegExp($result, '/posts/13244:name-of-article/1999');
- $this->assertNotRegExp($result, '/posts/hey_now:nameofarticle');
- $this->assertNotRegExp($result, '/posts/:nameofarticle/2009');
- $this->assertNotRegExp($result, '/posts/:nameofarticle/01');
- $this->assertEquals(array('id', 'title', 'year'), $route->keys);
- $route = new CakeRoute(
- '/posts/:url_title-(uuid::id)',
- array('controller' => 'posts', 'action' => 'view'),
- array('pass' => array('id', 'url_title'), 'id' => Router::ID)
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/some_title_for_article-(uuid:12534)/');
- $this->assertRegExp($result, '/posts/some_title_for_article-(uuid:12534)');
- $this->assertNotRegExp($result, '/posts/');
- $this->assertNotRegExp($result, '/posts/nameofarticle');
- $this->assertNotRegExp($result, '/posts/nameofarticle-12347');
- $this->assertEquals(array('url_title', 'id'), $route->keys);
- }
- /**
- * test more complex route compiling & parsing with mid route greedy stars
- * and optional routing parameters
- *
- * @return void
- */
- public function testComplexRouteCompilingAndParsing() {
- $route = new CakeRoute(
- '/posts/:month/:day/:year/*',
- array('controller' => 'posts', 'action' => 'view'),
- array('year' => Router::YEAR, 'month' => Router::MONTH, 'day' => Router::DAY)
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/posts/08/01/2007/title-of-post');
- $result = $route->parse('/posts/08/01/2007/title-of-post');
- $this->assertEquals(7, count($result));
- $this->assertEquals('posts', $result['controller']);
- $this->assertEquals('view', $result['action']);
- $this->assertEquals('2007', $result['year']);
- $this->assertEquals('08', $result['month']);
- $this->assertEquals('01', $result['day']);
- $this->assertEquals('title-of-post', $result['pass'][0]);
- $route = new CakeRoute(
- "/:extra/page/:slug/*",
- array('controller' => 'pages', 'action' => 'view', 'extra' => null),
- array("extra" => '[a-z1-9_]*', "slug" => '[a-z1-9_]+', "action" => 'view')
- );
- $result = $route->compile();
- $this->assertRegExp($result, '/some_extra/page/this_is_the_slug');
- $this->assertRegExp($result, '/page/this_is_the_slug');
- $this->assertEquals(array('extra', 'slug'), $route->keys);
- $this->assertEquals(array('extra' => '[a-z1-9_]*', 'slug' => '[a-z1-9_]+', 'action' => 'view'), $route->options);
- $expected = array(
- 'controller' => 'pages',
- 'action' => 'view'
- );
- $this->assertEquals($expected, $route->defaults);
- $route = new CakeRoute(
- '/:controller/:action/*',
- array('project' => false),
- array(
- 'controller' => 'source|wiki|commits|tickets|comments|view',
- 'action' => 'branches|history|branch|logs|view|start|add|edit|modify'
- )
- );
- $this->assertFalse($route->parse('/chaw_test/wiki'));
- $result = $route->compile();
- $this->assertNotRegExp($result, '/some_project/source');
- $this->assertRegExp($result, '/source/view');
- $this->assertRegExp($result, '/source/view/other/params');
- $this->assertNotRegExp($result, '/chaw_test/wiki');
- $this->assertNotRegExp($result, '/source/wierd_action');
- }
- /**
- * test that routes match their pattern.
- *
- * @return void
- */
- public function testMatchBasic() {
- $route = new CakeRoute('/:controller/:action/:id', array('plugin' => null));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null));
- $this->assertFalse($result);
- $result = $route->match(array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 0));
- $this->assertFalse($result);
- $result = $route->match(array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'id' => 1));
- $this->assertEquals('/posts/view/1', $result);
- $route = new CakeRoute('/', array('controller' => 'pages', 'action' => 'display', 'home'));
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 'home'));
- $this->assertEquals('/', $result);
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 'about'));
- $this->assertFalse($result);
- $route = new CakeRoute('/pages/*', array('controller' => 'pages', 'action' => 'display'));
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 'home'));
- $this->assertEquals('/pages/home', $result);
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 'about'));
- $this->assertEquals('/pages/about', $result);
- $route = new CakeRoute('/blog/:action', array('controller' => 'posts'));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view'));
- $this->assertEquals('/blog/view', $result);
- $result = $route->match(array('controller' => 'nodes', 'action' => 'view'));
- $this->assertFalse($result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 1));
- $this->assertFalse($result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'id' => 2));
- $this->assertFalse($result);
- $route = new CakeRoute('/foo/:controller/:action', array('action' => 'index'));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view'));
- $this->assertEquals('/foo/posts/view', $result);
- $route = new CakeRoute('/:plugin/:id/*', array('controller' => 'posts', 'action' => 'view'));
- $result = $route->match(array('plugin' => 'test', 'controller' => 'posts', 'action' => 'view', 'id' => '1'));
- $this->assertEquals('/test/1/', $result);
- $result = $route->match(array('plugin' => 'fo', 'controller' => 'posts', 'action' => 'view', 'id' => '1', '0'));
- $this->assertEquals('/fo/1/0', $result);
- $result = $route->match(array('plugin' => 'fo', 'controller' => 'nodes', 'action' => 'view', 'id' => 1));
- $this->assertFalse($result);
- $result = $route->match(array('plugin' => 'fo', 'controller' => 'posts', 'action' => 'edit', 'id' => 1));
- $this->assertFalse($result);
- $route = new CakeRoute('/admin/subscriptions/:action/*', array(
- 'controller' => 'subscribe', 'admin' => true, 'prefix' => 'admin'
- ));
- $url = array('controller' => 'subscribe', 'admin' => true, 'action' => 'edit', 1);
- $result = $route->match($url);
- $expected = '/admin/subscriptions/edit/1';
- $this->assertEquals($expected, $result);
- $url = array(
- 'controller' => 'subscribe',
- 'admin' => true,
- 'action' => 'edit_admin_e',
- 1
- );
- $result = $route->match($url);
- $expected = '/admin/subscriptions/edit_admin_e/1';
- $this->assertEquals($expected, $result);
- }
- /**
- * test that non-greedy routes fail with extra passed args
- *
- * @return void
- */
- public function testGreedyRouteFailurePassedArg() {
- $route = new CakeRoute('/:controller/:action', array('plugin' => null));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', '0'));
- $this->assertFalse($result);
- $route = new CakeRoute('/:controller/:action', array('plugin' => null));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'test'));
- $this->assertFalse($result);
- }
- /**
- * test that non-greedy routes fail with extra passed args
- *
- * @return void
- */
- public function testGreedyRouteFailureNamedParam() {
- $route = new CakeRoute('/:controller/:action', array('plugin' => null));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'page' => 1));
- $this->assertFalse($result);
- }
- /**
- * test that falsey values do not interrupt a match.
- *
- * @return void
- */
- public function testMatchWithFalseyValues() {
- $route = new CakeRoute('/:controller/:action/*', array('plugin' => null));
- $result = $route->match(array(
- 'controller' => 'posts', 'action' => 'index', 'plugin' => null, 'admin' => false
- ));
- $this->assertEquals('/posts/index/', $result);
- }
- /**
- * test match() with greedy routes, named parameters and passed args.
- *
- * @return void
- */
- public function testMatchWithNamedParametersAndPassedArgs() {
- Router::connectNamed(true);
- $route = new CakeRoute('/:controller/:action/*', array('plugin' => null));
- $result = $route->match(array('controller' => 'posts', 'action' => 'index', 'plugin' => null, 'page' => 1));
- $this->assertEquals('/posts/index/page:1', $result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null, 5));
- $this->assertEquals('/posts/view/5', $result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null, 0));
- $this->assertEquals('/posts/view/0', $result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null, '0'));
- $this->assertEquals('/posts/view/0', $result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null, 5, 'page' => 1, 'limit' => 20, 'order' => 'title'));
- $this->assertEquals('/posts/view/5/page:1/limit:20/order:title', $result);
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'plugin' => null, 'word space', 'order' => 'Θ'));
- $this->assertEquals('/posts/view/word%20space/order:%CE%98', $result);
- $route = new CakeRoute('/test2/*', array('controller' => 'pages', 'action' => 'display', 2));
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 1));
- $this->assertFalse($result);
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 2, 'something'));
- $this->assertEquals('/test2/something', $result);
- $result = $route->match(array('controller' => 'pages', 'action' => 'display', 5, 'something'));
- $this->assertFalse($result);
- }
- /**
- * Ensure that named parameters are urldecoded
- *
- * @return void
- */
- public function testParseNamedParametersUrlDecode() {
- Router::connectNamed(true);
- $route = new CakeRoute('/:controller/:action/*', array('plugin' => null));
- $result = $route->parse('/posts/index/page:%CE%98');
- $this->assertEquals('Θ', $result['named']['page']);
- $result = $route->parse('/posts/index/page[]:%CE%98');
- $this->assertEquals('Θ', $result['named']['page'][0]);
- $result = $route->parse('/posts/index/something%20else/page[]:%CE%98');
- $this->assertEquals('Θ', $result['named']['page'][0]);
- $this->assertEquals('something else', $result['pass'][0]);
- }
- /**
- * Ensure that keys at named parameters are urldecoded
- *
- * @return void
- */
- public function testParseNamedKeyUrlDecode() {
- Router::connectNamed(true);
- $route = new CakeRoute('/:controller/:action/*', array('plugin' => null));
- // checking /post/index/user[0]:a/user[1]:b
- $result = $route->parse('/posts/index/user%5B0%5D:a/user%5B1%5D:b');
- $this->assertArrayHasKey('user', $result['named']);
- $this->assertEquals(array('a', 'b'), $result['named']['user']);
- // checking /post/index/user[]:a/user[]:b
- $result = $route->parse('/posts/index/user%5B%5D:a/user%5B%5D:b');
- $this->assertArrayHasKey('user', $result['named']);
- $this->assertEquals(array('a', 'b'), $result['named']['user']);
- }
- /**
- * test that named params with null/false are excluded
- *
- * @return void
- */
- public function testNamedParamsWithNullFalse() {
- $route = new CakeRoute('/:controller/:action/*');
- $result = $route->match(array('controller' => 'posts', 'action' => 'index', 'page' => null, 'sort' => false));
- $this->assertEquals('/posts/index/', $result);
- }
- /**
- * test that match with patterns works.
- *
- * @return void
- */
- public function testMatchWithPatterns() {
- $route = new CakeRoute('/:controller/:action/:id', array('plugin' => null), array('id' => '[0-9]+'));
- $result = $route->match(array('controller' => 'posts', 'action' => 'view', 'id' => 'foo'));
- $this->assertFalse($result);
- $result = $route->match(array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'id' => '9'));
- $this->assertEquals('/posts/view/9', $result);
- $result = $route->match(array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'id' => '922'));
- $this->assertEquals('/posts/view/922', $result);
- $result = $route->match(array('plugin' => null, 'controller' => 'posts', 'action' => 'view', 'id' => 'a99'));
- $this->assertFalse($result);
- }
- /**
- * test persistParams ability to persist parameters from $params and remove params.
- *
- * @return void
- */
- public function testPersistParams() {
- $route = new CakeRoute(
- '/:lang/:color/blog/:action',
- array('controller' => 'posts'),
- array('persist' => array('lang', 'color'))
- );
- $url = array('controller' => 'posts', 'action' => 'index');
- $params = array('lang' => 'en', 'color' => 'blue');
- $result = $route->persistParams($url, $params);
- $this->assertEquals('en', $result['lang']);
- $this->assertEquals('blue', $result['color']);
- $url = array('controller' => 'posts', 'action' => 'index', 'color' => 'red');
- $params = array('lang' => 'en', 'color' => 'blue');
- $result = $route->persistParams($url, $params);
- $this->assertEquals('en', $result['lang']);
- $this->assertEquals('red', $result['color']);
- }
- /**
- * test the parse method of CakeRoute.
- *
- * @return void
- */
- public function testParse() {
- $route = new CakeRoute(
- '/:controller/:action/:id',
- array('controller' => 'testing4', 'id' => null),
- array('id' => Router::ID)
- );
- $route->compile();
- $result = $route->parse('/posts/view/1');
- $this->assertEquals('posts', $result['controller']);
- $this->assertEquals('view', $result['action']);
- $this->assertEquals('1', $result['id']);
- $route = new Cakeroute(
- '/admin/:controller',
- array('prefix' => 'admin', 'admin' => 1, 'action' => 'index')
- );
- $route->compile();
- $result = $route->parse('/admin/');
- $this->assertFalse($result);
- $result = $route->parse('/admin/posts');
- $this->assertEquals('posts', $result['controller']);
- $this->assertEquals('index', $result['action']);
- }
- /**
- * Test that :key elements are urldecoded
- *
- * @return void
- */
- public function testParseUrlDecodeElements() {
- $route = new Cakeroute(
- '/:controller/:slug',
- array('action' => 'view')
- );
- $route->compile();
- $result = $route->parse('/posts/%E2%88%82%E2%88%82');
- $this->assertEquals('posts', $result['controller']);
- $this->assertEquals('view', $result['action']);
- $this->assertEquals('∂∂', $result['slug']);
- $result = $route->parse('/posts/∂∂');
- $this->assertEquals('posts', $result['controller']);
- $this->assertEquals('view', $result['action']);
- $this->assertEquals('∂∂', $result['slug']);
- }
- /**
- * test numerically indexed defaults, get appended to pass
- *
- * @return void
- */
- public function testParseWithPassDefaults() {
- $route = new Cakeroute('/:controller', array('action' => 'display', 'home'));
- $result = $route->parse('/posts');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'display',
- 'pass' => array('home'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test that http header conditions can cause route failures.
- *
- * @return void
- */
- public function testParseWithHttpHeaderConditions() {
- $_SERVER['REQUEST_METHOD'] = 'GET';
- $route = new CakeRoute('/sample', array('controller' => 'posts', 'action' => 'index', '[method]' => 'POST'));
- $this->assertFalse($route->parse('/sample'));
- }
- /**
- * test that patterns work for :action
- *
- * @return void
- */
- public function testPatternOnAction() {
- $route = new CakeRoute(
- '/blog/:action/*',
- array('controller' => 'blog_posts'),
- array('action' => 'other|actions')
- );
- $result = $route->match(array('controller' => 'blog_posts', 'action' => 'foo'));
- $this->assertFalse($result);
- $result = $route->match(array('controller' => 'blog_posts', 'action' => 'actions'));
- $this->assertNotEmpty($result);
- $result = $route->parse('/blog/other');
- $expected = array('controller' => 'blog_posts', 'action' => 'other', 'pass' => array(), 'named' => array());
- $this->assertEquals($expected, $result);
- $result = $route->parse('/blog/foobar');
- $this->assertFalse($result);
- }
- /**
- * test the parseArgs method
- *
- * @return void
- */
- public function testParsePassedArgument() {
- $route = new CakeRoute('/:controller/:action/*');
- $result = $route->parse('/posts/edit/1/2/0');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'edit',
- 'pass' => array('1', '2', '0'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result);
- $result = $route->parse('/posts/edit/a-string/page:1/sort:value');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'edit',
- 'pass' => array('a-string'),
- 'named' => array(
- 'page' => 1,
- 'sort' => 'value'
- )
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test that only named parameter rules are followed.
- *
- * @return void
- */
- public function testParseNamedParametersWithRules() {
- $route = new CakeRoute('/:controller/:action/*', array(), array(
- 'named' => array(
- 'wibble',
- 'fish' => array('action' => 'index'),
- 'fizz' => array('controller' => array('comments', 'other')),
- 'pattern' => 'val-[\d]+'
- )
- ));
- $result = $route->parse('/posts/display/wibble:spin/fish:trout/fizz:buzz/unknown:value');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'display',
- 'pass' => array('fish:trout', 'fizz:buzz', 'unknown:value'),
- 'named' => array(
- 'wibble' => 'spin'
- )
- );
- $this->assertEquals($expected, $result, 'Fish should not be parsed, as action != index');
- $result = $route->parse('/posts/index/wibble:spin/fish:trout/fizz:buzz');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'pass' => array('fizz:buzz'),
- 'named' => array(
- 'wibble' => 'spin',
- 'fish' => 'trout'
- )
- );
- $this->assertEquals($expected, $result, 'Fizz should be parsed, as controller == comments|other');
- $result = $route->parse('/comments/index/wibble:spin/fish:trout/fizz:buzz');
- $expected = array(
- 'controller' => 'comments',
- 'action' => 'index',
- 'pass' => array(),
- 'named' => array(
- 'wibble' => 'spin',
- 'fish' => 'trout',
- 'fizz' => 'buzz'
- )
- );
- $this->assertEquals($expected, $result, 'All params should be parsed as conditions were met.');
- $result = $route->parse('/comments/index/pattern:val--');
- $expected = array(
- 'controller' => 'comments',
- 'action' => 'index',
- 'pass' => array('pattern:val--'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result, 'Named parameter pattern unmet.');
- $result = $route->parse('/comments/index/pattern:val-2');
- $expected = array(
- 'controller' => 'comments',
- 'action' => 'index',
- 'pass' => array(),
- 'named' => array('pattern' => 'val-2')
- );
- $this->assertEquals($expected, $result, 'Named parameter pattern met.');
- }
- /**
- * test that greedyNamed ignores rules.
- *
- * @return void
- */
- public function testParseGreedyNamed() {
- $route = new CakeRoute('/:controller/:action/*', array(), array(
- 'named' => array(
- 'fizz' => array('controller' => 'comments'),
- 'pattern' => 'val-[\d]+',
- ),
- 'greedyNamed' => true
- ));
- $result = $route->parse('/posts/display/wibble:spin/fizz:buzz/pattern:ignored');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'display',
- 'pass' => array('fizz:buzz', 'pattern:ignored'),
- 'named' => array(
- 'wibble' => 'spin',
- )
- );
- $this->assertEquals($expected, $result, 'Greedy named grabs everything, rules are followed');
- }
- /**
- * Having greedNamed enabled should not capture routing.prefixes.
- *
- * @return void
- */
- public function testMatchGreedyNamedExcludesPrefixes() {
- Configure::write('Routing.prefixes', array('admin'));
- Router::reload();
- $route = new CakeRoute('/sales/*', array('controller' => 'sales', 'action' => 'index'));
- $this->assertFalse($route->match(array('controller' => 'sales', 'action' => 'index', 'admin' => 1)), 'Greedy named consume routing prefixes.');
- }
- /**
- * test that parsing array format named parameters works
- *
- * @return void
- */
- public function testParseArrayNamedParameters() {
- $route = new CakeRoute('/:controller/:action/*');
- $result = $route->parse('/tests/action/var[]:val1/var[]:val2');
- $expected = array(
- 'controller' => 'tests',
- 'action' => 'action',
- 'named' => array(
- 'var' => array(
- 'val1',
- 'val2'
- )
- ),
- 'pass' => array(),
- );
- $this->assertEquals($expected, $result);
- $result = $route->parse('/tests/action/theanswer[is]:42/var[]:val2/var[]:val3');
- $expected = array(
- 'controller' => 'tests',
- 'action' => 'action',
- 'named' => array(
- 'theanswer' => array(
- 'is' => 42
- ),
- 'var' => array(
- 'val2',
- 'val3'
- )
- ),
- 'pass' => array(),
- );
- $this->assertEquals($expected, $result);
- $result = $route->parse('/tests/action/theanswer[is][not]:42/theanswer[]:5/theanswer[is]:6');
- $expected = array(
- 'controller' => 'tests',
- 'action' => 'action',
- 'named' => array(
- 'theanswer' => array(
- 5,
- 'is' => array(
- 6,
- 'not' => 42
- )
- ),
- ),
- 'pass' => array(),
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test that match can handle array named parameters
- *
- * @return void
- */
- public function testMatchNamedParametersArray() {
- $route = new CakeRoute('/:controller/:action/*');
- $url = array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'filter' => array(
- 'one',
- 'model' => 'value'
- )
- );
- $result = $route->match($url);
- $expected = '/posts/index/filter%5B0%5D:one/filter%5Bmodel%5D:value';
- $this->assertEquals($expected, $result);
- $url = array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'filter' => array(
- 'one',
- 'model' => array(
- 'two',
- 'order' => 'field'
- )
- )
- );
- $result = $route->match($url);
- $expected = '/posts/index/filter%5B0%5D:one/filter%5Bmodel%5D%5B0%5D:two/filter%5Bmodel%5D%5Border%5D:field';
- $this->assertEquals($expected, $result);
- }
- /**
- * test restructuring args with pass key
- *
- * @return void
- */
- public function testPassArgRestructure() {
- $route = new CakeRoute('/:controller/:action/:slug', array(), array(
- 'pass' => array('slug')
- ));
- $result = $route->parse('/posts/view/my-title');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'view',
- 'slug' => 'my-title',
- 'pass' => array('my-title'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result, 'Slug should have moved');
- }
- /**
- * Test the /** special type on parsing.
- *
- * @return void
- */
- public function testParseTrailing() {
- $route = new CakeRoute('/:controller/:action/**');
- $result = $route->parse('/posts/index/1/2/3/foo:bar');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'pass' => array('1/2/3/foo:bar'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result);
- $result = $route->parse('/posts/index/http://example.com');
- $expected = array(
- 'controller' => 'posts',
- 'action' => 'index',
- 'pass' => array('http://example.com'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the /** special type on parsing - UTF8.
- *
- * @return void
- */
- public function testParseTrailingUTF8() {
- $route = new CakeRoute('/category/**', array('controller' => 'categories','action' => 'index'));
- $result = $route->parse('/category/%D9%85%D9%88%D8%A8%D8%A7%DB%8C%D9%84');
- $expected = array(
- 'controller' => 'categories',
- 'action' => 'index',
- 'pass' => array('موبایل'),
- 'named' => array()
- );
- $this->assertEquals($expected, $result);
- }
- /**
- * test that utf-8 patterns work for :section
- *
- * @return void
- */
- public function testUTF8PatternOnSection() {
- $route = new CakeRoute(
- '/:section',
- array('plugin' => 'blogs', 'controller' => 'posts' , 'action' => 'index' ),
- array(
- 'persist' => array('section'),
- 'section' => 'آموزش|weblog'
- )
- );
- $result = $route->parse('/%D8%A2%D9%85%D9%88%D8%B2%D8%B4');
- $expected = array('section' => 'آموزش', 'plugin' => 'blogs', 'controller' => 'posts', 'action' => 'index', 'pass' => array(), 'named' => array());
- $this->assertEquals($expected, $result);
- $result = $route->parse('/weblog');
- $expected = array('section' => 'weblog', 'plugin' => 'blogs', 'controller' => 'posts', 'action' => 'index', 'pass' => array(), 'named' => array());
- $this->assertEquals($expected, $result);
- }
- }
|