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/Plugin/BrokerTest.php

350 lines
13 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: BrokerTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
// Call Zend_Controller_Plugin_BrokerTest::main() if this source file is executed directly.
if (!defined("PHPUnit_MAIN_METHOD")) {
define("PHPUnit_MAIN_METHOD", "Zend_Controller_Plugin_BrokerTest::main");
$basePath = realpath(dirname(__FILE__) . str_repeat(DIRECTORY_SEPARATOR . '..', 3));
set_include_path(
$basePath . DIRECTORY_SEPARATOR . 'tests'
. PATH_SEPARATOR . $basePath . DIRECTORY_SEPARATOR . 'library'
. PATH_SEPARATOR . get_include_path()
);
}
require_once "PHPUnit/Framework/TestCase.php";
require_once "PHPUnit/Framework/TestSuite.php";
require_once 'Zend/Controller/Front.php';
require_once 'Zend/Controller/Action/HelperBroker.php';
require_once 'Zend/Controller/Request/Http.php';
require_once 'Zend/Controller/Request/Simple.php';
require_once 'Zend/Controller/Response/Cli.php';
/**
* @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_Plugin
*/
class Zend_Controller_Plugin_BrokerTest extends PHPUnit_Framework_TestCase
{
public $controller;
/**
* 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_Plugin_BrokerTest");
$result = PHPUnit_TextUI_TestRunner::run($suite);
}
public function setUp()
{
$this->controller = Zend_Controller_Front::getInstance();
$this->controller->resetInstance();
$this->controller->setParam('noViewRenderer', true)
->setParam('noErrorHandler', true);
}
public function testDuplicatePlugin()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
try {
$broker->registerPlugin($plugin);
$this->fail('Duplicate registry of plugin object should be disallowed');
} catch (Exception $expected) {
$this->assertContains('already', $expected->getMessage());
}
}
public function testUsingFrontController()
{
$this->controller->setControllerDirectory(dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . '_files');
$request = new Zend_Controller_Request_Http('http://framework.zend.com/empty');
$this->controller->setResponse(new Zend_Controller_Response_Cli());
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$this->controller->registerPlugin($plugin);
$this->controller->returnResponse(true);
$response = $this->controller->dispatch($request);
$this->assertEquals('123456', $response->getBody());
$this->assertEquals('123456', $plugin->getResponse()->getBody());
}
public function testUnregisterPluginWithObject()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$plugins = $broker->getPlugins();
$this->assertEquals(1, count($plugins));
$broker->unregisterPlugin($plugin);
$plugins = $broker->getPlugins();
$this->assertEquals(0, count($plugins));
}
public function testUnregisterPluginByClassName()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$plugins = $broker->getPlugins();
$this->assertEquals(1, count($plugins));
$broker->unregisterPlugin('Zend_Controller_Plugin_BrokerTest_TestPlugin');
$plugins = $broker->getPlugins();
$this->assertEquals(0, count($plugins));
}
public function testGetPlugins()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$plugins = $broker->getPlugins();
$this->assertEquals(1, count($plugins));
$this->assertSame($plugin, $plugins[0]);
}
public function testGetPluginByName()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$retrieved = $broker->getPlugin('Zend_Controller_Plugin_BrokerTest_TestPlugin');
$this->assertTrue($retrieved instanceof Zend_Controller_Plugin_BrokerTest_TestPlugin);
$this->assertSame($plugin, $retrieved);
}
public function testGetPluginByNameReturnsFalseWithBadClassName()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$retrieved = $broker->getPlugin('TestPlugin');
$this->assertFalse($retrieved);
}
public function testGetPluginByNameReturnsArray()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$plugin2 = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin2);
$retrieved = $broker->getPlugin('Zend_Controller_Plugin_BrokerTest_TestPlugin');
$this->assertTrue(is_array($retrieved));
$this->assertEquals(2, count($retrieved));
$this->assertSame($plugin, $retrieved[0]);
$this->assertSame($plugin2, $retrieved[1]);
}
public function testHasPlugin()
{
$broker = new Zend_Controller_Plugin_Broker();
$this->assertFalse($broker->hasPlugin('Zend_Controller_Plugin_BrokerTest_TestPlugin'));
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$this->assertTrue($broker->hasPlugin('Zend_Controller_Plugin_BrokerTest_TestPlugin'));
}
public function testBrokerCatchesExceptions()
{
$request = new Zend_Controller_Request_Http('http://framework.zend.com/empty');
$response = new Zend_Controller_Response_Cli();
$broker = new Zend_Controller_Plugin_Broker();
$broker->setResponse($response);
$broker->registerPlugin(new Zend_Controller_Plugin_BrokerTest_ExceptionTestPlugin());
try {
$broker->routeStartup($request);
$broker->routeShutdown($request);
$broker->dispatchLoopStartup($request);
$broker->preDispatch($request);
$broker->postDispatch($request);
$broker->dispatchLoopShutdown();
} catch (Exception $e) {
$this->fail('Broker should catch exceptions');
}
$this->assertTrue($response->hasExceptionOfMessage('routeStartup triggered exception'));
$this->assertTrue($response->hasExceptionOfMessage('routeShutdown triggered exception'));
$this->assertTrue($response->hasExceptionOfMessage('dispatchLoopStartup triggered exception'));
$this->assertTrue($response->hasExceptionOfMessage('preDispatch triggered exception'));
$this->assertTrue($response->hasExceptionOfMessage('postDispatch triggered exception'));
$this->assertTrue($response->hasExceptionOfMessage('dispatchLoopShutdown triggered exception'));
}
public function testRegisterPluginStackOrderIsSane()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin1 = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$plugin2 = new Zend_Controller_Plugin_BrokerTest_ExceptionTestPlugin();
$plugin3 = new Zend_Controller_Plugin_BrokerTest_TestPlugin2();
$broker->registerPlugin($plugin1, 5);
$broker->registerPlugin($plugin2, -5);
$broker->registerPlugin($plugin3, 2);
$plugins = $broker->getPlugins();
$expected = array(-5 => $plugin2, 2 => $plugin3, 5 => $plugin1);
$this->assertSame($expected, $plugins);
}
public function testRegisterPluginThrowsExceptionOnDuplicateStackIndex()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin1 = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$plugin2 = new Zend_Controller_Plugin_BrokerTest_ExceptionTestPlugin();
$broker->registerPlugin($plugin1, 5);
try {
$broker->registerPlugin($plugin2, 5);
$this->fail('Registering plugins with same stack index should raise exception');
} catch (Exception $e) {
}
}
public function testRegisterPluginStackOrderWithAutmaticNumbersIncrementsCorrectly()
{
$broker = new Zend_Controller_Plugin_Broker();
$plugin1 = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$plugin2 = new Zend_Controller_Plugin_BrokerTest_ExceptionTestPlugin();
$plugin3 = new Zend_Controller_Plugin_BrokerTest_TestPlugin2();
$broker->registerPlugin($plugin1, 2);
$broker->registerPlugin($plugin2, 3);
$broker->registerPlugin($plugin3);
$plugins = $broker->getPlugins();
$expected = array(2 => $plugin1, 3 => $plugin2, 4 => $plugin3);
$this->assertSame($expected, $plugins);
}
/**
* Test for ZF-2305
* @return void
*/
public function testRegisterPluginSetsRequestAndResponse()
{
$broker = new Zend_Controller_Plugin_Broker();
$request = new Zend_Controller_Request_Simple();
$response = new Zend_Controller_Response_Cli();
$broker->setRequest($request);
$broker->setResponse($response);
$plugin = new Zend_Controller_Plugin_BrokerTest_TestPlugin();
$broker->registerPlugin($plugin);
$this->assertSame($request, $plugin->getRequest());
$this->assertSame($response, $plugin->getResponse());
}
}
class Zend_Controller_Plugin_BrokerTest_TestPlugin extends Zend_Controller_Plugin_Abstract
{
public function routeStartup(Zend_Controller_Request_Abstract $request)
{
$this->getResponse()->appendBody('1');
}
public function routeShutdown(Zend_Controller_Request_Abstract $request)
{
$this->getResponse()->appendBody('2');
}
public function dispatchLoopStartup(Zend_Controller_Request_Abstract $request)
{
$this->getResponse()->appendBody('3');
}
public function preDispatch(Zend_Controller_Request_Abstract $request)
{
$this->getResponse()->appendBody('4');
}
public function postDispatch(Zend_Controller_Request_Abstract $request)
{
$this->getResponse()->appendBody('5');
}
public function dispatchLoopShutdown()
{
$this->getResponse()->appendBody('6');
}
}
class Zend_Controller_Plugin_BrokerTest_TestPlugin2 extends Zend_Controller_Plugin_BrokerTest_TestPlugin
{
}
class Zend_Controller_Plugin_BrokerTest_ExceptionTestPlugin extends Zend_Controller_Plugin_Abstract
{
public function routeStartup(Zend_Controller_Request_Abstract $request)
{
throw new Exception('routeStartup triggered exception');
}
public function routeShutdown(Zend_Controller_Request_Abstract $request)
{
throw new Exception('routeShutdown triggered exception');
}
public function dispatchLoopStartup(Zend_Controller_Request_Abstract $request)
{
throw new Exception('dispatchLoopStartup triggered exception');
}
public function preDispatch(Zend_Controller_Request_Abstract $request)
{
throw new Exception('preDispatch triggered exception');
}
public function postDispatch(Zend_Controller_Request_Abstract $request)
{
throw new Exception('postDispatch triggered exception');
}
public function dispatchLoopShutdown()
{
throw new Exception('dispatchLoopShutdown triggered exception');
}
}
// Call Zend_Controller_Plugin_BrokerTest::main() if this source file is executed directly.
if (PHPUnit_MAIN_METHOD == "Zend_Controller_Plugin_BrokerTest::main") {
Zend_Controller_Plugin_BrokerTest::main();
}