1

在我的 Zend Framework 项目中,我有一个正在测试的表单。在我的表单中,多选元素从模型中获取其选项,模型从数据库中检索它们。

public function init()
{
    $this->addElement('select', 'Region_ID', array('multiOptions' => $this->getRegions()));
}

protected function getRegions()
{
    $mapper = new Model_RegionMapper();
    return $mapper->getFormSelectData(); //this method will try to connect to a database (or get another object that will connect to the database)
}

我尝试复制 PHPUnit 文档中的示例,但它似乎不起作用。

public function setUp()
{
    $stub = $this->getMock('Model_RegionMapper');
    $stub->expects($this->any())
        ->method('getFormSelectData')
        ->will($this->returnValue(array('testdata')));
}

public function testFoo()
{
    //this will fail
    $form = new My_Form();
}

测试失败,因为它试图在数据库中查找不存在的表。但我根本不希望它连接到数据库。如何正确存根/模拟此方法,使其不调用数据库?

4

2 回答 2

3

模拟 Model_RegionMapper。

  • 不要在您的类中构造 Model_RegionMapper,而是将其传入。
  • 测试时,传入一个假的 Model_RegionMapper,它返回 getFormSelectData() 的测试数据。
于 2010-06-17T16:32:38.997 回答
0

我同意 Sjoerd 的观点,因为在这种情况下,您正在测试您的表单,而不是如何检索数据,只需创建一个模拟对象并将其返回值设置为您希望在这种情况下收到的信息。PHPUnit Mock Objects 的一个很好的替代品是Padraic O'Brady 的 Mockery。这是替代品的下降。

于 2014-03-21T07:13:27.980 回答