我有兴趣在我的工作流程中添加单元测试,并已开始在运行 PHP 5.3.4 和 PHPUnit 3.7.13 的 Zend Framework 1.11 应用程序上创建一些测试
我编写的其中一个测试想要<h1>
在加载应用程序时检查响应中是否出现 an 。仅渲染视图脚本时测试通过,但是当我在主应用程序中将布局路径添加到 application.ini 时,测试失败,因为响应中未返回视图脚本(通过查看应用程序时没有错误浏览器,布局和视图正确呈现)。
当终止测试并输出 assertQueryContentContains() 用于检查 DOM 元素的内容时,它显示 layout.phtml 正在加载但被视为平面文件,将 PHP 代码显示为字符串而不是被解析。
有没有办法让单元测试加载整个 MVC 调度循环并以与通过浏览器运行相同的方式返回请求的内容?
提前致谢!
应用程序/配置/application.ini
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.layout.layout = "layout"
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.params.displayExceptions = 0
测试/bootstrap.php
/// Define path to application directory
defined('APPLICATION_PATH')
|| define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
// Define application environment
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'testing'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
'C:\wamp\bin\library',
get_include_path(),
)));
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();
测试/应用程序/控制器/IndexControllerTest.php
public function setUp()
{
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
parent::setUp();
}
public function testIndexAction()
{
$params = array('action' => 'index', 'controller' => 'index', 'module' => 'default');
$urlParams = $this->urlizeOptions($params);
$url = $this->url($urlParams);
$this->dispatch($url);
// assertions
$this->assertModule($urlParams['module']);
$this->assertController($urlParams['controller']);
$this->assertAction($urlParams['action']);
$this->assertQueryContentContains("div#jt h1", "Unit Testing");
}
更新 #1 只是为了在打印时更清楚一点 $this->getResponse()->getBody(); 屏幕我看到:
/**
* HTML
*/
<div class="container">
<?= $this->partial( 'partials/header.phtml' ); ?>
<?= $this->layout()->content; ?>
<div class="footer">
<p>© Company 2013</p>
</div>
</div>
/**
* More HTML
*/
当我期望 layout()->content; ?> 显示我正在测试的视图脚本的内容。