Symfony功能测试在重定向后声明
我目前正在尝试编写功能测试,但在登录并重定向到新页面后,我陷入了困境。 一切正常,直到最后断言。 重定向工作正常,重定向后的内容页面正常,但是我在上一个断言中出现错误:失败断言false为真。 我从这里的类似问题中找不到任何帮助。
代码如下:
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient(array(),
array(
'HTTP_HOST' => 'locahost'
));
$crawler = $client->request('GET', '/login');
echo $client->getRequest()->getUri();
$form = $crawler->selectButton('Login')->form(array(
'_username' => 'user',
'_password' => 'pass',
),'POST');
$client->submit($form);
$this->assertTrue($client->getResponse()->isRedirect());
$client->followRedirect();
echo $client->getRequest()->getUri();
print_r( $client->getResponse()->getContent());
$this->assertTrue($crawler->filter('html:contains("New")')->count() > 0);
}
}
您必须获取followredirect()
函数返回的followredirect()
:
$crawler = $client->followRedirect();
链接地址: http://www.djcxy.com/p/67803.html