当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《使用SymfonyDomCrawler在选择输入中选择不可能的值》经验,为你挑选了1个好方法。

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

这是我在HTML中的表单:

(...)

在我的测试中,在使用爬虫获取表单并尝试"选择"不正确的值:

$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)

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



1> Julien Fastr..:

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

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

$client->submit($form);

工作完成了!

推荐阅读
吻过彩虹的脸_378
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有