我要共享幾對運行代碼和測試代碼。基本上,測試代碼只在對象類上使用find
時有效,但問題是find
是我不想使用的一種方法,因爲我不在尋找主鍵!Rspec不能存根或find_by_,只能找到
方法1:磕碰:where
與Plan.all
,使得第一可在它被稱爲
#run code
@current_plan = Plan.where(stripe_subscription_id: event.data.object.lines.data.first.id).first
#test code
@plan = Plan.new #so this is the first Plan that I'd like to find
Plan.stub(:where).and_return(Plan.all)
#result of @current_plan (expecting @plan)
=> nil
方法2:鏈磕碰:where
和:first
#run code
@current_plan = Plan.where(stripe_subscription_id: event.data.object.lines.data.first.id).first
#test code
@plan = Plan.new #so this is the first Plan that I'd like to find
Plan.stub_chain(:where, :first).and_return(@plan)
#result of @current_plan (expecting @plan)
=> nil
方法3:殘樁定製:find_by
#run code
@current_plan = Plan.find_by_stripe_subscription_id(event.data.object.lines.data.first.id)
#test code
@plan = Plan.new
Plan.stub(:find_by_stripe_subscription_id).and_return(@plan)
#result of @current_plan (expecting @plan)
=> nil
方法4:磕碰:find
WORKS!但我不能按主鍵找到......所以我非常需要的方式3工作...
#run code
@current_plan = Plan.find(2) #for giggles, to make sure the stub is ignoring the 2 argument
#test code
@plan = Plan.new
Plan.stub(:find).and_return(@plan)
#result of @current_plan (expecting @plan)
=> @plan
我想另一個答案應該是我怎樣才能創造性地運用:find
帶參數的,即使我明白這一點是不是最佳做法...
如果沒有看到至少有一個說明問題的完整示例,很難看出發生了什麼。難道是設置「@ current_plan」的值的代碼永遠不會執行? – zetetic
如果你認爲這會有所幫助,我很高興添加更多的代碼,但我使用方法4作爲基準來說,這種方法工作得很好,爲什麼不休息。從字面上來看,這些方法之間的區別在於我只是轉換代碼。讓我知道如果你想看到更多的代碼 – james
你可能會嘗試添加一個期望,看看你正在存儲的方法實際上是被調用的。我看不出有什麼理由爲什麼你應該能夠存根:find但不是:find_by。 – zetetic