如何存根:当rspec测试使用respond_with的控制器时,错误集合无效

时间:2012-07-03 07:45:12

标签: ruby-on-rails-3 rspec-rails

我重构了我的OrgController以使用respond_with,现在控制器规范脚手架失败并显示以下消息:

1) OrgsController POST create with invalid params re-renders the 'new' template
   Failure/Error: response.should render_template("new")
     expecting <"new"> but rendering with <"">

规范如下:

it "re-renders the 'new' template" do
 Org.any_instance.stub(:save).and_return(false)
 post :create, {:org => {}}, valid_session
 response.should render_template("new")
end

我已经读过我应该将:errors哈希存根以使其看起来像是一个错误。最好的方法是什么?

4 个答案:

答案 0 :(得分:7)

使用RS3在v3中引入的新语法,存根看起来像

allow_any_instance_of(Org).to receive(:save).and_return(false)
allow_any_instance_of(Org).to receive_message_chain(:errors, :full_messages)
  .and_return(["Error 1", "Error 2"])

相关的控制器代码看起来像

if org.save
  head :ok
else
  render json: {
    message: "Validation failed",
    errors: org.errors.full_messages
  }, status: :unprocessable_entity # 422
end

答案 1 :(得分:4)

消息:

expecting <"new"> but rendering with <"">

表明它是重定向而非渲染。您的存根不成功或您的控制器在控制器中。 您应该能够测试存根是否适用于:Org.first.valid?Org.new(valid_attibutes).valid?。例如,如果mocha中有Gemfile,则会破坏存根,因为在这种情况下any_instance将是mocha对象,并且rspec stub将无效在上面。 如果存根工作,您可以使用日志记录或调试器调试控制器中发生的事情。

对于存根错误,您可以执行以下操作:

Org.any_instance.stub(:errors).and_return(ActiveModel::Errors.new(Org.new).tap {
  |e| e.add(:name,"cannot be nil")})

或者,如果控制器仅使用errors.full_messages,那么您可以:

Org.any_instance.stub_chain("errors.full_messages").and_return(["error1","error2"])

答案 2 :(得分:0)

你应该存根有效吗?方法:

Org.any_instance.stubs(:valid?).and_return(false)

然后您的对象将无法保存,因为它将无效

答案 3 :(得分:0)

FWIW,我使用的是严格的save!(在验证失败时会引发错误)。
对于这种情况,我使用了:

  allow_any_instance_of(ReportFile).to receive(:save!).and_raise(
    ActiveRecord::RecordInvalid, ReportFile.new.tap do |rf|
      rf.errors.add(:data_file_size, 'must be less than 100 Megabytes')
    end
  )