繁体   English   中英

Ruby on Rails第9章错误

[英]Ruby on Rails Chapter 9 Errors

我正在研究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

任何帮助是极大的赞赏! 先感谢您!

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

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM