| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <?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-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- // 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 '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-2015 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()
- {
- $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();
- }
|