使用Rspec和Rack :: Test测试REST-API响应

时间:2011-09-03 08:36:03

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

我有点难过。我有以下集成测试:

require "spec_helper"

describe "/foods", :type => :api do
  include Rack::Test::Methods

  let(:current_user) { create_user! }
  let(:host) { "http://www.example.com" }

  before do
    login(current_user)
    @food = FactoryGirl.create_list(:food, 10, :user => current_user)
  end

  context "viewing all foods owned by user" do

    it "as JSON" do
      get "/foods", :format => :json

      foods_json = current_user.foods.to_json
      last_response.body.should eql(foods_json)
      last_response.status.should eql(200)

      foods = JSON.parse(response.body)

      foods.any? do |f|
        f["food"]["user_id"] == current_user.id
      end.should be_true

      foods.any? do |f|
        f["food"]["user_id"] != current_user.id
      end.should be_false
    end

  end

  context "creating a food item" do

    it "returns successful JSON" do
      food_item = FactoryGirl.create(:food, :user => current_user)

      post "/foods.json", :food => food_item

      food = current_user.foods.find_by_id(food_item["id"])
      route = "#{host}/foods/#{food.id}"

      last_response.status.should eql(201)
      last_response.headers["Location"].should eql(route)
      last_response.body.should eql(food.to_json)
    end

  end

end

我添加了所需的Rack :: Test :: Methods来获取last_response方法,但它似乎无法正常工作。 last_response似乎总是向我显示sign_in页面,即使我已经登录了。

如果我删除Rack :: Test ::方法last_response消失了,我可以使用response来获取当前响应。一切似乎都运转正常。

这是为什么? response方法来自何处?我可以使用response从会话中获取先前的回复吗?

我需要使用last_response或类似的东西

last_response.headers["Location"].should eql(route)

这样我就可以匹配路线了。如果不是为了这个我就会被设定。

2 个答案:

答案 0 :(得分:1)

response对于某些规格类型是自动的。

Rspec可能会为ActionController::TestCase::Behavior块混合:type => :api response来自ActionController::TestCase::Behavior,与:type => :controller块一样。

如果您希望在response给出之前得到响应,请尝试将其存储在变量中,然后再发出下一个请求。

https://www.relishapp.com/rspec/rspec-rails/v/2-3/docs/controller-specshttps://github.com/rspec/rspec-rails提供了一些与各种规格类型混合的信息。

答案 1 :(得分:0)

我认为login(current_user)不适用于Rack :: Test :: Methods。您需要一种通过API调用进行身份验证的方法,可能使用身份验证令牌。

response与ActionController绑定,后者知道您的登录信息。如果我没有弄错,API调用独立于Controller,因此它不知道您已经登录。

请参阅Ticketee,来自Rails 3 in Action的示例应用,以获取示例!