我学习TDD并且我开始使用xSpec工具(语言没关系,但在我的情况下它是phpspec2)。我写了我的第一个规范:
<?php
namespace spec\Mo\SpeechBundle\Controller;
use Doctrine\Common\Collections\Collection;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
use Symfony\Component\HttpFoundation\Response;
use Mo\SpeechBundle\Repository\IdeaRepository;
use Mo\SpeechBundle\Repository\SpeechRepository;
use Mo\SpeechBundle\Entity\Idea;
use Mo\SpeechBundle\Entity\Speech;
class SpeechControllerSpec extends ObjectBehavior
{
function let(SpeechRepository $speechRepository, IdeaRepository $ideaRepository, EngineInterface $templating)
{
$this->beConstructedWith($speechRepository, $ideaRepository, $templating);
}
function it_is_initializable()
{
$this->shouldHaveType('Mo\SpeechBundle\Controller\SpeechController');
}
function it_responds_to_show_action(EngineInterface $templating, Speech $speech, Response $response)
{
$templating
->renderResponse('MoSpeechBundle:Speech:show.html.twig', ['speech' => $speech])
->willReturn($response)
;
$this->showAction($speech)->shouldBeAnInstanceOf('Symfony\Component\HttpFoundation\Response');
}
function it_responds_to_list_action(
SpeechRepository $speechRepository,
IdeaRepository $ideaRepository,
EngineInterface $templating,
Response $response
)
{
$speeches = [new Speech()];
$ideas = [new Idea()];
$speechRepository->findAll()->willReturn($speeches);
$ideaRepository->findAll()->willReturn($ideas);
$templating
->renderResponse('MoSpeechBundle:Speech:list.html.twig', compact('speeches', 'ideas'))
->willReturn($response)
;
$this->listAction()->shouldBeAnInstanceOf('Symfony\Component\HttpFoundation\Response');
}
function it_responds_list_by_idea_action(
Idea $idea,
SpeechRepository $speechRepository,
IdeaRepository $ideaRepository,
EngineInterface $templating,
Response $response
)
{
$speeches = [new Speech()];
$ideas = [new Idea()];
$speechRepository->findByIdea($idea)->willReturn($speeches);
$ideaRepository->findAll()->willReturn($ideas);
$templating
->renderResponse('MoSpeechBundle:Speech:list.html.twig', compact('speeches', 'idea', 'ideas'))
->willReturn($response)
;
$this->listByIdeaAction($idea)->shouldBeAnInstanceOf('Symfony\Component\HttpFoundation\Response');
}
}
对于控制器:
<?php
namespace Mo\SpeechBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
use Mo\SpeechBundle\Repository\IdeaRepository;
use Mo\SpeechBundle\Repository\SpeechRepository;
use Mo\SpeechBundle\Entity\Idea;
use Mo\SpeechBundle\Entity\Speech;
/**
* Manages speeches.
*/
class SpeechController
{
/**
* @var \Mo\SpeechBundle\Repository\SpeechRepository
*/
private $speechRepository;
/**
* @var \Mo\SpeechBundle\Repository\IdeaRepository
*/
private $ideaRepository;
/**
* @var \Symfony\Bundle\FrameworkBundle\Templating\EngineInterface
*/
private $templating;
/**
* @param \Mo\SpeechBundle\Repository\SpeechRepository $speechRepository
* @param \Mo\SpeechBundle\Repository\IdeaRepository $ideaRepository
* @param \Symfony\Bundle\FrameworkBundle\Templating\EngineInterface $templating
*/
public function __construct(SpeechRepository $speechRepository, IdeaRepository $ideaRepository, EngineInterface $templating)
{
$this->speechRepository = $speechRepository;
$this->ideaRepository = $ideaRepository;
$this->templating = $templating;
}
/**
* Shows speech.
*
* @param \Mo\SpeechBundle\Entity\Speech $speech
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function showAction(Speech $speech)
{
return $this->templating->renderResponse('MoSpeechBundle:Speech:show.html.twig', compact('speech'));
}
/**
* Shows list of speeches filtered by idea.
*
* @param \Mo\SpeechBundle\Entity\Idea $idea
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function listByIdeaAction(Idea $idea)
{
$speeches = $this->speechRepository->findByIdea($idea);
$ideas = $this->ideaRepository->findAll();
return $this->templating->renderResponse('MoSpeechBundle:Speech:list.html.twig', compact('speeches', 'idea', 'ideas'));
}
/**
* Shows list of all speeches.
*
* @return \Symfony\Component\HttpFoundation\Response
*/
public function listAction()
{
$speeches = $this->speechRepository->findAll();
$ideas = $this->ideaRepository->findAll();
return $this->templating->renderResponse('MoSpeechBundle:Speech:list.html.twig', compact('speeches', 'ideas'));
}
}
好的,现在我确定我的控制器的行为已经指定,我可以继续前进。但我有另一个问题。
我已使用存储库模拟控制器规范,现在我想编写存储库本身的规范:
<?php
namespace Mo\SpeechBundle\Repository;
use Doctrine\ORM\EntityRepository;
use Mo\SpeechBundle\Entity\Idea;
class SpeechRepository extends EntityRepository
{
/**
* Finds all speeches by specified idea.
*
* @param \Mo\SpeechBundle\Entity\Idea $idea
*
* @return array
*/
public function findByIdea(Idea $idea)
{
return $this
->createQueryBuilder('s')
->leftJoin('s.ideas', 'i')
->where('i = :idea')
->setParameters(compact('idea'))
->getQuery()
->getResult()
;
}
}
但据我所知,规格描述了行为。如何正确地测试存储库它真正返回我需要的东西,在我的案例中通过想法发表演讲。
我应该考虑使用xUnit工具(PHP世界中的PHPUnit)创建功能测试吗?或者我会 te spec描述了我的存储库正确创建查询?或者我可以将Behat用于所有应用程序,并且不要注意这个问题。
答案 0 :(得分:2)
我花了一周的时间来分析这个问题,并找到了满意的答案。
phpspec仅指定对象的行为。而已。我们无法用它们创建功能测试。
因此,我们有两种方法来测试我们的功能:
PHPUnit,其他类似的框架和Behat有他们的陷阱和强大的一面。
使用什么,只能决定开发人员。
答案 1 :(得分:1)
我完全理解你的困境,我过去做过同样的事情。我认为您的问题的基本答案是您的业务逻辑应该与任何框架(基础架构代码)分开,因此您不应该测试“Doctrine \ ORM \ EntityRepository”类型的对象。
我认为最好的方法是在应用程序中有另一个层来保存业务逻辑,而这又可以使用适配器从'Doctrine \ ORM \ EntityRepository'类型对象来回传递消息。这样你就可以完全规范你的业务规则(包括任何适配器),而不必测试不应该测试的教义类型对象,因为大多数情况下这是第三方代码。
以这种方式执行操作还可以让您以后更轻松地更改业务规则。