我正在尝试在PHPUnit测试中模拟Predis客户端。当我调用方法时,我试图模拟出来,在测试结束时,PHPUnit告诉我没有满足期望。
这是一个重现我的问题的代码示例:
class MockRedisTest extends \PHPUnit_Framework_TestCase {
private $mockRedis;
public function testMockRedis() {
$mockRedis = $this->getMock('Predis\\Client');
$mockRedis->expects( $this->once())
->method("exists")
->with($this->equalTo("query-key"))
->will($this->returnValue(true));
$mockRedis->exists("query-key");
}
}
PHPUnit认为该方法未被调用:
1)MockRedisTest :: testMockRedis 方法名称的期望失败等于1次调用时。 预计方法被调用1次,实际上被称为0次。
为什么呢?是因为Predis客户端似乎使用__call来响应与redis命令匹配的方法调用吗?
更新:我得到的印象是它与__call方法有关。将代码更改为有效:
public function testMockRedis() {
$mockRedis = $this->getMock('Predis\\Client');
$mockRedis->expects( $this->once())
->method("__call")
->with("exists", $this->equalTo(array("query-key")))
->will($this->returnValue(true));
$mockRedis->exists("query-key");
}
不确定我对此感到满意。有没有更好的方法来模拟使用__call代理方法的类?
答案 0 :(得分:8)
我认为你可以使用
$mockRedis = $this->getMock('Predis\\Client', array('exists'));
// ...
强制模拟对象了解你的魔法功能。这限制了mock对方法exists()
的功能。你必须具体包括其他所有被嘲笑的方法。
答案 1 :(得分:0)
如果要模拟特定服务器配置文件并确保不调用其他服务器版本的方法,请使用
<?php
$mockRedis = $this->getMock('Predis\\Client', array_keys((new Predis\Profiles\ServerVersion26)->getSupportedCommands()));
答案 2 :(得分:0)
对于Phpunit 5,请使用
$this->createPartialMock('Predis\\Client', ['exists']);
让你的模拟知道&#34;存在&#34;方法(或任何其他redis本机命令)