Select impossible value in select inputs with Symfony DomCrawler
如果我在表单中的
这是我在HTML中的表单:
1 2 3 4 5 6 7 | <form (...)> (...) <select name="select_input"> <option value="1">text</option> </select> </select> |
在我的测试中,在使用爬虫获取表单并尝试"选择"不正确的值:
1 2 3 4 5 6 7 | $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')); |
但在控制台中,我收到消息:
1 | InvalidArgumentException: Input"user_profile[voteProfile]" cannot take"9999999" as a value (possible values: 1) |
如何选择不正确的值来测试答案? 真实服务器可能会发送错误的值。
1 2 3 4 | $form = $crawler->selectButton('button')->form(); $form->get('select_input')->disableValidation()->setValue(999999); $client->submit($form); |
工作完成了!
您的错误消息显示"(可能的值:1)",它与表单中的一个可能值匹配。 所以,我真的认为你得到了一个你应该期待的例外。 如果真实服务器发送的值不正确,我会怀疑会发生同样的异常。
在测试中,尝试添加注释,如下所示:
1 2 3 4 5 6 7 8 9 | /** * @expectedException InvalidArgumentException */ public function testForm() { //test logic here } |
要么:
1 2 3 4 5 6 | public function testForm() { $this->setExpectedException('InvalidArgumentException'); } |
更多信息在这里