2010-03-31 11 views
10

Ho due modelli:RSpec, spegnendo i metodi di risorse nidificati

class Solution < ActiveRecord::Base 
    belongs_to :owner, :class_name => "User", :foreign_key => :user_id 
end 

class User < ActiveRecord::Base 
    has_many :solutions 
end 

e nidificare le soluzioni all'interno di utenti in questo modo:

ActionController::Routing::Routes.draw do |map| 
    map.resources :users, :has_many => :solutions 
end 

e, infine, ecco l'azione che "m cercando di spec :?

class SolutionsController < ApplicationController 
    before_filter :load_user 

    def show 
    if(@user) 
     @solution = @user.solutions.find(params[:id]) 
    else 
     @solution = Solution.find(params[:id]) 
    end 
    end 

    private 

    def load_user 
    @user = User.find(params[:user_id]) unless params[:user_id].nil? 
    end 
end 

la mia domanda è, come diavolo faccio a spec @user.solutions.find(params[:id])

Ecco la mia spec corrente:

describe SolutionsController do 

    before(:each) do 
    @user = Factory.create(:user) 
    @solution = Factory.create(:solution) 
    end 

    describe "GET Show," do 

    before(:each) do 
     Solution.stub!(:find).with(@solution.id.to_s).and_return(@solution) 
     User.stub!(:find).with(@user.id.to_s).and_return(@user) 
    end 

    context "when looking at a solution through a user's profile" do 

     it "should find the specified solution" do 
     Solution.should_receive(:find).with(@solution.id.to_s).and_return(@solution) 
     get :show, :user_id => @user.id, :id => @solution.id 
     end 
    end 
    end 

ma che mi ottiene il seguente errore:

1)Spec::Mocks::MockExpectationError in 'SolutionsController GET Show, when looking at a solution through a user's profile should find the specified solution' 
<Solution(id: integer, title: string, created_at: datetime, updated_at: datetime, software_file_name: string, software_content_type: string, software_file_size: string, language: string, price: string, software_updated_at: datetime, description: text, user_id: integer) (class)> received :find with unexpected arguments 
    expected: ("6") 
    got: ("6", {:group=>nil, :having=>nil, :limit=>nil, :offset=>nil, :joins=>nil, :include=>nil, :select=>nil, :readonly=>nil, :conditions=>"\"solutions\".user_id = 34"}) 

Qualcuno può aiutarmi con come posso stub @user.solutions.new(params[:id])?

risposta

25

Sembra che ho trovato la mia risposta, ma ho intenzione di postarlo qui poiché non riesco a trovare un sacco su questo in rete.

RSpec ha un metodo chiamato stub_chain: http://apidock.com/rspec/Spec/Mocks/Methods/stub_chain

che lo rende facile da stub un metodo come:

@solution = @user.solutions.find(params[:id]) 

in questo modo:

@user.stub_chain(:solutions, :find).with(@solution.id.to_s).and_return(@solution) 

Allora posso scrivere un Test RSpec in questo modo:

it "should find the specified solution" do 
    @user.solutions.should_receive(:find).with(@solution.id.to_s).and_return(@solution) 
    get :show, :user_id => @user.id, :id => @solution.id 
end 

E la mia specifica passa. Tuttavia, sto ancora imparando qui, quindi se qualcuno pensa che la mia soluzione qui non sia buona, non esitate a commentare questo e io cerco di farlo nel modo giusto.

Joe

+0

Molto utile, grazie. – zetetic

+0

Benvenuto, vota per favore le risposte per favore! – TheDelChop

7

Con la nuova sintassi RSpec, si stub una catena come in modo

allow(@user).to receive_message_chain(:solutions, :find) 
# or 
allow_any_instance_of(User).to receive_message_chain(:solutions, :find)