Rails JSON API使用JSON中的PARAMS测试POST请求

时间:2013-09-08 11:49:41

标签: ruby-on-rails json api testing rspec

这是困扰我一段时间的问题。我正在构建一个API函数,它应该在json中接收数据并在json中接收响应。我的控制器测试运行正常(因为我抽象数据到达那里已经从JSON解码,只需要解释答案)。

我也知道函数运行正常,因为我使用curl用JSON参数测试它并且它完美地工作。 (例如:curl -i --header“Accept:application / json”--header“Content-Type:application / json”-d'{“test”:{“email”:“andreo@benjamin.dk”}} ')

但显然我想编写请求(功能)测试来自动测试它,我看到它的方式应该像curl一样工作,即点击我的服务就像是外部调用。这意味着我想在JSON中传递参数并得到答案。我很遗憾,因为所有的例子我都可以看到人们对待已经被解码的论点。

我的问题是:我正在遵循一个错误的前提,希望将参数和请求作为JSON发送,因为我将测试rails的工作原理,因为这是它的责任吗?但我希望看到我的代码对错误的参数有多么强大,并希望尝试使用JSON。

这种类型的东西:

it "should return an error if there is no correct email" do
    params = {:subscription => {:email => "andre"}}

    post "/magazine_subscriptions", { 'HTTP_ACCEPT' => "application/json", 'Content-Type' => 'application/json', 'RAW_POST_DATA' => params.to_json }
end

你知道这是怎么回事吗?如果您认为我测试错了,请告诉我。

一切顺利,

安德烈

2 个答案:

答案 0 :(得分:20)

我在这里的帖子(RSpec request test merges hashes in array in POST JSON params)上找到了我的答案,我认为我做错的是关于请求的论据。

所以这有效:

it "should return an error if there is no correct email" do
    params = {:subscription => {:email => "andre"}}

    post "/magazine_subscriptions", params.to_json, {'ACCEPT' => "application/json", 'CONTENT_TYPE' => 'application/json'}
end

答案 1 :(得分:1)

describe '#create' do 
  let(:email) {'andre'}
  let(:attrs) {{email: email}}
  let(:params) {{format: :json, subscription: attrs}}

  it "should return an error if there is no correct email" do
    post "/magazine_subscriptions", params
  end
end