如何ViewModel
在 ZF2/ZF3 中捕获控制器动作的 ( ) 输出?
背景:
我正在为 Zend Framework 3 应用程序(刚从 ZF2 迁移)编写一些集成测试。我正在使用 PHPUnitv6.2.2
和 Zend\Test v3.1.0
。我想测试从调用路由的那一刻到保存/检索数据的那一刻的过程部分。这意味着测试所有控制器操作的方向:
- 数据按预期保存(为此我想调用路由/操作,然后检查新的数据库状态);
- 数据按预期检索(为此我想调用路由/动作并检查动作的输出)。
第一个方向很明确:调用路由后,我只需启动普通的数据库请求并检查是否存在预期的变化。
public function testBuzAction()
{
$this->dispatch('/foo/bar/buz');
// Here might be optionally some asserts, whether the correct action is called...
// Here are the database checks...
}
但是对于另一个方向,我们需要ViewModel
动作返回的 , 。
public function testBuzAction()
{
$this->dispatch('/foo/bar/buz');
// Here might be optionally some asserts, whether the correct action is called...
// Here is the ViewModel output of the Bar#buzAction() analyzed.
}
如何在 PHPUnit 测试中获取操作的输出?