mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-18 18:46:17 +00:00
Updating Dispatcher test cases for new Router parameter features
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6492 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
ab50975306
commit
195ad336a5
1 changed files with 3 additions and 3 deletions
|
@ -1010,20 +1010,20 @@ class DispatcherTest extends UnitTestCase {
|
|||
$_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] = 'PUT';
|
||||
|
||||
$result = $dispatcher->parseParams('/posts/5');
|
||||
$expected = array('pass' => array(), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'edit', '[method]' => 'PUT', 'form' => array(), 'url' => array());
|
||||
$expected = array('pass' => array('5'), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'edit', '[method]' => 'PUT', 'form' => array(), 'url' => array());
|
||||
$this->assertEqual($result, $expected);
|
||||
|
||||
unset($_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE']);
|
||||
$_SERVER['REQUEST_METHOD'] = 'GET';
|
||||
|
||||
$result = $dispatcher->parseParams('/posts/5');
|
||||
$expected = array('pass' => array(), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'view', '[method]' => 'GET', 'form' => array(), 'url' => array());
|
||||
$expected = array('pass' => array('5'), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'view', '[method]' => 'GET', 'form' => array(), 'url' => array());
|
||||
$this->assertEqual($result, $expected);
|
||||
|
||||
$_POST['_method'] = 'PUT';
|
||||
|
||||
$result = $dispatcher->parseParams('/posts/5');
|
||||
$expected = array('pass' => array(), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'edit', '[method]' => 'PUT', 'form' => array(), 'url' => array());
|
||||
$expected = array('pass' => array('5'), 'named' => array(), 'id' => '5', 'plugin' => null, 'controller' => 'posts', 'action' => 'edit', '[method]' => 'PUT', 'form' => array(), 'url' => array());
|
||||
$this->assertEqual($result, $expected);
|
||||
unset($_POST['_method']);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue