Rspec:shared_examples和shared_context之间的变量范围

时间:2012-06-18 11:29:58

标签: ruby-on-rails-3.1 parameters rspec shared

我无法在我的rspec控制器测试中参数化shared_example。我的代码基于Relish上列出的Passing Examples to a Shared Group

从表面上看,似乎在shared_conamples中创建的实例变量在shared_examples中不可用。有什么想法吗?

我使用的是Rails 3.1,包含CanCan和Devise宝石。

Controller(app / controllers / stores_controller.rb):

class StoresController < SubDomainController
  def index
    authorize! :list, Store
    @stores = current_user.company.stores.allrespond_to do |format|
      format.html # index.html.erb
      format.json { render json: @stores }
    end
  end
end

共享模块(spec / support / shared.rb):

  module Shared
    shared_context "stores controller" do    
      before :all do    
        build_companies
        build_stores
        build_users
      end
    end

    shared_context "admin logged in" do   
      before :each do
        login_admin
      end    
    end

    #########THIS IS THE TEST THAT IS FAILING#########
    shared_examples "authorised_user" do |values|

      it "should assign correct variables" do
        values.each do |key,val|
          assigns[key].should == values[key]
        end
      end
    end
  end

助手模块(spec / support / helpers.rb):

module Helpers

  def build_companies
    @company = build_company(get_rand_string() ,"Correct")
    @other_company = build_company(get_rand_string() ,"Invalid")
  end

  def build_stores
    @store = FactoryGirl.create(:store, :company_id => @company.id)
    @other_store = FactoryGirl.create(:store, :company_id => @company.id)
    @other_company_store = FactoryGirl.create(:store, :company_id => @other_company.id)
  end

  def build_users
    @admin_user = FactoryGirl.create(:user, :role_id => 1,  :company => @company, :store_id => @store.id)
    @manager_user = FactoryGirl.create(:user, :role_id=> 2,  :company => @company, :store_id => @store.id)
    @regular_user = FactoryGirl.create(:user, :role_id=> 3,  :company => @company, :store_id => @store.id)
  end       
end

Spec Helpers(spec / spec_helper.rb):

.....
  config.include  Helpers
  config.include  Shared
.... 

Controller Spec(spec / controllers / stores_controller_spec.rb):     需要'spec_helper'

describe StoresController do    
  include_context "stores controller"
    describe "INDEX" do

        [:admin].each do |u|
          describe "#{u} authorised" do          
            include_context "#{u} logged in"          
              before :each do
                get :index
              end

              ###passing instance variables to Helper module not working######
              it_behaves_like "authorised_user", {:stores => [@store, @other_store]}      

            end
          end
        end
    end 
end

错误:

1) StoresController INDEX company stores admin authorised behaves like authorised_user should assign correct variables
   Failure/Error: assigns[key].should == values[key]
   expected: [nil, nil]
        got: [#<Store id: 1, company_id: 1, location_name: "MyString", address: "MyString", created_at: "2012-06-18 05:29:19", updated_at: "2012-06-18 05:29:19">, #<Store id: 2, company_id: 1, location_name: "MyString", address: "MyString", created_at: "2012-06-18 05:29:19", updated_at: "2012-06-18 05:29:19">] (using ==)                                                                                                                         
   Diff:
   @@ -1,2 +1,3 @@
   -[nil, nil]
   +[#<Store id: 1, company_id: 1, location_name: "MyString", address: "MyString", created_at: "2012-06-18 05:29:19", updated_at: "2012-06-18 05:29:19">,                                                                                                                                             
   + #<Store id: 2, company_id: 1, location_name: "MyString", address: "MyString", created_at: "2012-06-18 05:29:19", updated_at: "2012-06-18 05:29:19">]

1 个答案:

答案 0 :(得分:4)

自己想出来。

需要使用stores_controller_spec.rb中的'let'语法设置变量,如下所示

it_behaves_like "authorised_user" do
   let(:variable){stores}
   let(:values){[@store, @other_store]} 
end

然后在shared_examples.rb中:

shared_examples "authorised_user" do

  it "should assign correct variables" do
      assigns[variable].should == values
  end
end