2

我已经为此苦苦挣扎了几个小时。我正在使用 Rack::Test 为我的 Rails 3.2 应用程序编写 API 测试。

不管我做什么,last_response 的主体都是空的(嗯,特别是它有“{}”,所以有 2 个字符)。

以下是测试:

describe "updating a product set with JSON" do
  def app
    ProductSetsController.action(:update)
  end

  let(:update_json) { ... }

  before do
    @product_set = FactoryGirl.build(:product_set)
  end
  it { @failures.should == 0 }

  it "should not increment the product set count" do
    expect { put :update, update_json }.to_not change(ProductSet, :count).by(1)
  end

  it "should increment the conditions count" do
    expect { put :update, update_json }.to change(@product_set.conditions, :count).by(2)
  end

  context "response should be valid" do
    before do
      put :update, update_json
    end
    subject { last_response }
    it { should be_ok }
  end
end

所有这些测试都通过了。但身体是空的。

奇怪的是,如果我运行实际的应用程序,响应体肯定不是空的。它有关于更新的 product_set 的 JSON。

所以我以某种方式错误地设置了测试。我敢打赌我忽略了一些非常愚蠢的事情,因为这是我第一次使用 Rack::Test。有什么想法吗?

只是想到我可能没有正确设置请求标头。我也在使用 RABL 进行生成。

更新:问题确实出在 RABL 上。还没有找到解决方案,但如果我使用:

respond_with(@product_set.update_attributes(get_properties(params)),
  file: 'app/views/product_sets/update.json.rabl', :handlers => [:rabl])

代替:

respond_with(@product_set.update_attributes(get_properties(params)))

然后它在测试中工作,而两者都在开发或生产中工作。此外,我已经确认这不是 Gemfile 问题。

4

1 回答 1

2

找到了答案。简而言之,确保在 rspec 文档的根 describe 块顶部使用关键字“render_views”,以确保正确呈现视图。

这是有用的文章: https ://github.com/nesquena/rabl/wiki/Testing-with-rspec

于 2012-09-18T23:26:11.300 回答