我想在 Zend Framework 3 中测试一个特定的控制器操作。因为我使用ZfcUser
(https://github.com/ZF-Commons/ZfcUser)和Bjyauthorize
(https://github.com/bjyoungblood/BjyAuthorize)我需要模拟一些查看助手。例如,我需要模拟isAllowed
视图助手并让它始终返回 true:
class MyTest extends AbstractControllerTestCase
{
public function setUp()
{
$this->setApplicationConfig(include 'config/application.config.php');
$bootstrap = \Zend\Mvc\Application::init(include 'config/application.config.php');
$serviceManager = $bootstrap->getServiceManager();
$viewHelperManager = $serviceManager->get('ViewHelperManager');
$mock = $this->getMockBuilder(IsAllowed::class)->disableOriginalConstructor()->getMock();
$mock->expects($this->any())->method('__invoke')->willReturn(true);
$viewHelperManager->setService('isAllowed', $mock);
$this->getApplication()->getServiceManager()->setAllowOverride(true);
$this->getApplication()->getServiceManager()->setService('ViewHelperManager', $viewHelperManager);
}
public function testViewAction()
{
$this->dispatch('/myuri');
$resp = $this->getResponse();
$this->assertResponseStatusCode(200);
#$this->assertModuleName('MyModule');
#$this->assertMatchedRouteName('mymodule/view');
}
}
在我的view.phtml
(将通过打开/调度/myuri
uri 呈现)中,我调用 view helper $this->isAllowed('my-resource')
。
但是我在执行时收到了响应代码 500 并出现异常失败testViewAction()
:
Exceptions raised:
Exception 'Zend\ServiceManager\Exception\ServiceNotFoundException' with message 'A plugin by the name "isAllowed" was not found in the plugin manager Zend\View\HelperPluginManager' in ../vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php:131
我怎样才能以某种方式将我的isAllowed
模拟注入视图助手管理器,让测试用例(testViewAction
/ $this->dispatch()
)通过。