| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.2.1
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Routing\Route;
- use Cake\Routing\Router;
- use Cake\Routing\Route\InflectedRoute;
- use Cake\TestSuite\TestCase;
- /**
- * Test case for InflectedRoute
- */
- class InflectedRouteTest extends TestCase
- {
- /**
- * test that routes match their pattern.
- *
- * @return void
- */
- public function testMatchBasic()
- {
- $route = new InflectedRoute('/:controller/:action/:id', ['plugin' => null]);
- $result = $route->match(['controller' => 'Posts', 'action' => 'my_view', 'plugin' => null]);
- $this->assertFalse($result);
- $result = $route->match([
- 'plugin' => null,
- 'controller' => 'Posts',
- 'action' => 'my_view',
- 0
- ]);
- $this->assertFalse($result);
- $result = $route->match([
- 'plugin' => null,
- 'controller' => 'MyPosts',
- 'action' => 'my_view',
- 'id' => 1
- ]);
- $this->assertEquals('/my_posts/my_view/1', $result);
- $route = new InflectedRoute('/', ['controller' => 'Pages', 'action' => 'my_view', 'home']);
- $result = $route->match(['controller' => 'Pages', 'action' => 'my_view', 'home']);
- $this->assertEquals('/', $result);
- $result = $route->match(['controller' => 'Pages', 'action' => 'display', 'about']);
- $this->assertFalse($result);
- $route = new InflectedRoute('/blog/:action', ['controller' => 'Posts']);
- $result = $route->match(['controller' => 'Posts', 'action' => 'my_view']);
- $this->assertEquals('/blog/my_view', $result);
- $result = $route->match(['controller' => 'Posts', 'action' => 'my_view', 'id' => 2]);
- $this->assertEquals('/blog/my_view?id=2', $result);
- $result = $route->match(['controller' => 'Posts', 'action' => 'my_view', 1]);
- $this->assertFalse($result);
- $route = new InflectedRoute('/foo/:controller/:action', ['action' => 'index']);
- $result = $route->match(['controller' => 'Posts', 'action' => 'my_view']);
- $this->assertEquals('/foo/posts/my_view', $result);
- $route = new InflectedRoute('/:plugin/:id/*', ['controller' => 'Posts', 'action' => 'my_view']);
- $result = $route->match([
- 'plugin' => 'TestPlugin',
- 'controller' => 'Posts',
- 'action' => 'my_view',
- 'id' => '1'
- ]);
- $this->assertEquals('/test_plugin/1/', $result);
- $result = $route->match([
- 'plugin' => 'TestPlugin',
- 'controller' => 'Posts',
- 'action' => 'my_view',
- 'id' => '1',
- '0'
- ]);
- $this->assertEquals('/test_plugin/1/0', $result);
- $result = $route->match([
- 'plugin' => 'TestPlugin',
- 'controller' => 'Nodes',
- 'action' => 'my_view',
- 'id' => 1
- ]);
- $this->assertFalse($result);
- $result = $route->match([
- 'plugin' => 'TestPlugin',
- 'controller' => 'Posts',
- 'action' => 'edit',
- 'id' => 1
- ]);
- $this->assertFalse($result);
- $route = new InflectedRoute('/admin/subscriptions/:action/*', [
- 'controller' => 'Subscribe', 'prefix' => 'admin'
- ]);
- $result = $route->match([
- 'controller' => 'Subscribe',
- 'prefix' => 'admin',
- 'action' => 'edit_admin_e',
- 1
- ]);
- $expected = '/admin/subscriptions/edit_admin_e/1';
- $this->assertEquals($expected, $result);
- $route = new InflectedRoute('/:controller/:action-:id');
- $result = $route->match([
- 'controller' => 'MyPosts',
- 'action' => 'my_view',
- 'id' => 1
- ]);
- $this->assertEquals('/my_posts/my_view-1', $result);
- $route = new InflectedRoute('/:controller/:action/:slug-:id', [], ['id' => Router::ID]);
- $result = $route->match([
- 'controller' => 'MyPosts',
- 'action' => 'my_view',
- 'id' => 1,
- 'slug' => 'the-slug'
- ]);
- $this->assertEquals('/my_posts/my_view/the-slug-1', $result);
- }
- /**
- * test the parse method of InflectedRoute.
- *
- * @return void
- */
- public function testParse()
- {
- $route = new InflectedRoute('/:controller/:action/:id', [], ['id' => Router::ID]);
- $route->compile();
- $result = $route->parse('/my_posts/my_view/1', 'GET');
- $this->assertEquals('MyPosts', $result['controller']);
- $this->assertEquals('my_view', $result['action']);
- $this->assertEquals('1', $result['id']);
- $route = new InflectedRoute('/:controller/:action-:id');
- $route->compile();
- $result = $route->parse('/my_posts/my_view-1', 'GET');
- $this->assertEquals('MyPosts', $result['controller']);
- $this->assertEquals('my_view', $result['action']);
- $this->assertEquals('1', $result['id']);
- $route = new InflectedRoute('/:controller/:action/:slug-:id', [], ['id' => Router::ID]);
- $route->compile();
- $result = $route->parse('/my_posts/my_view/the-slug-1', 'GET');
- $this->assertEquals('MyPosts', $result['controller']);
- $this->assertEquals('my_view', $result['action']);
- $this->assertEquals('1', $result['id']);
- $this->assertEquals('the-slug', $result['slug']);
- $route = new InflectedRoute(
- '/admin/:controller',
- ['prefix' => 'admin', 'action' => 'index']
- );
- $route->compile();
- $result = $route->parse('/admin/', 'GET');
- $this->assertFalse($result);
- $result = $route->parse('/admin/my_posts', 'GET');
- $this->assertEquals('MyPosts', $result['controller']);
- $this->assertEquals('index', $result['action']);
- $route = new InflectedRoute(
- '/media/search/*',
- ['controller' => 'Media', 'action' => 'search_it']
- );
- $result = $route->parse('/media/search', 'GET');
- $this->assertEquals('Media', $result['controller']);
- $this->assertEquals('search_it', $result['action']);
- $this->assertEquals([], $result['pass']);
- $result = $route->parse('/media/search/tv_shows', 'GET');
- $this->assertEquals('Media', $result['controller']);
- $this->assertEquals('search_it', $result['action']);
- $this->assertEquals(['tv_shows'], $result['pass']);
- }
- /**
- * Test that parse() checks methods.
- *
- * @return void
- */
- public function testParseMethodMatch()
- {
- $route = new InflectedRoute('/:controller/:action', ['_method' => 'POST']);
- $this->assertFalse($route->parse('/blog_posts/add_new', 'GET'));
- $result = $route->parse('/blog_posts/add_new', 'POST');
- $this->assertEquals('BlogPosts', $result['controller']);
- $this->assertEquals('add_new', $result['action']);
- }
- /**
- * @return void
- */
- public function testMatchThenParse()
- {
- $route = new InflectedRoute('/plugin/:controller/:action', [
- 'plugin' => 'Vendor/PluginName'
- ]);
- $url = $route->match([
- 'plugin' => 'Vendor/PluginName',
- 'controller' => 'ControllerName',
- 'action' => 'action_name'
- ]);
- $expectedUrl = '/plugin/controller_name/action_name';
- $this->assertEquals($expectedUrl, $url);
- $result = $route->parse($expectedUrl, 'GET');
- $this->assertEquals('ControllerName', $result['controller']);
- $this->assertEquals('action_name', $result['action']);
- $this->assertEquals('Vendor/PluginName', $result['plugin']);
- }
- }
|