使用Symfony DomCrawler在选择输入中选择不可能的值

时间:2014-04-05 17:39:01

标签: php symfony phpunit

如果我在表单中的select输入中发送了错误的值,我想测试我的应用程序的行为。

这是我在HTML中的表单:

<form (...)>
   (...)
<select name="select_input">
     <option value="1">text</option>
</select>

</select>

在我的测试中,在使用抓取工具获取表单并尝试“选择”不正确的值:

$form['select_input'] = 9999999;
$client->submit($form);
/* EDIT */
/*I am expecting the user to not be redirected to the user page,
  and the server to respond with the same form, containing an error message */
$this->assertFalse($client->getResponse()->isRedirect('/success_page'));
$this->assertEquals(1, $client->getCrawler()->filter('input.error'));

但是在控制台中,我收到了消息:

InvalidArgumentException: Input "user_profile[voteProfile]" cannot take "9999999" as a value (possible values: 1)

如何选择不正确的值来测试答案?真实服务器可能会发送错误的值。

2 个答案:

答案 0 :(得分:5)

disableValidation功能允许在选项中选择不可能的值:

$form = $crawler->selectButton('button')->form();
$form->get('select_input')->disableValidation()->setValue(999999);

$client->submit($form);

工作完成了!

答案 1 :(得分:0)

您的错误消息显示&#34;(可能的值:1)&#34;,它与您表单中的一个可能值匹配。所以,我真的认为你得到了一个你应该期待的例外。如果真实服务器发送的值不正确,我会怀疑会发生同样的异常。

在测试中,尝试添加注释,如下所示:

/**
* @expectedException InvalidArgumentException
*/
public function testForm()
{

//test logic here

}

或者:

public function testForm()
{

$this->setExpectedException('InvalidArgumentException');

}

更多信息here