我在Laravel docs中看到可以设置这样的测试期望:
Cache::shouldReceive('get')
->once()
->with('key')
->andReturn('value');
然后我在PHPunit docs中看到灵活的参数匹配可能是这样的:$this->stringContains('Something')
。
但是当我编辑我的测试时:
Log::shouldReceive('error')
->once();
->with($this->stringContains('Contact does not exist'));
...然后我收到以下错误:
Mockery\Exception\NoMatchingExpectationException: No matching handler found for Mockery_1_Illuminate_Log_Writer::error("Contact does not exist blah blah etc").
Either the method was unexpected or its arguments matched no expected argument list for this method
如何实现目标(在Log::shouldReceive
内灵活的参数匹配)?
P.S。我也试过->with(\PHPUnit\Framework\Assert::stringContains('Contact does not exist'))
。
答案 0 :(得分:1)
Facade的模拟功能使用Mockery
来生成模拟对象。 stringContains()
是PHPUnit模拟对象提供的功能。这两个不兼容。
您需要使用Mockery提供的argument validation方法。
我的第一次尝试是使用使用正则表达式的\Mockery::pattern()
匹配器:
Log::shouldReceive('error')
->once();
->with(\Mockery::pattern('/Contact does not exist/'));
另一种选择是使用\Mockery::on()
匹配器,它允许您使用Closure来提供复杂的参数匹配逻辑。
Log::shouldReceive('error')
->once();
->with(\Mockery::on(function ($arg) {
return stripos($arg, 'Contact does not exist') !== false;
}));