8398c9048d
code was modified slightly, so the code differs from the original downloadable 1.9.5 version
192 lines
6.6 KiB
PHP
192 lines
6.6 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework
|
|
*
|
|
* LICENSE
|
|
*
|
|
* This source file is subject to the new BSD license that is bundled
|
|
* with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://framework.zend.com/license/new-bsd
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@zend.com so we can send you a copy immediately.
|
|
*
|
|
* @category Zend
|
|
* @package Zend_Controller
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @version $Id: UrlTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
|
*/
|
|
|
|
// Call Zend_Controller_Action_Helper_UrlTest::main() if this source file is executed directly.
|
|
if (!defined("PHPUnit_MAIN_METHOD")) {
|
|
define("PHPUnit_MAIN_METHOD", "Zend_Controller_Action_Helper_UrlTest::main");
|
|
}
|
|
|
|
require_once dirname(__FILE__) . '/../../../../TestHelper.php';
|
|
|
|
require_once "PHPUnit/Framework/TestCase.php";
|
|
require_once "PHPUnit/Framework/TestSuite.php";
|
|
|
|
require_once 'Zend/Controller/Action/Helper/Url.php';
|
|
|
|
require_once 'Zend/Controller/Front.php';
|
|
require_once 'Zend/Controller/Request/Http.php';
|
|
|
|
/**
|
|
* Test class for Zend_Controller_Action_Helper_Url.
|
|
*
|
|
* @category Zend
|
|
* @package Zend_Controller
|
|
* @subpackage UnitTests
|
|
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
* @group Zend_Controller
|
|
* @group Zend_Controller_Action
|
|
* @group Zend_Controller_Action_Helper
|
|
*/
|
|
class Zend_Controller_Action_Helper_UrlTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Runs the test methods of this class.
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function main()
|
|
{
|
|
require_once "PHPUnit/TextUI/TestRunner.php";
|
|
|
|
$suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Action_Helper_UrlTest");
|
|
$result = PHPUnit_TextUI_TestRunner::run($suite);
|
|
}
|
|
|
|
/**
|
|
* Sets up the fixture, for example, open a network connection.
|
|
* This method is called before a test is executed.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function setUp()
|
|
{
|
|
$this->front = Zend_Controller_Front::getInstance();
|
|
$this->front->resetInstance();
|
|
$this->front->setRequest(new Zend_Controller_Request_Http());
|
|
$this->helper = new Zend_Controller_Action_Helper_Url();
|
|
}
|
|
|
|
/**
|
|
* Tears down the fixture, for example, close a network connection.
|
|
* This method is called after a test is executed.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function tearDown()
|
|
{
|
|
unset($this->helper);
|
|
}
|
|
|
|
public function testSimpleWithAllParamsProducesAppropriateUrl()
|
|
{
|
|
$url = $this->helper->simple('baz', 'bar', 'foo', array('bat' => 'foo', 'ho' => 'hum'));
|
|
$this->assertEquals('/foo/bar/baz', substr($url, 0, 12));
|
|
$this->assertContains('/bat/foo', $url);
|
|
$this->assertContains('/ho/hum', $url);
|
|
}
|
|
|
|
public function testSimpleWithMissingControllerAndModuleProducesAppropriateUrl()
|
|
{
|
|
$request = $this->front->getRequest();
|
|
$request->setModuleName('foo')
|
|
->setControllerName('bar');
|
|
$url = $this->helper->simple('baz', null, null, array('bat' => 'foo', 'ho' => 'hum'));
|
|
$this->assertEquals('/foo/bar/baz', substr($url, 0, 12));
|
|
$this->assertContains('/bat/foo', $url);
|
|
$this->assertContains('/ho/hum', $url);
|
|
}
|
|
|
|
public function testSimpleWithDefaultModuleProducesUrlWithoutModuleSegment()
|
|
{
|
|
$url = $this->helper->simple('baz', 'bar', 'default', array('bat' => 'foo', 'ho' => 'hum'));
|
|
$this->assertEquals('/bar/baz', substr($url, 0, 8));
|
|
}
|
|
|
|
public function testUrlMethodCreatesUrlBasedOnNamedRouteAndPassedParameters()
|
|
{
|
|
$router = $this->front->getRouter();
|
|
$route = new Zend_Controller_Router_Route(
|
|
'foo/:action/:page',
|
|
array(
|
|
'module' => 'default',
|
|
'controller' => 'foobar',
|
|
'action' => 'bazbat',
|
|
'page' => 1
|
|
)
|
|
);
|
|
$router->addRoute('foo', $route);
|
|
$url = $this->helper->url(array('action' => 'bar', 'page' => 3), 'foo');
|
|
$this->assertEquals('/foo/bar/3', $url);
|
|
}
|
|
|
|
public function testUrlMethodCreatesUrlBasedOnNamedRouteAndDefaultParameters()
|
|
{
|
|
$router = $this->front->getRouter();
|
|
$route = new Zend_Controller_Router_Route(
|
|
'foo/:action/:page',
|
|
array(
|
|
'module' => 'default',
|
|
'controller' => 'foobar',
|
|
'action' => 'bazbat',
|
|
'page' => 1
|
|
)
|
|
);
|
|
$router->addRoute('foo', $route);
|
|
$url = $this->helper->url(array(), 'foo');
|
|
$this->assertEquals('/foo', $url);
|
|
}
|
|
|
|
public function testUrlMethodCreatesUrlBasedOnPassedParametersUsingDefaultRouteWhenNoNamedRoutePassed()
|
|
{
|
|
$this->front->getRouter()->addDefaultRoutes();
|
|
$this->front->addModuleDirectory(dirname(__FILE__) . '/../../_files/modules');
|
|
$url = $this->helper->url(array(
|
|
'module' => 'foo',
|
|
'controller' => 'bar',
|
|
'action' => 'baz',
|
|
'bat' => 'foo',
|
|
'ho' => 'hum'
|
|
));
|
|
$this->assertEquals('/foo/bar/baz', substr($url, 0, 12));
|
|
$this->assertContains('/bat/foo', $url);
|
|
$this->assertContains('/ho/hum', $url);
|
|
}
|
|
|
|
public function testDirectProxiesToSimple()
|
|
{
|
|
$url = $this->helper->direct('baz', 'bar', 'foo', array('bat' => 'foo', 'ho' => 'hum'));
|
|
$this->assertEquals('/foo/bar/baz', substr($url, 0, 12));
|
|
$this->assertContains('/bat/foo', $url);
|
|
$this->assertContains('/ho/hum', $url);
|
|
}
|
|
|
|
/**
|
|
* @group ZF-2822
|
|
*/
|
|
public function testBaseUrlIsAssembledIntoUrl()
|
|
{
|
|
$this->front->setBaseUrl('baseurl');
|
|
|
|
$request = $this->front->getRequest();
|
|
$request->setModuleName('module')
|
|
->setControllerName('controller');
|
|
|
|
$url = $this->helper->simple('action', null, null, array('foo' => 'bar'));
|
|
$this->assertEquals('/baseurl/module/controller/action/foo/bar', $url);
|
|
}
|
|
}
|
|
|
|
// Call Zend_Controller_Action_Helper_UrlTest::main() if this source file is executed directly.
|
|
if (PHPUnit_MAIN_METHOD == "Zend_Controller_Action_Helper_UrlTest::main") {
|
|
Zend_Controller_Action_Helper_UrlTest::main();
|
|
}
|