我正在尝试在symfony 2.3中测试一个有选择输入的表单...以及文件上传(enctype multipart / form-data)
选择输入如下......
使用DomCrawler我选择表格
$form = $crawler->selectButton->('Update')->form()
然后尝试使用
设置选择的值 $form['select'] = null
要么
$form['select'] = ssjksjkajsdfj
如果我这样做,DomCrawler中有一个内部验证系统会返回以下错误。
InvalidArgumentException: Input "select" cannot take "ssjksjkajsdfj" as a value (possible values: 1, 2, 3).
在symfony 2.4及更高版本中,DomCrawler / Form中有一个名为disableValidation()
的魔术方法,效果非常好。不幸的是,由于某些依赖需要2.3我无法升级
我还尝试直接使用$client->Request()
方法
$post_data = '------WebKitFormBoundaryi7fAxO2jrDFTmxef
Content-Disposition: form-data; name="select"
ssjksjkajsdfj
------WebKitFormBoundaryi7fAxO2jrDFTmxef--';
$client->request(
'POST',
$form->getUri(),
array(),
array(),
array(
'CONTENT_TYPE' => 'multipart/form-data; boundary=----WebKitFormBoundaryi7fAxO2jrDFTmxef',
),
$post_data
);
但是symfony似乎并不知道/关心表单而只是返回一个 没有任何错误消息的常规表单,表单处理程序不会出于某种原因验证表单。
这是控制器中的updateAction
public function updateAction(Request $request, $id)
{
$em = $this->getDoctrine()->getManager();
$entity = $em->getRepository('CoyoteAdBundle:Ad')->find($id);
if (!$entity) {
throw $this->createNotFoundException('Unable to find Ad entity.');
}
$old_entity = $entity;
$editForm = $this->createEditForm($entity);
$editForm->handleRequest($request);
if ($editForm->isValid()) {
$this->archiveImage($old_entity);
$entity->upload();
$em->flush();
$this->addSuccessFlash('Ad has been updated successfully!');
return $this->redirect($this->generateUrl('ad_show', array('id' => $id)));
}
return $this->render('CoyoteAdBundle:Ad:edit.html.twig', array(
'entity' => $entity,
'form' => $editForm->createView(),
));
}
我在这里找到了一个确切的问题...... Select impossible value in select inputs with Symfony DomCrawler
但答案不是我要找的。我想测试并确保服务器将返回200以及一条消息,让用户知道他们想要做什么是不可能的。
PS:我可以通过Chrome中的Postman获得理想的结果。
答案 0 :(得分:0)
我不知道SF 2.3中的任何方法都适用于disableValidation
。但是,我认为发送假请求应该可以解决问题。我也认为你使用请求方法的方式不正确。查看2.3 {SF}版本的documentation,您有一个如何伪造请求的示例:
// Form submission with a file upload
use Symfony\Component\HttpFoundation\File\UploadedFile;
$photo = new UploadedFile(
'/path/to/photo.jpg',
'photo.jpg',
'image/jpeg',
123
);// Fake photo upload if you like, if not, just send the select value.
$client->request(
'POST',
'/submit',// valid route
array('select' => 'ssjksjkajsdfj'),// Substitute here the name of your select and the value you want to send
array('photo' => $photo)
);
它应该发送请求,如果一切正常,控制器应该回答200和错误。
希望它有所帮助。
<强>更新强>
好的,这里有几件事:CSRF很重要,请求中的参数格式也是如此。
由于您的表单正在使用CSRF,您应该在请求中发送它,否则它将失败并将您重定向到“空”表单。此外,请求必须以适当的格式发送数据。假设生成的表单代码以my_form[name]
形式命名输入,您应该在请求中相应地创建它们:
$csrfToken = $client->getContainer()->get('form.csrf_provider')->generateCsrfToken('my_form');// Generate CSRF for my_form
$crawler = $client->request(
'POST',
'/ajax/register', // valid route
array(
'my_form' => array(// form accepts params in form my_form[name]
'_token' => $csrfToken,
'select' => 'asdfasdf',// select I want to send invalid value
'photo' => $photo, // the uploaded photo
'whatever' => 'whatever', // rest of required parameters.
),
));