/standard/tags/release-1.0.4/tests/Zend/Controller/Plugin/BrokerTest.php
https://github.com/jorgenils/zend-framework · PHP · 299 lines · 248 code · 43 blank · 8 comment · 3 complexity · 194cff848b1fe74f7322b1d0e16188dc MD5 · raw file
- <?php
- // 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/Response/Cli.php';
- 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);
- }
- }
- 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();
- }