0

我正在尝试在 phpspec 中测试一个类。该类是在 ZF2 中使用的常规服务类。

class GuestService implements ServiceLocatorAwareInterface
{
    public static function createWithServiceManager(ServiceLocatorInterface $serviceLocator)
    {
        $guestService = new GuestService();
        $guestService->setServiceLocator($serviceLocator);
        return $guestService;
    }

    public function setServiceLocator(ServiceLocatorInterface  $serviceLocator)
    {
        $this->services = $serviceLocator;
    } 
}

我的规格是:

class GuestServiceSpec extends ObjectBehavior
{
    function let(ServiceLocatorInterface $serviceManager)
    {
        $this->beConstructedThrough('createWithServiceManager' , [$serviceManager]);
    }
}

我很难理解 phpspec 将如何首先创建 serviceManager 对象来调用构造函数。在 Zend 中,我有一个工厂闭包,它允许这种构造与上面给出的静态方法非常相似。

我在phpspec 手册中看到了一个对象构造示例,它使用 Writer 对象传递给构造函数。然而,它没有解释这个 Writer 对象是如何创建的。

我可以在该页面上看到将对象传递给 phpspec 函数的类似示例。

function it_does_something_if_argument_is_false(Writer $writer)
{
    $this->beConstructedWith($writer, false);
    // constructed with second argument set to false
    // ...
}

但它没有解释 Writer 对象本身是如何构造的。serviceManager 将如何构建?

4

2 回答 2

0

在你的情况下$writer$serviceManagerstubs。PHPSpec 解析方法中的类型提示(WriterServiceLocatorInterface)并使用反射创建存根。只有原始类的副本具有复制的方法,但没有实现。

你可以在这里阅读更多

于 2015-04-30T14:07:48.193 回答
0

更准确地说,$writer$serviceManager测试双打

如果您测试不依赖于$serviceManagerPHPSpec 将创建的任何方法,则它是一个虚拟对象 - 一个没有任何行为的空对象。

您可以从Konstantin (@everzet)演示文稿中了解更多关于测试替身的信息: https ://youtu.be/X6y-OyMPqfw?t=12m0s

于 2015-05-03T18:32:26.563 回答