Ruby on Rails第9章错误

时间:2013-08-13 18:44:04

标签: ruby-on-rails rspec capybara rspec-rails

我正在完成Ruby on Rails教程,我大部分时间都是通过第9章。由于某种原因,我一直得到这三个错误,我检查了github,看看如果我遗漏了什么,但是我有我应该拥有的。这是我的错误:

    1) Authentication signin with valid information followed by signout
     Failure/Error: before { click_link "Sign out" }
     NameError:
       undefined local variable or method `sign_out' for #<SessionsController:0x104c0b9d0>
     # ./app/controllers/sessions_controller.rb:19:in `destroy'
     # (eval):2:in `send'
     # (eval):2:in `click_link'
     # ./spec/requests/authentication_pages_spec.rb:44

  2) Authentication authorization for non-signed-in users when attempting to visit a protected page after signing in should render the desired protected page
     Failure/Error: page.should have_selector('title', :text => 'Edit user')
       expected css "title" with text "Edit user" to return something
     # ./spec/requests/authentication_pages_spec.rb:65

  3) Authentication authorization for non-signed-in users when attempting to visit a protected page after signing in when signing in again should render the default (profile) page
     Failure/Error: click_link "Sign out"
     NameError:
       undefined local variable or method `sign_out' for #<SessionsController:0x104c358c0>
     # ./app/controllers/sessions_controller.rb:19:in `destroy'
     # (eval):2:in `send'
     # (eval):2:in `click_link'
     # ./spec/requests/authentication_pages_spec.rb:70

我的authentication_pages_spec.rb文件:

 require 'spec_helper'

describe "Authentication" do

  subject { page }

  describe "signin page" do

    before { visit signin_path }

    it { should have_selector('h1',    :text => 'Sign in') }
    it { should have_selector('h1','title', :text => 'Sign in') }
end


    describe "signin" do

    before { visit signin_path }

    describe "with invalid information" do
      before { click_button "Sign in" }

      it { should have_selector('h1', 'title', :text => 'Sign in') }
      it { should have_error_message }

      describe "after visiting another page" do
        before { click_link "Home" }
        it { should_not have_error_message }
      end
    end

    describe "with valid information" do
      let(:user) { FactoryGirl.create(:user) }
      before { sign_in user }

      it { should have_selector('title', :text => user.name) }
      it { should have_link('Profile',  :href => user_path(user)) }
      it { should have_link('Sign out', :href => signout_path) }
      it { should have_link('Settings', :href => edit_user_path(user)) }
      it { should have_link('Users',    :href => users_path) }
      it { should_not have_link('Sign in', :href => signin_path) }

      describe "followed by signout" do
        before { click_link "Sign out" }
        it { should have_link('Sign in') }
      end
    end
  end

  describe "authorization" do

    describe "for non-signed-in users" do
      let(:user) { FactoryGirl.create(:user) }

      describe "when attempting to visit a protected page" do
        before do
          visit edit_user_path(user)
          fill_in "Email",    :with => user.email
          fill_in "Password", :with => user.password
          click_button "Sign in"
        end

        describe "after signing in" do
          it "should render the desired protected page" do
            page.should have_selector('title', :text => 'Edit user')
          end

          describe "when signing in again" do
            before do
              click_link "Sign out"
              click_link "Sign in"
              fill_in "Email",    :with => user.email
              fill_in "Password", :with => user.password
              click_button "Sign in"              
            end

            it "should render the default (profile) page" do
              page.should have_selector('title', :text => user.name)
            end
          end
        end
      end

      describe "in the Users controller" do

        describe "visiting the edit page" do
          before { visit edit_user_path(user) }
          it { should have_selector('title', :text => 'Sign in') }
          it { should have_selector('div.alert.alert-notice') }
        end

        describe "submitting to the update action" do
          before { put user_path(user) }
          specify { response.should redirect_to(signin_path) }
        end

        describe "visiting the user index" do
          before { visit users_path }
          it { should have_selector('title', :text => 'Sign in') }
        end
      end

     describe "as wrong user" do
      let(:user) { FactoryGirl.create(:user) }
      let(:wrong_user) { FactoryGirl.create(:user, :email => "wrong@example.com") }
      before { sign_in user }

      describe "visiting Users#edit page" do
        before { visit edit_user_path(wrong_user) }
        it { should_not have_selector('h1', 'title', :text => full_title('Edit user')) }
      end

      describe "submitting a PUT request to the Users#update action" do
        before { put user_path(wrong_user) }
        specify { response.should redirect_to(root_url) }
      end
    end
  end
end
end

我的sessions_controller.rb文件:

 class SessionsController < ApplicationController

  def new
  end

  def create
    user = User.find_by_email(params[:session][:email].downcase)
    if user && user.authenticate(params[:session][:password])
      sign_in user
      redirect_back_or user
    else
      flash.now[:error] = 'Invalid email/password combination'
      render 'new'
    end
  end

  def destroy
    sign_out
    redirect_to root_path
  end
end

非常感谢任何帮助!提前谢谢!

2 个答案:

答案 0 :(得分:0)

您正在sign_out实例中调用SessionsController,但没有定义此类方法。检查“注销”视图中的代码并检查routes.rb文件,以确保正确映射您选择的任何链接。通常,“退出”会映射到destroy方法。

答案 1 :(得分:0)

您的错误是因为sign_out或其继承的父SessionsController中未定义ApplicationController方法。

根据第8章中的Rails教程,他有define this method in SessionsHelper,然后是mixed inApplicationController。我认为将助手混合到控制器中并不好(助手应该仅限于视图; others agree),但这就是教程的布局方式。