功能测试:如何在POST方法中设置JSON数据?
我想为接收带有 JSON 格式数据的 POST 方法的操作创建功能测试。
这就是我所拥有的:
info('set car')->
post('/user/'.$user->getId().'/set-car/'.$car->getId()'->
with('request')->ifFormat('json')->begin()->
isParameter('module', 'myModule')->
isParameter('action', 'myAction')->
end()->
但是..我应该在哪里设置接收json数据?
sf 1.4
问候
哈维
I want to create a functional test for an action that receives a POST method with data in JSON format.
This is what I have:
info('set car')->
post('/user/'.$user->getId().'/set-car/'.$car->getId()'->
with('request')->ifFormat('json')->begin()->
isParameter('module', 'myModule')->
isParameter('action', 'myAction')->
end()->
But..where should I set the receiving json data?
sf 1.4
Regards
Javi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否查看了 Jobeet 教程中的页面?
第一个例子是
可能我根本不明白你的问题。
如果我错了请纠正我。
Did you checked out the page from Jobeet tutorial?
The first example is
It may be that I didn't understand you question at all.
Correct me if I'm wrong.
更多的解决方法...
如果您在操作中获得如下内容:
这应该允许您通过传递来测试您想要的内容
More of a workaround...
If you get the content in your action like this:
that should allow you to test what you want by passing