19

我有一个需要模拟的课程:

class MessagePublisher
{
    /**
     * @param \PhpAmqpLib\Message\AMQPMessage $msg
     * @param string $exchange - if not provided then one passed in constructor is used
     * @param string $routing_key
     * @param bool $mandatory
     * @param bool $immediate
     * @param null $ticket
     */
    public function publish(AMQPMessage $msg, $exchange = "", $routing_key = "", $mandatory = false, $immediate = false, $ticket = null)
    {
        if (empty($exchange)) {
            $exchange = $this->exchangeName;
        }

        $this->channel->basic_publish($msg, $exchange, $routing_key, $mandatory, $immediate, $ticket);
    }
}

我正在使用嘲弄 0.7.2

$mediaPublisherMock = \Mockery::mock('MessagePublisher')
    ->shouldReceive('publish')
    ->withAnyArgs()
    ->times(3)
    ->andReturn(null);

不幸的是,由于这个错误,我的测试失败了

call_user_func_array() 期望参数 1 是一个有效的回调,类 'Mockery\Expectation' 在第 54 行的 /vendor/mockery/mockery/library/Mockery/CompositeExpectation.php 中没有方法 'publish'

我尝试调试我发现此代码中的测试失败

public function __call($method, array $args)
{
    foreach ($this->_expectations as $expectation) {
        call_user_func_array(array($expectation, $method), $args);
    }
    return $this;
}

其中
$method = 'publish'
$args = array()
$expectation 是 Mockery\Expectation 对象 () 的实例

我正在使用 php 5.3.10 - 知道有什么问题吗?

4

3 回答 3

59

发生这种情况是因为您将模拟期望分配给$mediaPublisherMock,而不是模拟本身。尝试将该getMock方法添加到该调用的末尾,例如:

$mediaPublisherMock = \Mockery::mock('MessagePublisher')
    ->shouldReceive('publish')
    ->withAnyArgs()
    ->times(3)
    ->andReturn(null)
    ->getMock();
于 2012-10-17T10:07:18.280 回答
2

好的问题通过使用标准的 PhpUnit Mock 库解决

这有效:

$mediaPublisherMock = $this->getMock('Mrok\Model\MessagePublisher', array('publish'), array(), '', false);
$mediaPublisherMock->expects($this->once())
    ->method('publish');

为什么我没有从这个开始;)

于 2012-10-13T21:26:21.577 回答
0

我相信 $expectation 应该是你的课,MessagePublisher

于 2012-10-13T20:52:22.857 回答