功能测试:如何在POST方法中设置JSON数据?

发布于 2024-11-02 21:10:47 字数 403 浏览 2 评论 0原文

我想为接收带有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瑾兮 2024-11-09 21:10:47

您是否查看了 Jobeet 教程中的页面

第一个例子是

$browser = new sfBrowser();

$browser->
  get('/')->
  click('Design')->
  get('/category/programming?page=2')->
  get('/category/programming', array('page' => 2))->
  post('search', array('keywords' => 'php'))
;

可能我根本不明白你的问题。
如果我错了请纠正我。

Did you checked out the page from Jobeet tutorial?

The first example is

$browser = new sfBrowser();

$browser->
  get('/')->
  click('Design')->
  get('/category/programming?page=2')->
  get('/category/programming', array('page' => 2))->
  post('search', array('keywords' => 'php'))
;

It may be that I didn't understand you question at all.
Correct me if I'm wrong.

開玄 2024-11-09 21:10:47

更多的解决方法...

如果您在操作中获得如下内容:

protected function getContent() {
    $content = $this->request->getParameter('content'); 
    if(!$content) $content = $this->request->getContent(); 
    return $content;
}

public function executeIndex(sfWebRequest $request) {
    $content = $this->getContent();
    //do something with your content :D
}

这应该允许您通过传递来测试您想要的内容

post('search', array('content' => 'whatever my content is')); 

More of a workaround...

If you get the content in your action like this:

protected function getContent() {
    $content = $this->request->getParameter('content'); 
    if(!$content) $content = $this->request->getContent(); 
    return $content;
}

public function executeIndex(sfWebRequest $request) {
    $content = $this->getContent();
    //do something with your content :D
}

that should allow you to test what you want by passing

post('search', array('content' => 'whatever my content is')); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文