You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Controller/Router/Route/HostnameTest.php

276 lines
8.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: HostnameTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
/** Test helper */
require_once dirname(__FILE__) . '/../../../../TestHelper.php';
/** Zend_Controller_Router_Route_Hostname */
require_once 'Zend/Controller/Router/Route/Hostname.php';
/** Zend_Controller_Request_Http */
require_once 'Zend/Controller/Request/Http.php';
/** PHPUnit test case */
require_once 'PHPUnit/Framework/TestCase.php';
if (!defined('PHPUnit_MAIN_METHOD')) {
define('PHPUnit_MAIN_METHOD', 'Zend_Controller_Router_Route_HostnameTest::main');
}
/**
* @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_Router
*/
class Zend_Controller_Router_Route_HostnameTest extends PHPUnit_Framework_TestCase
{
/**
* Runs the test methods of this class.
*
* @access public
* @static
*/
public static function main()
{
require_once "PHPUnit/TextUI/TestRunner.php";
$suite = new PHPUnit_Framework_TestSuite("Zend_Controller_Router_Route_HostnameTest");
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
public function testCorrectStaticHostMatch()
{
$route = $this->_getStaticHostRoute();
$values = $route->match($this->_getRequest('www.zend.com'));
$this->assertEquals('ctrl', $values['controller']);
}
public function testHostMatchWithPort()
{
$route = $this->_getStaticHostRoute();
$values = $route->match($this->_getRequest('www.zend.com:666'));
$this->assertEquals('ctrl', $values['controller']);
}
public function testWrongStaticHostMatch()
{
$route = $this->_getStaticHostRoute();
$values = $route->match($this->_getRequest('foo.zend.com'));
$this->assertFalse($values);
}
public function testCorrectHostMatch()
{
$route = $this->_getHostRoute();
$values = $route->match($this->_getRequest('foo.zend.com'));
$this->assertEquals('ctrl', $values['controller']);
}
public function testWrongHostMatch()
{
$route = $this->_getHostRoute();
$values = $route->match($this->_getRequest('www.zend.com'));
$this->assertFalse($values);
}
public function testAssembleStaticHost()
{
$route = $this->_getStaticHostRoute();
$this->assertRegexp('/[^a-z0-9]?www\.zend\.com$/i', $route->assemble());
}
public function testAssembleHost()
{
$route = $this->_getHostRoute();
$this->assertRegexp('/[^a-z0-9]?foo\.zend\.com$/i', $route->assemble(array('subdomain' => 'foo')));
}
public function testAssembleHostWithMissingParam()
{
$route = $this->_getHostRoute();
try {
$route->assemble();
$this->fail('An expected Zend_Controller_Router_Exception has not been raised');
} catch (Zend_Controller_Router_Exception $expected) {
$this->assertContains('subdomain is not specified', $expected->getMessage());
}
}
public function testAssembleHostWithDefaultParam()
{
$route = $this->_getHostRouteWithDefault();
$this->assertRegexp('/[^a-z0-9]?bar\.zend\.com$/i', $route->assemble());
}
public function testHostGetDefault()
{
$route = $this->_getHostRouteWithDefault();
$this->assertEquals('bar', $route->getDefault('subdomain'));
}
public function testHostGetNonExistentDefault()
{
$route = $this->_getHostRouteWithDefault();
$this->assertEquals(null, $route->getDefault('blah'));
}
public function testHostGetDefaults()
{
$route = $this->_getHostRouteWithDefault();
$defaults = $route->getDefaults();
$this->assertEquals('bar', $defaults['subdomain']);
}
public function testRouteWithHostname()
{
$request = new Zend_Controller_Router_RewriteTest_Request_Stub('www.zend.com');
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com', array('controller' => 'host-foo', 'action' => 'host-bar'));
$values = $route->match($request);
$this->assertEquals('host-foo', $values['controller']);
$this->assertEquals('host-bar', $values['action']);
}
public function testSchemeMatch()
{
$request = new Zend_Controller_Router_RewriteTest_Request_Stub('www.zend.com', 'https');
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com', array('controller' => 'host-foo', 'action' => 'host-bar'), array(), 'https');
$values = $route->match($request);
$this->assertEquals('host-foo', $values['controller']);
$this->assertEquals('host-bar', $values['action']);
}
public function testSchemeNoMatch()
{
$request = new Zend_Controller_Router_RewriteTest_Request_Stub('www.zend.com', 'http');
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com', array('controller' => 'host-foo', 'action' => 'host-bar'), array(), 'https');
$values = $route->match($request);
$this->assertFalse($values);
}
public function testAutomaticSchemeAssembling()
{
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com', array('controller' => 'host-foo', 'action' => 'host-bar'), array());
$url = $route->assemble();
$this->assertEquals('http://www.zend.com', $url);
}
public function testForcedSchemeAssembling()
{
$request = new Zend_Controller_Router_RewriteTest_Request_Stub('www.zend.com');
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com', array('controller' => 'host-foo', 'action' => 'host-bar'), array(), 'https');
$route->setRequest($request);
$url = $route->assemble();
$this->assertEquals('https://www.zend.com', $url);
}
protected function _getStaticHostRoute()
{
$route = new Zend_Controller_Router_Route_Hostname('www.zend.com',
array('controller' => 'ctrl',
'action' => 'act'));
return $route;
}
protected function _getHostRoute()
{
$route = new Zend_Controller_Router_Route_Hostname(':subdomain.zend.com',
array('controller' => 'ctrl',
'action' => 'act'),
array('subdomain' => '(foo|bar)'));
return $route;
}
protected function _getHostRouteWithDefault()
{
$route = new Zend_Controller_Router_Route_Hostname(':subdomain.zend.com',
array('controller' => 'ctrl',
'action' => 'act',
'subdomain' => 'bar'),
array('subdomain' => '(foo|bar)'));
return $route;
}
protected function _getRequest($host) {
return new Zend_Controller_Router_RewriteTest_Request_Stub($host);
}
}
/**
* Zend_Controller_RouterTest_Request_Stub - request object for route testing
*/
class Zend_Controller_Router_RewriteTest_Request_Stub extends Zend_Controller_Request_Abstract
{
protected $_host;
protected $_scheme;
public function __construct($host, $scheme = 'http') {
$this->_host = $host;
$this->_scheme = $scheme;
}
public function getHttpHost() {
return $this->_host;
}
public function getScheme() {
return $this->_scheme;
}
}
if (PHPUnit_MAIN_METHOD == "Zend_Controller_Router_Route_HostnameTest::main") {
Zend_Controller_Router_Route_HostnameTest::main();
}