6

この章では、記憶トークンを追加して、ユーザーのサインイン ステータスが記憶され、ユーザーが明示的にサインアウトした場合にのみセッションがクリアされるようにする方法について説明します。アプリでこの機能を使用することの重要性を理解しているため、正しく機能することを確認したいと考えています。ただし、実行すると大量のエラーが発生します

$ bundle exec rspec spec/

1つを除いてすべて含まれているため、ユーザーモデルに関係していると思われます。

NoMethodError:
       undefined method `remember_token=' for #<User:...>

そして最後に含まれる

Failure/Error: it { should respond_to(:remember_token) }

次に、user_spec.rb、user.rb、および authentication_pages_spec.rb ファイルを指定します。これらのファイル (関連部分) のほとんどをここに含めました。

ユーザー.rb:

# == Schema Information
#
# Table name: users
#
#  id         :integer         not null, primary key
#  name       :string(255)
#  email      :string(255)
#  created_at :datetime        not null
#  updated_at :datetime        not null
#

class User < ActiveRecord::Base
  attr_accessible :name, :email, :password, :password_confirmation
  has_secure_password

  before_save { |user| user.email = email.downcase }
  before_save :create_remember_token

  validates :name, presence: true, length: { maximum: 50 }
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence:   true,
                    format:     { with: VALID_EMAIL_REGEX },
                    uniqueness: { case_sensitive: false }
  validates :password, length: { minimum: 6 }
  validates :password_confirmation, presence: true

  private

      def create_remember_token
        self.remember_token = SecureRandom.urlsafe_base64
      end
end

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('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

および user_spec.rb の冒頭:

# == Schema Information
#
# Table name: users
#
#  id         :integer         not null, primary key
#  name       :string(255)
#  email      :string(255)
#  created_at :datetime        not null
#  updated_at :datetime        not null
#

require 'spec_helper'

describe User do

  before do
      @user = User.new(name: "Example User", email: "user@example.com", 
                       password: "foobar", password_confirmation: "foobar")
  end

  subject { @user }

  it { should respond_to(:name) }
  it { should respond_to(:email) }
  it { should be_valid }
  it { should respond_to(:password_digest) }
  it { should respond_to(:password) }
  it { should respond_to(:password_confirmation) }
  it { should respond_to(:authenticate) }
  it { should respond_to(:remember_token) }

  describe "remember token" do
      before { @user.save }
      its(:remember_token) { should_not be_blank }
    end
.
.
.

どんな助けでも大歓迎です!

4

5 に答える 5

2

User モデルに列を追加するための移行を生成しましたか?

$ rails generate migration add_remember_token_to_users

この後、移行ファイルを編集して新しいフィールド remember_token を追加します

その後、あなたがする必要があります

$ bundle exec rake db:migrate
$ bundle exec rake db:test:prepare

モデルの注釈には列が表示されません。上記のコマンドを実行したことを確認してください。

于 2012-04-29T18:21:07.390 に答える
2

同様のテスト失敗エラーが発生しました。remember_token私がしたことは、文字列型の列を生成することです。

rails generate migration add_remember_token_to_users remember_token:string --force

rake db:migrate RAILS_ENV=test

その後、テストパス。

于 2013-06-18T23:24:56.247 に答える
-1

同じ問題が発生し、未定義のメソッドfind_by_remember_tokenが発生しました。

これを修正するために私がしたことは次のとおりです。

heroku run rake db:migrate

次に、herokuに再度プッシュします

git push heroku
于 2012-08-09T14:31:32.357 に答える