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/Layout/PluginTest.php

222 lines
7.4 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_Layout
* @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: PluginTest.php 17363 2009-08-03 07:40:18Z bkarwin $
*/
// Call Zend_LayoutTest::main() if this source file is executed directly.
if (!defined("PHPUnit_MAIN_METHOD")) {
define("PHPUnit_MAIN_METHOD", "Zend_Layout_PluginTest::main");
}
require_once dirname(dirname(dirname(__FILE__))) . '/TestHelper.php';
require_once "PHPUnit/Framework/TestCase.php";
require_once "PHPUnit/Framework/TestSuite.php";
require_once 'Zend/Layout/Controller/Plugin/Layout.php';
require_once 'Zend/Layout.php';
require_once 'Zend/Controller/Front.php';
require_once 'Zend/Controller/Action/HelperBroker.php';
require_once 'Zend/Controller/Request/Simple.php';
require_once 'Zend/Controller/Response/Cli.php';
/**
* Test class for Zend_Layout_Controller_Plugin_Layout
*
* @category Zend
* @package Zend_Layout
* @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_Layout
*/
class Zend_Layout_PluginTest 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_Layout_PluginTest");
$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()
{
Zend_Controller_Front::getInstance()->resetInstance();
Zend_Layout_PluginTest_Layout::resetMvcInstance();
if (Zend_Controller_Action_HelperBroker::hasHelper('Layout')) {
Zend_Controller_Action_HelperBroker::removeHelper('Layout');
}
if (Zend_Controller_Action_HelperBroker::hasHelper('viewRenderer')) {
Zend_Controller_Action_HelperBroker::removeHelper('viewRenderer');
}
}
/**
* Tears down the fixture, for example, close a network connection.
* This method is called after a test is executed.
*
* @return void
*/
public function tearDown()
{
Zend_Layout::resetMvcInstance();
}
public function testConstructorWithLayoutObject()
{
$layout = new Zend_Layout(array('mvcEnabled' => false));
$plugin = new Zend_Layout_Controller_Plugin_Layout($layout);
$this->assertSame($layout, $plugin->getLayout());
}
public function testGetLayoutReturnsNullWithNoLayoutPresent()
{
$plugin = new Zend_Layout_Controller_Plugin_Layout();
$this->assertNull($plugin->getLayout());
}
public function testLayoutAccessorsWork()
{
$plugin = new Zend_Layout_Controller_Plugin_Layout();
$this->assertNull($plugin->getLayout());
$layout = new Zend_Layout(array('mvcEnabled' => false));
$plugin->setlayout($layout);
$this->assertSame($layout, $plugin->getLayout());
}
public function testGetLayoutReturnsLayoutObjectWhenPulledFromPluginBroker()
{
$layout = Zend_Layout::startMvc();
$front = Zend_Controller_Front::getInstance();
$this->assertTrue($front->hasPlugin('Zend_Layout_Controller_Plugin_Layout'));
$plugin = $front->getPlugin('Zend_Layout_Controller_Plugin_Layout');
$this->assertSame($layout, $plugin->getLayout());
}
public function testPostDispatchRendersLayout()
{
$front = Zend_Controller_Front::getInstance();
$request = new Zend_Controller_Request_Simple();
$response = new Zend_Controller_Response_Cli();
$request->setDispatched(true);
$response->setBody('Application content');
$front->setRequest($request)
->setResponse($response);
$layout = Zend_Layout::startMvc();
$layout->setLayoutPath(dirname(__FILE__) . '/_files/layouts')
->setLayout('plugin.phtml')
->disableInflector();
$helper = Zend_Controller_Action_HelperBroker::getStaticHelper('layout');
$plugin = $front->getPlugin('Zend_Layout_Controller_Plugin_Layout');
$plugin->setResponse($response);
$helper->postDispatch();
$plugin->postDispatch($request);
$body = $response->getBody();
$this->assertContains('Application content', $body, $body);
$this->assertContains('Site Layout', $body, $body);
}
public function testPostDispatchDoesNotRenderLayoutWhenForwardDetected()
{
$front = Zend_Controller_Front::getInstance();
$request = new Zend_Controller_Request_Simple();
$response = new Zend_Controller_Response_Cli();
$request->setDispatched(false);
$response->setBody('Application content');
$front->setRequest($request)
->setResponse($response);
$layout = Zend_Layout::startMvc();
$layout->setLayoutPath(dirname(__FILE__) . '/_files/layouts')
->setLayout('plugin.phtml')
->disableInflector();
$plugin = $front->getPlugin('Zend_Layout_Controller_Plugin_Layout');
$plugin->setResponse($response);
$plugin->postDispatch($request);
$body = $response->getBody();
$this->assertContains('Application content', $body);
$this->assertNotContains('Site Layout', $body);
}
public function testPostDispatchDoesNotRenderLayoutWhenLayoutDisabled()
{
$front = Zend_Controller_Front::getInstance();
$request = new Zend_Controller_Request_Simple();
$response = new Zend_Controller_Response_Cli();
$request->setDispatched(true);
$response->setBody('Application content');
$front->setRequest($request)
->setResponse($response);
$layout = Zend_Layout::startMvc();
$layout->setLayoutPath(dirname(__FILE__) . '/_files/layouts')
->setLayout('plugin.phtml')
->disableInflector()
->disableLayout();
$plugin = $front->getPlugin('Zend_Layout_Controller_Plugin_Layout');
$plugin->setResponse($response);
$plugin->postDispatch($request);
$body = $response->getBody();
$this->assertContains('Application content', $body);
$this->assertNotContains('Site Layout', $body);
}
}
/**
* Zend_Layout extension to allow resetting MVC instance
*/
class Zend_Layout_PluginTest_Layout extends Zend_Layout
{
public static function resetMvcInstance()
{
self::$_mvcInstance = null;
}
}
// Call Zend_Layout_PluginTest::main() if this source file is executed directly.
if (PHPUnit_MAIN_METHOD == "Zend_Layout_PluginTest::main") {
Zend_Layout_PluginTest::main();
}