8

我有 2 个模型,User并且Bucket. User has_many BucketsBucket belongs_to一个User

factories.rb中,我有:

Factory.define :user do |user|
  user.email  "teste@test.com"
  user.password               "foobar"
  user.password_confirmation  "foobar"
end


Factory.sequence :email do |n| 
  "person-#{n}@example.com"
end

Factory.define :bucket do |bucket|
  bucket.email        "user@example.com"
  bucket.confirmation false
  bucket.association :user
end

我有一个 login_user 模块,如下所示:

def login_user
    before(:each) do
      @request.env["devise.mapping"] = Devise.mappings[:user]
      @user = Factory.create(:user)
      #@user.confirm!
      sign_in @user
    end
  end

我正在使用 Spork 和 Watch,我Buckets_controller_spec.rb的操作很简单:

describe "User authenticated: " do

   login_user  

   @bucket = Factory(:bucket)

   it "should get index" do
     get 'index'
     response.should be_success
   end
...
end

错误总是一样的:

Failures:

  1) BucketsController User authenticated: should get index
     Failure/Error: Unable to find matching line from backtrace
     ActiveRecord::RecordInvalid:
       Validation failed: Email has already been taken
     # ./lib/controller_macros.rb:12:in `block in login_user'

只有当我拥有Factory(:bucket). 当我不添加Factory(:bucket).

它总是同样的错误。我尝试添加:email => Factory.next(:email)到用户,但没有成功。

编辑:

rails c test

ruby-1.9.2-p180 :019 > bucket = Factory(:bucket, :email => "hello@hello.com")
    ActiveRecord::RecordInvalid: Validation failed: Email has already been taken

    ruby-1.9.2-p180 :018 >   Bucket.create(:email => "hello@hello.com")
     => #<Bucket id: 2, email: "hello@hello.com", confirmation: nil, created_at: "2011-04-08 21:59:12", updated_at: "2011-04-08 21:59:12", user_id: nil> 

编辑2:

我发现错误在关联中,但是,我不知道如何解决它。

  bucket.association :user
4

3 回答 3

6

当您使用关联定义工厂时,您需要为工厂提供一个对象,以便在您使用工厂时与之关联。

这应该有效:

describe "User authenticated: " do
  login_user
  @bucket = Factory(:bucket, :user => @user)

  it "should get index" do
    get 'index'
    response.should be_success
  end
end

这样,factorygirl 就知道要制作一个与@user 关联的存储桶。

于 2011-04-12T03:51:02.683 回答
5

在你的用户工厂试试这个:

Factory.define :user do |f|
  f.sequence(:email) { |n| "test#{n}@example.com" }
  ...
end

我想这可能是你的问题。当您使用f.email = "anyvalue"它时,它将每次都使用该值。我看到您正试图在下一个块中创建一个序列,但我不确定该序列是否被使用。

另外 - 请注意,如果您的测试因崩溃或其他原因而中断,有时虚假的测试数据可能会留在您的测试数据库中,而不是被回滚。

如果某事工作一次然后退出工作,我尝试的第一件事就是重置测试数据库。

rake db:test:prepare

这将清除一切。

如果这不起作用,请告诉我,我会再看看!

于 2011-04-08T22:04:28.630 回答
0

如果有人最近收到了您的意见。尝试使用数据库清理器

有关更多信息:RailsTutorial - 第 8.4.3 章 - 在集成测试中添加用户后未清除测试数据库

于 2012-09-12T00:24:17.830 回答