2

我开始使用 ZfcUser + BjyAuthorize 为 Zend Framework 2 项目进行单元测试。

我不是单元测试专家,所以我在这里找到了如何模拟 ZfcUser 。

现在我还必须模拟 BjyAuthorize。有没有人设法做到这一点?

4

1 回答 1

4

好吧,现在对此做出回应肯定为时已晚。

我已经找到了使用 Mock 对象的解决方案(我不喜欢使用模拟...),我找不到正确初始化 BjyAuthorize 的方法...

那么我的测试控制器扩展自 AbstractHttpControllerTestCase

在 testController::setUp() 我制作了这样的模拟对象:

    // Creating mock
    $mockBjy = $this->getMock("BjyAuthorize\Service\Authorize", array("isAllowed"), array($this->getApplicationConfig(), $this->getApplication()->getServiceManager()));

    // Bypass auth, force true
    $mockBjy->expects($this->any())
            ->method('isAllowed')
            ->will($this->returnValue(true)); 

    // Overriding BjyAuthorize\Service\Authorize service
    $this->getApplication()
         ->getServiceManager()
         ->setAllowOverride(true)
         ->setService('BjyAuthorize\Service\Authorize', $mockBjy);

虽然我不喜欢这个解决方案,我觉得它真的很难看,但我找不到其他方法来做到这一点。

于 2013-10-26T20:54:18.803 回答