Ruby on rails - Rspec 控制器测试 - 如何将参数传递给我正在测试的方法



我想在我的控制器中测试这个方法。

def fetch_match_displayed_count(params)
  match_count = 0
  params.each do |param|
    match_count += 1 if param[1]["result"] && param[1]["result"] != "result"
  end
  match_count
end

这是我到目前为止写的测试。

describe "fetch_match_displayed_count" do
  it "should assign match_count with correct number of matches" do
    params = {"result_1"=>{"match_id"=>"975", "result"=>"not_match"}, "result_2"=>{"match_id"=>"976", "result"=>"match"}, "result_3"=>{"match_id"=>"977", "result"=>"not_sure"}, "result_4"=>{"match_id"=>"978", "result"=>"match"}, "result_5"=>{"match_id"=>"979", "result"=>"not_match"}, "workerId"=>"123", "hitId"=>"", "assignmentId"=>"", "controller"=>"mt_results", "action"=>"create"}
    controller.should_receive(:fetch_match_displayed_count).with(params)
    get :fetch_match_displayed_count, {params:params}
    assigns(:match_count).should == 5
  end
end

我的问题似乎出在这一行get :fetch_match_displayed_count, {params:params}该方法需要参数,但为零。

我有两个问题。

  1. 此方法应该在帮助程序中而不是在控制器本身中(根据 Rails 约定)?

  2. 如何在测试中提交 get 请求并通过params

作为一般规则,您应该测试类的公共接口。对于控制器,这意味着测试操作,而不是帮助程序方法。

您应该能够通过设置一个或多个调用相应操作的单独测试用例来完成这项工作,然后使用消息期望来测试帮助程序方法是否使用正确的参数调用 - 或测试帮助程序方法是否执行它应该执行的操作(设置正确的实例变量/重定向/等)。

相关内容

  • 没有找到相关文章

最新更新