96 lines
3.6 KiB
PHP
96 lines
3.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_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: FunctionalTest.php 17363 2009-08-03 07:40:18Z bkarwin $
|
||
|
*/
|
||
|
|
||
|
// Call Zend_Layout_FunctionalTest::main() if this source file is executed directly.
|
||
|
if (!defined("PHPUnit_MAIN_METHOD")) {
|
||
|
define("PHPUnit_MAIN_METHOD", "Zend_Layout_FunctionalTest::main");
|
||
|
}
|
||
|
|
||
|
require_once dirname(__FILE__) . '/../../TestHelper.php';
|
||
|
require_once 'Zend/Test/PHPUnit/ControllerTestCase.php';
|
||
|
|
||
|
require_once 'Zend/Controller/Plugin/ErrorHandler.php';
|
||
|
|
||
|
/**
|
||
|
* @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_FunctionalTest extends Zend_Test_PHPUnit_ControllerTestCase
|
||
|
{
|
||
|
/**
|
||
|
* Runs the test methods of this class.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public static function main()
|
||
|
{
|
||
|
require_once "PHPUnit/TextUI/TestRunner.php";
|
||
|
|
||
|
$suite = new PHPUnit_Framework_TestSuite(__CLASS__);
|
||
|
$result = PHPUnit_TextUI_TestRunner::run($suite);
|
||
|
}
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->bootstrap = array($this, 'appBootstrap');
|
||
|
parent::setUp();
|
||
|
}
|
||
|
|
||
|
public function appBootstrap()
|
||
|
{
|
||
|
$this->frontController->setControllerDirectory(dirname(__FILE__) . '/_files/functional-test-app/controllers/');
|
||
|
|
||
|
// create an instance of the ErrorHandler so we can make sure it will point to our specially named ErrorController
|
||
|
$plugin = new Zend_Controller_Plugin_ErrorHandler();
|
||
|
$plugin->setErrorHandlerController('zend-layout-functional-test-error')
|
||
|
->setErrorHandlerAction('error');
|
||
|
$this->frontController->registerPlugin($plugin, 100);
|
||
|
|
||
|
Zend_Layout::startMvc(dirname(__FILE__) . '/_files/functional-test-app/layouts/');
|
||
|
}
|
||
|
|
||
|
public function testMissingViewScriptDoesNotDoubleRender()
|
||
|
{
|
||
|
// go to the test controller for this funcitonal test
|
||
|
$this->dispatch('/zend-layout-functional-test-test/missing-view-script');
|
||
|
$this->assertEquals(trim($this->response->getBody()), "[DEFAULT_LAYOUT_START]\n(ErrorController::errorAction output)[DEFAULT_LAYOUT_END]");
|
||
|
}
|
||
|
|
||
|
public function testMissingViewScriptDoesDoubleRender()
|
||
|
{
|
||
|
Zend_Controller_Action_HelperBroker::getStack()->offsetSet(-91, new Zend_Controller_Action_Helper_ViewRenderer());
|
||
|
// go to the test controller for this funcitonal test
|
||
|
$this->dispatch('/zend-layout-functional-test-test/missing-view-script');
|
||
|
$this->assertEquals(trim($this->response->getBody()), "[DEFAULT_LAYOUT_START]\n[DEFAULT_LAYOUT_START]\n[DEFAULT_LAYOUT_END]\n(ErrorController::errorAction output)[DEFAULT_LAYOUT_END]");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
// Call Zend_Layout_FunctionalTest::main() if this source file is executed directly.
|
||
|
if (PHPUnit_MAIN_METHOD == "Zend_Layout_FunctionalTest::main") {
|
||
|
Zend_Layout_FunctionalTest::main();
|
||
|
}
|