Symfony2实体经理在测试中

时间:2011-04-04 06:45:00

标签: unit-testing tdd symfony entitymanager

我正在为symfony2项目编写单元测试。例如,我想测试一些需要Doctrine \ ORM \ EntityManger的类:

// Class for testing
// ...
class CategoryManager
{
   public function __construct( EntityManager $em )
   {
       // ...

所以,我需要在单元测试中创建Doctrine \ ORM \ EntityManager实例并将其传递给构造函数,如下所示:

// Testing
// ...
$category1 = new Category();
$category2 = new Category();
$categories = array( $category1, $category2 );
$query = $this->getMock( '\Application\BackendBundle\Tests\Mocks\Doctrine\ORM\Query', array(), array(), '', false );
$query->expects( $this->any() )
      ->method( 'getResult' )
      ->will( $this->returnValue( $categories ) );
$em = $this->getMock( 'Doctrine\ORM\EntityManger', array(), array(), '', false );
$em->expects( $this->any() )
   ->method( 'createQuery' )
   ->will( $this->returnValue( $query ) );
// ...

请告诉我如何改进和自动化entity_manager模拟创建。我不确定这是创建模拟的正确方法(创建这种笨重的模拟对我来说似乎不方便)。我会很高兴任何建议。

1 个答案:

答案 0 :(得分:1)

听起来你可能正在测试一种方法,该方法首先得到几个类别,然后用它们做一些事情。如果是这种情况,您可以拆分方法吗?

使用$ em getACoupleOfCategories()查询数据库的一种方法,如果你真的想用,你可以使用database test进行测试(虽然简单的查询方法不需要单元测试,只要因为你觉得查询符合它的意思

然后另一种方法,doSomethingWithThem($categories)在测试中你可以直接传递类别?

或者那不适用于你想要做的事情吗?