0

I'm working through the Ruby on Rails Tutorial and I'm most of the way through chapter 9. For some reason I keep getting these three errors, I checked with the github to see what if I was missing anything, but I have exactly what I should have. Here are my errors:

    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

My authentication_pages_spec.rb file:

 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

My sessions_controller.rb file:

 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

Any help is greatly appreciated! Thank you in advance!

4

2 回答 2

0

您的错误是因为在您的或其继承的父级中没有sign_out定义任何方法。SessionsControllerApplicationController

根据第 8 章中的 Rails 教程,他让你在中定义此方法SessionsHelper,然后将其混入ApplicationController. 我认为将助手混合到控制器中并不好(助手应该仅限于视图;其他人同意),但这就是本教程为您布置的方式。

于 2013-08-13T19:34:04.260 回答
0

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

于 2013-08-13T19:33:22.320 回答