我的symfony应用程序有一个phpunit测试套件。在该测试文件中,我在不同的测试之间有一些依赖关系,并在依赖项之间传递一个DOMCrawler对象,这样我就不必每次都导航到它。
然而,在采用我所做的方法时,您似乎无法使用这些传递的对象提交表单,但您可以单击它们上的链接。是否有一个原因?我的设计是否很差,如果是这样,我该怎么改呢?欢迎任何反馈。我在下面附上了一些代码。
<?php
namespace someBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
/**
* blah Controller Test
*
*/
class BlahControllerTest extends WebTestCase
{
private $adminUrl;
/**
* Constructs basic information for a audit report controller test suite
*
*/
public function __construct()
{
$this->adminUrl = '/admin/';
}
/**
* Starts a test suite
*
* @return Crawler
*/
public function testAdd()
{
// Create a new client to browse the application
$client = static::createClient();
// Go to site specific admin url
$crawler = $client->request('GET', $this->adminUrl);
$this->assertTrue(200 === $client->getResponse()->getStatusCode());
// do stuff here
// goes to edit page
$crawler = $client->request('GET', $editPage);
return $crawler;
}
/**
* Tests the edit functionality
*
* @param Crawler $crawler Crawler for the show view
*
* @depends testAdd
*/
public function testEdit($crawler)
{
// Create a new client to browse the application
$client = static::createClient();
//Line below is included if the crawler points to the show view
//$crawler = $client->click($crawler->selectLink('Edit')->link());
// Fill in the form and submit it
$form = $crawler->selectButton('Edit')->form(array(
$foo => $bar,
));
// The following line doesn't work properly if testEdit is passed the
// edit page. However, if it is passed the show page, and the
// edit link above is clicked, then the form will submit fine.
$client->submit($form);
$crawler = $client->followRedirect();
// more code here...
}
}
答案 0 :(得分:3)
原因是你可以在你扩展的WebTestCase
类中看到,实施了拆解:
protected function tearDown()
{
if (null !== static::$kernel) {
static::$kernel->shutdown();
}
}
内核关闭有很多影响。一个影响是你正在经历的。我曾试图追踪到底发生了什么,但我没有到达任何地方,只是在心理上注意到一旦关闭被调用,客户端和爬虫就没用了。
我会推荐与路易斯相同的东西:独立进行测试。除此之外,它不与客户合作,请考虑创建页面上出现故障的时间。实际上,您的编辑页面测试也会中断,尽管页面本身可能没问题。
取决于通常用于进一步验证对象,例如,如果您想更深入地测试响应。您将使用依赖测试并返回第一个的响应。在这种情况下,两个测试都会中断也是可以的,因为如果您的创建页面中断,当然您的响应内容看起来不应该。