3

私の people_controller_spec.rb には

before(:each) do
    @office = FactoryGirl.create(:office)
    @organization = FactoryGirl.create(:organization)
    @user = FactoryGirl.create(:user, organization: @organization)

    @request.session['user_id'] = @user.id
    @request.session['current_organization_id'] = @user.organization.id
  end

そして、私はこのapplication_controller.rbを持っています

class ApplicationController < ActionController::Base

  protect_from_forgery

  private

  def current_user
    @current_user ||= User.find(session[:user_id]) if session[:user_id]
  end

  def current_organization
    if session[:current_organization_id]
      Organization.find(session[:current_organization_id])
    else
      @current_organization ||= Organization.find(current_user.organization_id)
    end
  end

  helper_method :current_user
  helper_method :current_organization
end

セッション ハッシュが application_controller.rb 内に保持されていないように見えるため、application_controller.rb の @current_user が nil である場合に、このような種類のテスト エラーが発生します。

  6) PeopleController index sorts all people alphabetically by first_name
     Failure/Error: get :index, {search: {meta_sort: "first_name.asc"}}, valid_session
     NoMethodError:
       undefined method `organization_id' for nil:NilClass
     # ./app/controllers/application_controller.rb:15:in `current_organization'
     # ./app/controllers/people_controller.rb:107:in `get_orgs'
     # ./spec/controllers/people_controller_spec.rb:71:in `block (3 levels) in <top (required)>'

私はすでにすべてを実行しましたが、失敗しました。

Rails (3.2.9) と rspec-rails 2.12.2 を使用しています。

このDevise Test Helperを見た後、問題を解決しました-sign_inが機能しません

「valid_session」メソッド呼び出しをすべて削除しました。

4

1 に答える 1

5

before :eachブロックでセッションを次のように設定します。

session[:user_id] = @user.id
session[:current_organization_id] = @user.organization.id

これは、rspec コントローラー マクロによって提供されるセッション ヘルパーを使用します。また、セッションがHashWithIndifferentAccess似ているかどうかはわかりませんparamsが、どちらにしても同じキータイプを使い続けるのが良いでしょう。

于 2013-02-15T12:51:35.083 に答える