0

添加清单 7.32中提供的 rspec 测试后,rspec 无法使用find_by_email方法返回 User 对象。rspec 测试失败并显示一条消息“ NoMethodError: undefined method name for nil:NilClass ”,这实际上告诉我它找不到用户,因此没有返回用户对象。任何关于为什么这种特定的查找器方法失败而其他方法工作的任何见解都会有所帮助。

我使用第 7 章示例部分开头提供的信息添加了一个用户,该部分指定名称为“ Rails Tutorial ”,电子邮件为“ example@railstutorial.org ”。我还更改了 rspec have_selector方法以匹配HTML h1标记中的用户名,而不是 HTML标题标记。如果我使用其他查找器方法(例如User.firstUser.find(1)) ,则 rspec 测试通过,但在我使用User.find_by_email("example@railstutorial.org")时失败. 如果我打开一个 Rails 控制台(开发模式),我可以使用 find_by_email 方法返回正确的用户。如果我打开 Rails 控制台(测试模式),则数据库中没有用户。我运行bundle exec rake db:test:prepare并重新运行它,但 rspec 测试仍然失败。我可以在将规范更改为使用User.first并打印出名称电子邮件时打印出正确的结果,pp user.name, user.email但是在尝试使用User.find_by_email("example@railstutorial.org")时 rspec 会丢失。

环境

红宝石 1.9,轨道 3.2.3,Ubuntu 10.04

宝石文件

source 'https://rubygems.org'

gem 'rails', '3.2.3'
gem 'bootstrap-sass','2.0.0'
gem 'bcrypt-ruby','3.0.1'

group :development, :test do
  gem 'sqlite3'
  gem 'rspec-rails','2.9.0'
  gem 'annotate', '~> 2.4.1.beta'
end

group :test do
  gem 'capybara','1.1.2'
  gem 'factory_girl_rails','1.4.0'
end

#Javascript runtime for Linux
gem 'therubyracer' 

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

用户模型

class User < ActiveRecord::Base
  attr_accessible :name, :email, :password, :password_confirmation
  has_secure_password
  before_save { self.email.downcase! }
  validates :name, presence: true, length: {maximum:20}
  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
end

user_pages rspec(片段)

describe "signup" do
  before { visit signup_path }
  let(:submit) { "Create my account" }
  describe "with invalid information" do
    it "should not create a user" do
      expect { click_button submit }.not_to change(User, :count)
    end
    describe "after submission" do
      before { click_button submit }
      it { should have_selector('title',text: 'Sign up') }
      it { should have_content('error') } 
    end
  end
  describe "with valid information" do
    before do
      fill_in "Name", with: "Example User"
      fill_in "Email", with: "user@example.com"
      fill_in "Password", with: "foobar"
      fill_in "Confirmation", with: "foobar"
    end
    it "should create a user" do
      expect { click_button submit }.to change(User, :count).by(1)
    end
    describe "after saving the user" do
      before { click_button submit }
      let(:user) { User.find_by_email("example@railstutorial.org") }
      it { should have_selector('h1', text: user.name) #error with name on NilClass!
      it { should have_selector('div.alert.alert-success', text: 'Welcome')}
    end
  end
end
4

1 回答 1

1

您使用 email= 填写表单,user@example.com但尝试使用 email= 在您的数据库中查找用户example@railstutorial.org。使它们相同。

于 2012-05-23T19:45:40.283 回答