PHPUnit 和抽象类:如何测试接受参数和其他具体方法的具体构造函数
PHPUnit and Abstract classes: how to test concrete constructor that accepts parameters and other concrete methods
我有一个非常简单的 class 如下所示:
abstract class Person
{
private $id;
private $createdOn;
// ... More private properties
protected $unfound = array();
构造函数对传递的数组 $data 执行 foreach,并使用正确的方法为属性赋值。
如果该方法不存在,则将密钥添加到受保护的数组中以保留它的踪迹(我将其称为 $unfound,只是为了原始!)。
public function __construct($data)
{
foreach ($data as $field => $value)
{
$method = 'set' . ucfirst($field);
if (method_exists($this, $method))
{
$this->$method($value);
}
else
{
$this->unfound[] = $field;
}
}
}
设置属性值的方法列表
public function setId($id) {
$this->id = $id;
}
public function setCreatedOn($createdOn) {
$this->createdOn = $createdOn;
}
以及获取这些分配值的方法列表
public function getId() {
return $this->id;
}
public function getCreatedOn() {
return $this->createdOn;
}
} // END of the class
如您所见,class 没有执行任何复杂的任务:它接受像
这样的数组
array(
'id' => 4,
'createdOn' => '2015-01-07 20:50:00',
'unknownVar' => 'mah'
// ... Other properties to set
);
所以class循环遍历数组并使用键调用正确的方法来设置值。我认为没什么复杂的。
更复杂的是对其进行测试。
因为它是一个抽象class,我不能直接实例化它,但我必须模拟它。
我的问题是我无法将正确的参数传递给构造函数来测试值分配是否正确完成。
我试过使用类似的东西:
public function testPerson()
{
$abstractClass = '\My\Namespace\Person';
$testData = array(
'id' => 1,
'createdOn' => '2015-01-07 19:52:00',
'unfound' => 'Inexistent method'
);
$methods = array(
'getId',
'setId'
);
$mock = $this->getMockBuilder($abstractClass)
->setConstructorArgs(array($testData))
->setMethods($methods)
->getMockForAbstractClass();
$this->assertEquals($testData['id'], $mock->getId());
}
在 testPerson() 中,$methods 变量不包含我需要的所有方法,但是对于测试的测试(请原谅我的文字游戏!:))我认为它们已经足够了。
但是 PHPUnit 告诉我:
Failed asserting that null matches expected 1.
似乎没有调用构造函数,如果代码覆盖率告诉我调用了方法。
有没有人可以帮助我了解正在发生的事情以及我如何测试这个 class?
谢谢!
解决方法很简单:删除$methods
变量,调用setMethods($methods)
解决问题![=14=]
调用setMethods()
,实际上,"stubs"那些没有设置适当固定值的方法被设置为空(我从测试结果中收到的值).
我测试的方法是存根的,而其他的不是。
所以 print_r($mock)
显示其他值设置正确。
如此简单却又如此难找!
无论如何谢谢你让我思考,所以我解决了问题并提出了问题!
我有一个非常简单的 class 如下所示:
abstract class Person
{
private $id;
private $createdOn;
// ... More private properties
protected $unfound = array();
构造函数对传递的数组 $data 执行 foreach,并使用正确的方法为属性赋值。 如果该方法不存在,则将密钥添加到受保护的数组中以保留它的踪迹(我将其称为 $unfound,只是为了原始!)。
public function __construct($data)
{
foreach ($data as $field => $value)
{
$method = 'set' . ucfirst($field);
if (method_exists($this, $method))
{
$this->$method($value);
}
else
{
$this->unfound[] = $field;
}
}
}
设置属性值的方法列表
public function setId($id) {
$this->id = $id;
}
public function setCreatedOn($createdOn) {
$this->createdOn = $createdOn;
}
以及获取这些分配值的方法列表
public function getId() {
return $this->id;
}
public function getCreatedOn() {
return $this->createdOn;
}
} // END of the class
如您所见,class 没有执行任何复杂的任务:它接受像
这样的数组array(
'id' => 4,
'createdOn' => '2015-01-07 20:50:00',
'unknownVar' => 'mah'
// ... Other properties to set
);
所以class循环遍历数组并使用键调用正确的方法来设置值。我认为没什么复杂的。
更复杂的是对其进行测试。
因为它是一个抽象class,我不能直接实例化它,但我必须模拟它。
我的问题是我无法将正确的参数传递给构造函数来测试值分配是否正确完成。
我试过使用类似的东西:
public function testPerson()
{
$abstractClass = '\My\Namespace\Person';
$testData = array(
'id' => 1,
'createdOn' => '2015-01-07 19:52:00',
'unfound' => 'Inexistent method'
);
$methods = array(
'getId',
'setId'
);
$mock = $this->getMockBuilder($abstractClass)
->setConstructorArgs(array($testData))
->setMethods($methods)
->getMockForAbstractClass();
$this->assertEquals($testData['id'], $mock->getId());
}
在 testPerson() 中,$methods 变量不包含我需要的所有方法,但是对于测试的测试(请原谅我的文字游戏!:))我认为它们已经足够了。
但是 PHPUnit 告诉我:
Failed asserting that null matches expected 1.
似乎没有调用构造函数,如果代码覆盖率告诉我调用了方法。
有没有人可以帮助我了解正在发生的事情以及我如何测试这个 class?
谢谢!
解决方法很简单:删除$methods
变量,调用setMethods($methods)
解决问题![=14=]
调用setMethods()
,实际上,"stubs"那些没有设置适当固定值的方法被设置为空(我从测试结果中收到的值).
我测试的方法是存根的,而其他的不是。
所以 print_r($mock)
显示其他值设置正确。
如此简单却又如此难找! 无论如何谢谢你让我思考,所以我解决了问题并提出了问题!