按照这种方式对 Zend Framework 2 应用程序进行单元测试,我正在使用 ZfcUser 并尝试在我的控制器中测试一些操作。但是当执行测试时,我得到了错误,因为我正在使用$this->zfcUserIdentity()
在我的视图中获取用户名。
我该如何做这个测试?我想模拟这种方法,但我不知道该怎么做。
按照这种方式对 Zend Framework 2 应用程序进行单元测试,我正在使用 ZfcUser 并尝试在我的控制器中测试一些操作。但是当执行测试时,我得到了错误,因为我正在使用$this->zfcUserIdentity()
在我的视图中获取用户名。
我该如何做这个测试?我想模拟这种方法,但我不知道该怎么做。
您可以查看 ZfcUser 测试:https ://github.com/ZF-Commons/ZfcUser/blob/master/tests/ZfcUserTest/Controller/UserControllerTest.php#L61-L279
基本上,您必须模拟 ZfcUserIdentity 控制器插件并告诉控制器插件管理器使用该模拟。
我在我的AbstractHttpControllerTestCase
:
/**
* @param array $roles e.g. ['admin']
*/
protected function login($roles) {
$userMock = $this->getMock('Application\Entity\User', [], [], '', false);
$userMock->expects($this->any())
->method('getRoles')->will($this->returnValue($roles));
$storageMock = $this->getMock('\Zend\Authentication\Storage\NonPersistent');
$storageMock->expects($this->any())
->method('isEmpty')->will($this->returnValue(false));
$storageMock->expects($this->any())
->method('read')->will($this->returnValue($userMock));
$sm = $this->getApplicationServiceLocator();
$auth = $sm->get('Zend\Authentication\AuthenticationService');
$auth->setStorage($storageMock);
}
然后在我的测试中:
$this->login(['admin']);
$this->dispatch($url);