我目前正在开发一个存储敏感数据的项目,因此必须能够根据请求删除它们。
我想测试我的实体(患者)是否使用空电话号码保存到数据库中。首先要做的是:将参数传递给PatientDao::savePatient(PatientModel $patient)
,并查看其phoneNumber
属性。
所以这是PatientDao
界面:
interface PatientDao {
function savePatient(PatientModel $patient);
}
我的测试文件中的代码:
$this->patientDao // This is my mock
->expects($this->once())
->method('savePatient'); // savePatient() must be called once
$this->controller->handleMessage(...);
$patient = ??; // How can I get the patient to make assertions with it ?
我该怎么做,或者有没有其他方法可以确保患者使用空电话号码保存?
答案 0 :(得分:27)
您可以使用returnCallback()
对参数进行断言。请记住通过PHPUnit_Framework_Assert
静态调用assert函数,因为您无法在闭包中使用self
。
$this->patientDao
->expects($this->once())
->method('savePatient')
->will($this->returnCallback(function($patient) {
PHPUnit_Framework_Assert::assertNull($patient->getPhoneNumber());
}));
答案 1 :(得分:7)
这是我使用的技巧。我将这个私有方法添加到我的测试类中:
private function captureArg( &$arg ) {
return $this->callback( function( $argToMock ) use ( &$arg ) {
$arg = $argToMock;
return true;
} );
}
然后在设置模拟时:
$mock->expects( $this->once() )
->method( 'someMethod' )
->with( $this->captureArg( $arg ) );
之后,$arg
包含传递给mock的参数的值。
答案 2 :(得分:4)
使Mock对象方法返回第一个参数:
$this->patientDao // This is my mock
->expects($this->once())
->method('savePatient') // savePatient() must be called once
->with($this->returnArgument(0));
然后您可以断言它是NULL
。
答案 3 :(得分:0)
一件事-在闭包内部,您仍然可以访问$ this,在这种情况下,它可以为您提供:
$this->patientDao
->expects($this->once())
->method('savePatient')
->will($this->returnCallback(function($patient) {
$this->assertNull($patient->getPhoneNumber());
}));