2

私はRailsが初めてです。Michael Hartl のチュートリアル、Ruby on Rails チュートリアル - Learn Web Development with Rails (http://ruby.railstutorial.org/) に従っています。いくつかのテストに合格しようとすると、エラーが見つかりました。bundle exec rspecを実行したときの出力は次のとおりです。

.........................................F.....

Failures:

  1) Authentication signin with invalid information 
     Failure/Error: it { should have_selector('div.alert.alert-error', text: 'Invalid') }
       expected css "div.alert.alert-error" with text "Invalid" to return something
     # ./spec/requests/authentication_pages_spec.rb:23:in `block (4 levels) in <top (required)>'

Finished in 1.39 seconds
47 examples, 1 failure

Failed examples:

rspec ./spec/requests/authentication_pages_spec.rb:23 # Authentication signin with invalid information

次のファイルは大幅に変更されており、そのうちの 1 つがエラーの原因になっている可能性があります。

authentication_pages_rspec.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('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('title', text: 'Sign in') }
      it { should have_selector('div.alert.alert-error', text: 'Invalid') }

      describe "after visiting another page" do
        before { click_link "Home" }
        it { should_not have_selector('div.alert.alert-error') }
      end
    end

    describe "with valid information" do
      let(:user) { FactoryGirl.create(:user) }
      before do
        fill_in "Email",    with: user.email
        fill_in "Password", with: user.password
        click_button "Sign in"
      end

      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_not have_link('Sign in', href: signin_path) }
    end
  end
end

sessions_controler.rb

class SessionsController `>` ApplicationController

  def new
  end

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

  def destroy
  end
end

sessions_helper.rb

module SessionsHelper

  def sign_in(user)
    cookies.permanent[:remember_token] = user.remember_token
    self.current_user = user;
  end

  def signed_in?
    !current_user.nil?
  end

  def current_user=(user)
    @current_user = user
  end

  def current_user
    @current_user ||= User.find_by_remember_token(cookies[:remember_token])
  end
end

他のファイルが必要な場合はお知らせください。投稿します。前もって感謝します。

4

1 に答える 1

2

私はあなたのコードを閲覧しましたが、セミコロンは別として

 self.current_user = user;

私は奇妙なものを見たことがありません。テストしているメソッドを投稿していません。

if user && user.authenticate(params[:session][:password])

ただし、問題がある可能性があります。

問題を見つけるための一般的な手順:

  • 使用している場合は、spark を再起動します。
  • 失敗した仕様を手動でテストします: 機能は動作しますか?
  • そうでない場合は、修正してください
  • 機能が動作するはずなのに仕様がまだ失敗する場合は、launchy と save_and_open_page を使用して、テスト中にページを覗いてください。

追加 1:

まあ、あなたの仕様のその部分

before { visit signin_path }

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

(config/routes.rb にマップされている signin_path へのリンクがリンクされているため) SessionController create アクションにつながりますuser.authenticate(params[:session][:password])

于 2012-07-28T16:56:28.000 に答える